Mercurial > emacs
annotate oldXMenu/XCrAssoc.c @ 89686:9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
(Qinvalid_source, Qinterrupted, Qinsufficient_memory): New
variables.
(Vlast_code_conversion_error): New variables.
(syms_of_coding): DEFSYM or DEFVAR_LISP them.
(ONE_MORE_BYTE): Record error if any instead of signaling an
error. If non-ASCII multibyte char is found, return the negative
value of the code. All callers changed to check it.
(ONE_MORE_BYTE_NO_CHECK): Likewise.
(record_conversion_result): New function. All codes setting
coding->result are changed to call this function.
(detect_coding_utf_8): Don't use the local variable incomplete.
(decode_coding_utf_8): Likewise.
(emacs_mule_char): Change the second arg to `const'.
(detect_coding_emacs_mule): Don't use the local variable
incomplete.
(detect_coding_sjis): Likewise.
(detect_coding_big5): Likewise.
(decode_coding): Fix of flushing out unprocessed data.
(make_conversion_work_buffer): Fix making of a work buffer.
(decode_coding_object): Return coding->dst_object;
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 29 Dec 2003 07:52:49 +0000 |
parents | 375f2633d815 |
children | 68c22ea6027c |
rev | line source |
---|---|
25858 | 1 /* $XConsortium: XCrAssoc.c,v 10.17 91/01/06 12:04:57 rws Exp $ */ |
2 /* Copyright Massachusetts Institute of Technology 1985 */ | |
3 | |
4 /* | |
5 Permission to use, copy, modify, distribute, and sell this software and its | |
6 documentation for any purpose is hereby granted without fee, provided that | |
7 the above copyright notice appear in all copies and that both that | |
8 copyright notice and this permission notice appear in supporting | |
9 documentation, and that the name of M.I.T. not be used in advertising or | |
10 publicity pertaining to distribution of the software without specific, | |
11 written prior permission. M.I.T. makes no representations about the | |
12 suitability of this software for any purpose. It is provided "as is" | |
13 without express or implied warranty. | |
14 */ | |
15 | |
16 #include <config.h> | |
17 #include <X11/Xlib.h> | |
18 #include <errno.h> | |
19 #include "X10.h" | |
20 | |
21 #ifndef NULL | |
22 #define NULL 0 | |
23 #endif | |
24 | |
25 extern int errno; | |
26 | |
27 /* | |
28 * XCreateAssocTable - Create an XAssocTable. The size argument should be | |
29 * a power of two for efficiency reasons. Some size suggestions: use 32 | |
30 * buckets per 100 objects; a reasonable maximum number of object per | |
31 * buckets is 8. If there is an error creating the XAssocTable, a NULL | |
32 * pointer is returned. | |
33 */ | |
34 XAssocTable *XCreateAssocTable(size) | |
35 register int size; /* Desired size of the table. */ | |
36 { | |
37 register XAssocTable *table; /* XAssocTable to be initialized. */ | |
38 register XAssoc *buckets; /* Pointer to the first bucket in */ | |
39 /* the bucket array. */ | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
40 |
25858 | 41 /* Malloc the XAssocTable. */ |
42 if ((table = (XAssocTable *)malloc(sizeof(XAssocTable))) == NULL) { | |
43 /* malloc call failed! */ | |
44 errno = ENOMEM; | |
45 return(NULL); | |
46 } | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
47 |
25858 | 48 /* calloc the buckets (actually just their headers). */ |
49 buckets = (XAssoc *)calloc((unsigned)size, (unsigned)sizeof(XAssoc)); | |
50 if (buckets == NULL) { | |
51 /* calloc call failed! */ | |
52 errno = ENOMEM; | |
53 return(NULL); | |
54 } | |
55 | |
56 /* Insert table data into the XAssocTable structure. */ | |
57 table->buckets = buckets; | |
58 table->size = size; | |
59 | |
60 while (--size >= 0) { | |
61 /* Initialize each bucket. */ | |
62 buckets->prev = buckets; | |
63 buckets->next = buckets; | |
64 buckets++; | |
65 } | |
66 | |
67 return(table); | |
68 } |