428
|
1 /* Fundamental definitions for XEmacs Lisp interpreter.
|
|
2 Copyright (C) 1985-1987, 1992-1995 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1993-1996 Richard Mlynarik.
|
771
|
4 Copyright (C) 1995, 1996, 2000, 2001, 2002 Ben Wing.
|
428
|
5
|
|
6 This file is part of XEmacs.
|
|
7
|
|
8 XEmacs is free software; you can redistribute it and/or modify it
|
|
9 under the terms of the GNU General Public License as published by the
|
|
10 Free Software Foundation; either version 2, or (at your option) any
|
|
11 later version.
|
|
12
|
|
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
16 for more details.
|
|
17
|
|
18 You should have received a copy of the GNU General Public License
|
|
19 along with XEmacs; see the file COPYING. If not, write to
|
|
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
21 Boston, MA 02111-1307, USA. */
|
|
22
|
|
23 /* Synched up with: FSF 19.30. */
|
|
24
|
440
|
25 #ifndef INCLUDED_lisp_h_
|
|
26 #define INCLUDED_lisp_h_
|
428
|
27
|
|
28 /************************************************************************/
|
|
29 /* general definitions */
|
|
30 /************************************************************************/
|
|
31
|
442
|
32 /* ------------------------ include files ------------------- */
|
|
33
|
428
|
34 /* We include the following generally useful header files so that you
|
|
35 don't have to worry about prototypes when using the standard C
|
|
36 library functions and macros. These files shouldn't be excessively
|
|
37 large so they shouldn't cause that much of a slowdown. */
|
|
38
|
|
39 #include <stdlib.h>
|
|
40 #include <string.h> /* primarily for memcpy, etc. */
|
|
41 #include <stdio.h> /* NULL, etc. */
|
|
42 #include <ctype.h>
|
|
43 #include <stdarg.h>
|
|
44 #include <stddef.h> /* offsetof */
|
|
45 #include <sys/types.h>
|
442
|
46 #include <limits.h>
|
|
47
|
647
|
48 /* ------------------------ definition of EMACS_INT ------------------- */
|
|
49
|
|
50 /* EMACS_INT is the underlying integral type into which a Lisp_Object must fit.
|
|
51 In particular, it must be large enough to contain a pointer.
|
|
52 config.h can override this, e.g. to use `long long' for bigger lisp ints.
|
|
53
|
|
54 #### In point of fact, it would NOT be a good idea for config.h to mess
|
|
55 with EMACS_INT. A lot of code makes the basic assumption that EMACS_INT
|
|
56 is the size of a pointer. */
|
|
57
|
|
58 #ifndef SIZEOF_EMACS_INT
|
|
59 # define SIZEOF_EMACS_INT SIZEOF_VOID_P
|
|
60 #endif
|
|
61
|
|
62 #ifndef EMACS_INT
|
|
63 # if SIZEOF_EMACS_INT == SIZEOF_LONG
|
|
64 # define EMACS_INT long
|
|
65 # elif SIZEOF_EMACS_INT == SIZEOF_INT
|
|
66 # define EMACS_INT int
|
|
67 # elif SIZEOF_EMACS_INT == SIZEOF_LONG_LONG
|
|
68 # define EMACS_INT long long
|
|
69 # else
|
|
70 # error Unable to determine suitable type for EMACS_INT
|
|
71 # endif
|
|
72 #endif
|
|
73
|
|
74 #ifndef EMACS_UINT
|
|
75 # define EMACS_UINT unsigned EMACS_INT
|
|
76 #endif
|
|
77
|
|
78 #define BITS_PER_EMACS_INT (SIZEOF_EMACS_INT * BITS_PER_CHAR)
|
|
79
|
|
80 /* ------------------------ basic char/int typedefs ------------------- */
|
|
81
|
|
82 /* The definitions we put here use typedefs to attribute specific meaning
|
|
83 to types that by themselves are pretty general. Stuff pointed to by a
|
|
84 char * or unsigned char * will nearly always be one of four types:
|
|
85 a) pointer to internally-formatted text; b) pointer to text in some
|
|
86 external format, which can be defined as all formats other than the
|
|
87 internal one; c) pure ASCII text; d) binary data that is not meant to
|
|
88 be interpreted as text. [A fifth possible type "e) a general pointer
|
|
89 to memory" should be replaced with void *.] Using these more specific
|
|
90 types rather than the general ones helps avoid the confusions that
|
|
91 occur when the semantics of a char * argument being studied are unclear.
|
|
92
|
|
93 Note that these typedefs are purely for documentation purposes; from
|
|
94 the C code's perspective, they are exactly equivalent to `char *',
|
|
95 `unsigned char *', etc., so you can freely use them with library
|
|
96 functions declared as such. */
|
|
97
|
|
98 /* The data representing the text in a buffer is logically a set
|
665
|
99 of Intbytes, declared as follows. */
|
|
100
|
|
101 typedef unsigned char Intbyte;
|
647
|
102
|
|
103 /* The following should be used when you are working with internal data
|
|
104 but for whatever reason need to have it declared a "char *". Examples
|
|
105 are function arguments whose values are most commonly literal strings,
|
|
106 or where you have to apply a stdlib string function to internal data.
|
|
107
|
665
|
108 In general, you should avoid this where possible and use Intbyte instead,
|
647
|
109 for consistency. For example, the new Mule workspace contains
|
665
|
110 Intbyte versions of the stdlib string functions. */
|
|
111
|
|
112 typedef char CIntbyte;
|
647
|
113
|
|
114 /* The data representing a string in "external" format (binary or any
|
|
115 external encoding) is logically a set of Extbytes, declared as
|
|
116 follows. Extbyte is guaranteed to be just a char, so for example
|
|
117 strlen (Extbyte *) is OK. Extbyte is only a documentation device
|
|
118 for referring to external text. */
|
|
119
|
|
120 typedef char Extbyte;
|
771
|
121 typedef unsigned char UExtbyte;
|
647
|
122
|
|
123 /* A byte in a string in binary format: */
|
|
124 typedef char Char_Binary;
|
|
125 typedef signed char SChar_Binary;
|
|
126 typedef unsigned char UChar_Binary;
|
|
127
|
|
128 /* A byte in a string in entirely US-ASCII format: (Nothing outside
|
|
129 the range 00 - 7F) */
|
|
130
|
|
131 typedef char Char_ASCII;
|
|
132 typedef unsigned char UChar_ASCII;
|
|
133
|
|
134
|
|
135 /* To the user, a buffer is made up of characters, declared as follows.
|
665
|
136 In the non-Mule world, characters and Intbytes are equivalent.
|
647
|
137 In the Mule world, a character requires (typically) 1 to 4
|
665
|
138 Intbytes for its representation in a buffer. */
|
647
|
139
|
|
140 typedef int Emchar;
|
|
141
|
|
142 /* Different ways of referring to a position in a buffer. We use
|
|
143 the typedefs in preference to 'EMACS_INT' to make it clearer what
|
|
144 sort of position is being used. See extents.c for a description
|
|
145 of the different positions. We put them here instead of in
|
|
146 buffer.h (where they rightfully belong) to avoid syntax errors
|
|
147 in function prototypes. */
|
|
148
|
665
|
149 typedef EMACS_INT Charbpos;
|
|
150 typedef EMACS_INT Bytebpos;
|
|
151 typedef EMACS_INT Membpos;
|
647
|
152
|
|
153 /* Counts of bytes or chars */
|
|
154 typedef EMACS_INT Bytecount;
|
|
155 typedef EMACS_INT Charcount;
|
665
|
156 /* Counts of elements */
|
|
157 typedef EMACS_INT Elemcount;
|
|
158 /* Hash codes */
|
|
159 typedef unsigned long Hashcode;
|
647
|
160
|
771
|
161 #ifdef HAVE_INTTYPES_H
|
|
162 #include <inttypes.h>
|
|
163 #elif SIZEOF_VOID_P == SIZEOF_INT
|
|
164 typedef int intptr_t;
|
|
165 typedef unsigned int uintptr_t;
|
|
166 #elif SIZEOF_VOID_P == SIZEOF_LONG
|
|
167 typedef long intptr_t;
|
|
168 typedef unsigned long uintptr_t;
|
|
169 #elif defined(SIZEOF_LONG_LONG) && SIZEOF_VOID_P == SIZEOF_LONG_LONG
|
|
170 typedef long long intptr_t;
|
|
171 typedef unsigned long long uintptr_t;
|
|
172 #else
|
|
173 /* Just pray. May break, may not. */
|
|
174 typedef long intptr_t;
|
|
175 typedef unsigned long uintptr_t;
|
|
176 #endif
|
|
177
|
442
|
178 /* ------------------------ dynamic arrays ------------------- */
|
428
|
179
|
|
180 #define Dynarr_declare(type) \
|
|
181 type *base; \
|
|
182 int elsize; \
|
|
183 int cur; \
|
|
184 int largest; \
|
|
185 int max
|
|
186
|
|
187 typedef struct dynarr
|
|
188 {
|
|
189 Dynarr_declare (void);
|
|
190 } Dynarr;
|
|
191
|
|
192 void *Dynarr_newf (int elsize);
|
|
193 void Dynarr_resize (void *dy, int size);
|
442
|
194 void Dynarr_insert_many (void *d, const void *el, int len, int start);
|
428
|
195 void Dynarr_delete_many (void *d, int start, int len);
|
|
196 void Dynarr_free (void *d);
|
|
197
|
440
|
198 #define Dynarr_new(type) ((type##_dynarr *) Dynarr_newf (sizeof (type)))
|
442
|
199 #define Dynarr_new2(dynarr_type, type) \
|
|
200 ((dynarr_type *) Dynarr_newf (sizeof (type)))
|
428
|
201 #define Dynarr_at(d, pos) ((d)->base[pos])
|
|
202 #define Dynarr_atp(d, pos) (&Dynarr_at (d, pos))
|
452
|
203 #define Dynarr_begin(d) Dynarr_atp (d, 0)
|
|
204 #define Dynarr_end(d) Dynarr_atp (d, Dynarr_length (d))
|
|
205 #define Dynarr_sizeof(d) ((d)->cur * (d)->elsize)
|
428
|
206 #define Dynarr_length(d) ((d)->cur)
|
|
207 #define Dynarr_largest(d) ((d)->largest)
|
|
208 #define Dynarr_reset(d) ((d)->cur = 0)
|
|
209 #define Dynarr_add_many(d, el, len) Dynarr_insert_many (d, el, len, (d)->cur)
|
|
210 #define Dynarr_insert_many_at_start(d, el, len) \
|
|
211 Dynarr_insert_many (d, el, len, 0)
|
440
|
212 #define Dynarr_add_literal_string(d, s) Dynarr_add_many (d, s, sizeof (s) - 1)
|
771
|
213 #define Dynarr_add_lisp_string(d, s, codesys) \
|
|
214 do { \
|
|
215 Lisp_Object dyna_ls_s = (s); \
|
|
216 Lisp_Object dyna_ls_cs = (codesys); \
|
|
217 Extbyte *dyna_ls_eb; \
|
|
218 Bytecount dyna_ls_bc; \
|
|
219 \
|
|
220 TO_EXTERNAL_FORMAT (LISP_STRING, dyna_ls_s, \
|
|
221 ALLOCA, (dyna_ls_eb, dyna_ls_bc), \
|
|
222 dyna_ls_cs); \
|
|
223 Dynarr_add_many (d, dyna_ls_eb, dyna_ls_bc); \
|
428
|
224 } while (0)
|
|
225
|
|
226 #define Dynarr_add(d, el) ( \
|
|
227 (d)->cur >= (d)->max ? Dynarr_resize ((d), (d)->cur+1) : (void) 0, \
|
|
228 ((d)->base)[(d)->cur++] = (el), \
|
|
229 (d)->cur > (d)->largest ? (d)->largest = (d)->cur : (int) 0)
|
|
230
|
|
231 /* The following defines will get you into real trouble if you aren't
|
|
232 careful. But they can save a lot of execution time when used wisely. */
|
|
233 #define Dynarr_increment(d) ((d)->cur++)
|
|
234 #define Dynarr_set_size(d, n) ((d)->cur = n)
|
|
235
|
771
|
236 #define Dynarr_pop(d) \
|
|
237 (assert ((d)->cur > 0), (d)->cur--, Dynarr_at (d, (d)->cur))
|
|
238 #define Dynarr_delete(d, i) Dynarr_delete_many (d, i, len)
|
|
239 #define Dynarr_delete_by_pointer(d, p) \
|
|
240 Dynarr_delete_many (d, (p) - ((d)->base), 1)
|
|
241
|
428
|
242 #ifdef MEMORY_USAGE_STATS
|
|
243 struct overhead_stats;
|
665
|
244 Bytecount Dynarr_memory_usage (void *d, struct overhead_stats *stats);
|
428
|
245 #endif
|
|
246
|
|
247 /* Also define min() and max(). (Some compilers put them in strange
|
|
248 places that won't be referenced by the above include files, such
|
|
249 as 'macros.h' under Solaris.) */
|
|
250
|
|
251 #ifndef min
|
|
252 #define min(a,b) (((a) <= (b)) ? (a) : (b))
|
|
253 #endif
|
|
254 #ifndef max
|
|
255 #define max(a,b) (((a) > (b)) ? (a) : (b))
|
|
256 #endif
|
|
257
|
|
258 /* Memory allocation */
|
442
|
259 void malloc_warning (const char *);
|
665
|
260 void *xmalloc (Bytecount size);
|
|
261 void *xmalloc_and_zero (Bytecount size);
|
|
262 void *xrealloc (void *, Bytecount size);
|
442
|
263 char *xstrdup (const char *);
|
428
|
264 /* generally useful */
|
438
|
265 #define countof(x) ((int) (sizeof(x)/sizeof((x)[0])))
|
428
|
266 #define xnew(type) ((type *) xmalloc (sizeof (type)))
|
|
267 #define xnew_array(type, len) ((type *) xmalloc ((len) * sizeof (type)))
|
|
268 #define xnew_and_zero(type) ((type *) xmalloc_and_zero (sizeof (type)))
|
438
|
269 #define xzero(lvalue) ((void) memset (&(lvalue), '\0', sizeof (lvalue)))
|
428
|
270 #define xnew_array_and_zero(type, len) ((type *) xmalloc_and_zero ((len) * sizeof (type)))
|
|
271 #define XREALLOC_ARRAY(ptr, type, len) ((void) (ptr = (type *) xrealloc (ptr, (len) * sizeof (type))))
|
771
|
272 #define alloca_new(type) ((type *) alloca (sizeof (type)))
|
428
|
273 #define alloca_array(type, len) ((type *) alloca ((len) * sizeof (type)))
|
|
274
|
|
275 /* also generally useful if you want to avoid arbitrary size limits
|
|
276 but don't need a full dynamic array. Assumes that BASEVAR points
|
|
277 to a malloced array of TYPE objects (or possibly a NULL pointer,
|
|
278 if SIZEVAR is 0), with the total size stored in SIZEVAR. This
|
|
279 macro will realloc BASEVAR as necessary so that it can hold at
|
|
280 least NEEDED_SIZE objects. The reallocing is done by doubling,
|
|
281 which ensures constant amortized time per element. */
|
430
|
282 #define DO_REALLOC(basevar, sizevar, needed_size, type) do { \
|
665
|
283 Bytecount do_realloc_needed_size = (needed_size); \
|
430
|
284 if ((sizevar) < do_realloc_needed_size) \
|
|
285 { \
|
|
286 if ((sizevar) < 32) \
|
|
287 (sizevar) = 32; \
|
|
288 while ((sizevar) < do_realloc_needed_size) \
|
|
289 (sizevar) *= 2; \
|
|
290 XREALLOC_ARRAY (basevar, type, (sizevar)); \
|
|
291 } \
|
428
|
292 } while (0)
|
|
293
|
|
294 #ifdef ERROR_CHECK_MALLOC
|
|
295 void xfree_1 (void *);
|
|
296 #define xfree(lvalue) do \
|
|
297 { \
|
|
298 void **xfree_ptr = (void **) &(lvalue); \
|
|
299 xfree_1 (*xfree_ptr); \
|
|
300 *xfree_ptr = (void *) 0xDEADBEEF; \
|
|
301 } while (0)
|
|
302 #else
|
|
303 void xfree (void *);
|
|
304 #endif /* ERROR_CHECK_MALLOC */
|
|
305
|
|
306 #ifndef PRINTF_ARGS
|
|
307 # if defined (__GNUC__) && (__GNUC__ >= 2)
|
|
308 # define PRINTF_ARGS(string_index,first_to_check) \
|
|
309 __attribute__ ((format (printf, string_index, first_to_check)))
|
|
310 # else
|
|
311 # define PRINTF_ARGS(string_index,first_to_check)
|
|
312 # endif /* GNUC */
|
|
313 #endif
|
|
314
|
|
315 #ifndef DOESNT_RETURN
|
|
316 # if defined __GNUC__
|
|
317 # if ((__GNUC__ > 2) || (__GNUC__ == 2) && (__GNUC_MINOR__ >= 5))
|
442
|
318 # define DOESNT_RETURN void
|
428
|
319 # define DECLARE_DOESNT_RETURN(decl) \
|
442
|
320 extern void decl __attribute__ ((noreturn))
|
428
|
321 # define DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS(decl,str,idx) \
|
|
322 /* Should be able to state multiple independent __attribute__s, but \
|
|
323 the losing syntax doesn't work that way, and screws losing cpp */ \
|
442
|
324 extern void decl \
|
428
|
325 __attribute__ ((noreturn, format (printf, str, idx)))
|
|
326 # else
|
|
327 # define DOESNT_RETURN void volatile
|
|
328 # define DECLARE_DOESNT_RETURN(decl) extern void volatile decl
|
|
329 # define DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS(decl,str,idx) \
|
|
330 extern void volatile decl PRINTF_ARGS(str,idx)
|
|
331 # endif /* GNUC 2.5 */
|
|
332 # else
|
|
333 # define DOESNT_RETURN void
|
|
334 # define DECLARE_DOESNT_RETURN(decl) extern void decl
|
|
335 # define DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS(decl,str,idx) \
|
|
336 extern void decl PRINTF_ARGS(str,idx)
|
|
337 # endif /* GNUC */
|
|
338 #endif
|
|
339
|
771
|
340 /* Another try to fix SunPro C compiler warnings */
|
|
341 /* "end-of-loop code not reached" */
|
|
342 /* "statement not reached */
|
|
343 #if defined __SUNPRO_C || defined __USLC__
|
|
344 #define RETURN_SANS_WARNINGS if (1) return
|
|
345 #define RETURN_NOT_REACHED(value)
|
|
346 #else
|
|
347 #define RETURN_SANS_WARNINGS return
|
|
348 #define RETURN_NOT_REACHED(value) return value;
|
|
349 #endif
|
|
350
|
454
|
351 /* No type has a greater alignment requirement than max_align_t.
|
|
352 (except perhaps for types we don't use, like long double) */
|
|
353 typedef union
|
|
354 {
|
|
355 struct { long l; } l;
|
|
356 struct { void *p; } p;
|
|
357 struct { void (*f)(void); } f;
|
|
358 struct { double d; } d;
|
|
359 } max_align_t;
|
|
360
|
771
|
361 /* ALIGNOF returns the required alignment of a type -- i.e. a value such
|
|
362 that data of this type must begin at a memory address which is a
|
|
363 multiple of that value. For simple types, this is often the same size
|
|
364 as the type itself. */
|
|
365
|
428
|
366 #ifndef ALIGNOF
|
|
367 # if defined (__GNUC__) && (__GNUC__ >= 2)
|
454
|
368 /* gcc has an extension that gives us exactly what we want. */
|
|
369 # define ALIGNOF(type) __alignof__ (type)
|
|
370 # elif ! defined (__cplusplus)
|
|
371 /* The following is mostly portable, except that:
|
|
372 - it doesn't work for inside out declarations like void (*) (void).
|
|
373 (so just call ALIGNOF with a typedef'ed name)
|
|
374 - it doesn't work with C++. The C++ committee has decided,
|
|
375 in its infinite wisdom, that:
|
|
376 "Types must be declared in declarations, not in expressions." */
|
|
377 # define ALIGNOF(type) offsetof (struct { char c; type member; }, member)
|
428
|
378 # else
|
456
|
379 /* C++ is annoying, but it has a big bag of tricks.
|
|
380 The following doesn't have the "inside out" declaration bug C does. */
|
458
|
381 template<typename T> struct alignment_trick { char c; T member; };
|
456
|
382 # define ALIGNOF(type) offsetof (alignment_trick<type>, member)
|
428
|
383 # endif
|
454
|
384 #endif /* ALIGNOF */
|
428
|
385
|
771
|
386 /* ALIGN_SIZE returns the smallest size greater than or equal to LEN which
|
|
387 is a multiple of UNIT. This can be used to assure that data that
|
|
388 follows a block of the returned size is of correct alignment for a type
|
|
389 whose alignment (as returned by ALIGNOF) is UNIT (provided that the
|
|
390 block itself is correctly aligned for this type; memory returned by
|
|
391 malloc() is guaranteed to be correctly aligned for all types). */
|
|
392
|
428
|
393 #define ALIGN_SIZE(len, unit) \
|
|
394 ((((len) + (unit) - 1) / (unit)) * (unit))
|
|
395
|
771
|
396 /* MAX_ALIGN_SIZE returns the smallest size greater than or equal to LEN
|
|
397 which guarantees that data following a block of such size is correctly
|
|
398 aligned for all types (provided that the block itself is so aligned,
|
|
399 which is the case for memory returned by malloc()). */
|
|
400
|
|
401 #define MAX_ALIGN_SIZE(len) ALIGN_SIZE (len, ALIGNOF (max_align_t))
|
|
402
|
428
|
403 /* #### Yuck, this is kind of evil */
|
|
404 #define ALIGN_PTR(ptr, unit) \
|
454
|
405 ((void *) ALIGN_SIZE ((size_t) (ptr), unit))
|
428
|
406
|
|
407 #ifndef DO_NOTHING
|
|
408 #define DO_NOTHING do {} while (0)
|
|
409 #endif
|
|
410
|
|
411 #ifndef DECLARE_NOTHING
|
|
412 #define DECLARE_NOTHING struct nosuchstruct
|
|
413 #endif
|
|
414
|
|
415 /* We define assert iff USE_ASSERTIONS or DEBUG_XEMACS is defined.
|
|
416 Otherwise we define it to be empty. Quantify has shown that the
|
|
417 time the assert checks take is measurable so let's not include them
|
771
|
418 in production binaries.
|
|
419
|
788
|
420 If ASSERTIONS_DONT_ABORT defined, we will continue after assertion
|
|
421 failures.
|
|
422
|
|
423 assert_at_line() is used for asserts inside of inline functions called
|
|
424 from error-checking macros. If we're not tricky, we just get the file
|
|
425 and line of the inline function, which is not very useful. */
|
428
|
426
|
|
427 #ifdef USE_ASSERTIONS
|
|
428 /* Highly dubious kludge */
|
|
429 /* (thanks, Jamie, I feel better now -- ben) */
|
442
|
430 void assert_failed (const char *, int, const char *);
|
428
|
431 # define abort() (assert_failed (__FILE__, __LINE__, "abort()"))
|
|
432 # define assert(x) ((x) ? (void) 0 : assert_failed (__FILE__, __LINE__, #x))
|
788
|
433 # define assert_at_line(x, file, line) \
|
|
434 ((x) ? (void) 0 : assert_failed (file, line, #x))
|
428
|
435 #else
|
|
436 # ifdef DEBUG_XEMACS
|
|
437 # define assert(x) ((x) ? (void) 0 : (void) abort ())
|
788
|
438 # define assert_at_line(x, file, line) assert (x)
|
428
|
439 # else
|
771
|
440 # define assert(x) ((void) 0)
|
788
|
441 # define assert_at_line(x, file, line) assert (x)
|
428
|
442 # endif
|
|
443 #endif
|
|
444
|
771
|
445 #if 0
|
|
446 #ifdef USE_ASSERTIONS
|
|
447 /* Highly dubious kludge */
|
|
448 /* (thanks, Jamie, I feel better now -- ben) */
|
|
449 void assert_failed (const char *, int, const char *);
|
|
450 # define abort() (assert_failed (__FILE__, __LINE__, "abort()"))
|
|
451 # define assert(x) ((x) ? 1 : (assert_failed (__FILE__, __LINE__, #x), 0))
|
|
452 #else
|
|
453 # ifdef DEBUG_XEMACS
|
|
454 # define assert(x) ((x) ? 1 : ((void) abort (), 0))
|
|
455 # else
|
|
456 # define assert(x) (1)
|
|
457 # endif
|
|
458 #endif
|
|
459 #endif /* 0 */
|
|
460
|
428
|
461 /*#ifdef DEBUG_XEMACS*/
|
|
462 #define REGISTER
|
|
463 #define register
|
|
464 /*#else*/
|
|
465 /*#define REGISTER register*/
|
|
466 /*#endif*/
|
|
467
|
|
468
|
|
469
|
|
470 /************************************************************************/
|
|
471 /* typedefs */
|
|
472 /************************************************************************/
|
|
473
|
647
|
474 /* Note that the simplest typedefs are near the top of this file. */
|
|
475
|
428
|
476 /* We put typedefs here so that prototype declarations don't choke.
|
|
477 Note that we don't actually declare the structures here (except
|
|
478 maybe for simple structures like Dynarrs); that keeps them private
|
|
479 to the routines that actually use them. */
|
|
480
|
771
|
481 /* ------------------------------- */
|
|
482 /* Error_Behavior typedefs */
|
|
483 /* ------------------------------- */
|
|
484
|
|
485 #ifndef ERROR_CHECK_TYPECHECK
|
|
486
|
|
487 typedef enum error_behavior
|
428
|
488 {
|
771
|
489 ERROR_ME,
|
|
490 ERROR_ME_NOT,
|
|
491 ERROR_ME_WARN
|
|
492 } Error_Behavior;
|
|
493
|
|
494 #define ERRB_EQ(a, b) ((a) == (b))
|
|
495
|
|
496 #else
|
|
497
|
|
498 /* By defining it like this, we provide strict type-checking
|
|
499 for code that lazily uses ints. */
|
|
500
|
|
501 typedef struct _error_behavior_struct_
|
428
|
502 {
|
771
|
503 int really_unlikely_name_to_have_accidentally_in_a_non_errb_structure;
|
|
504 } Error_Behavior;
|
|
505
|
|
506 extern Error_Behavior ERROR_ME;
|
|
507 extern Error_Behavior ERROR_ME_NOT;
|
|
508 extern Error_Behavior ERROR_ME_WARN;
|
|
509
|
|
510 #define ERRB_EQ(a, b) \
|
|
511 ((a).really_unlikely_name_to_have_accidentally_in_a_non_errb_structure == \
|
|
512 (b).really_unlikely_name_to_have_accidentally_in_a_non_errb_structure)
|
|
513
|
|
514 #endif
|
|
515
|
|
516 /* ------------------------------- */
|
|
517 /* Empty structures and typedefs */
|
|
518 /* ------------------------------- */
|
428
|
519
|
|
520 struct buffer; /* "buffer.h" */
|
|
521 struct console; /* "console.h" */
|
|
522 struct device; /* "device.h" */
|
|
523 struct extent_fragment;
|
|
524 struct extent;
|
|
525 struct frame; /* "frame.h" */
|
|
526 struct window; /* "window.h" */
|
|
527 struct stat; /* <sys/stat.h> */
|
771
|
528 struct utimbuf; /* "systime.h" or <utime.h> */
|
428
|
529 struct display_line;
|
|
530 struct display_glyph_area;
|
|
531 struct display_box;
|
|
532 struct redisplay_info;
|
|
533 struct window_mirror;
|
|
534 struct scrollbar_instance;
|
|
535 struct font_metric_info;
|
|
536 struct face_cachel;
|
|
537 struct console_type_entry;
|
|
538
|
771
|
539 /* This is shared by process.h, events.h and others in future.
|
|
540 See events.h for description */
|
|
541 typedef unsigned int USID;
|
|
542 typedef int face_index;
|
|
543 typedef int glyph_index;
|
|
544 typedef struct lstream Lstream;
|
|
545 typedef struct extent *EXTENT;
|
|
546 typedef struct Lisp_Event Lisp_Event; /* "events.h" */
|
|
547 typedef struct Lisp_Face Lisp_Face; /* "faces.h" */
|
|
548 typedef struct Lisp_Process Lisp_Process; /* "procimpl.h" */
|
|
549 typedef struct Lisp_Color_Instance Lisp_Color_Instance;
|
|
550 typedef struct Lisp_Font_Instance Lisp_Font_Instance;
|
|
551 typedef struct Lisp_Image_Instance Lisp_Image_Instance;
|
|
552 typedef struct Lisp_Gui_Item Lisp_Gui_Item;
|
|
553
|
|
554 /* ------------------------------- */
|
|
555 /* Dynarr typedefs */
|
|
556 /* ------------------------------- */
|
|
557
|
|
558 /* Dynarr typedefs -- basic types first */
|
|
559
|
428
|
560 typedef struct
|
|
561 {
|
665
|
562 Dynarr_declare (Intbyte);
|
|
563 } Intbyte_dynarr;
|
428
|
564
|
|
565 typedef struct
|
|
566 {
|
|
567 Dynarr_declare (Extbyte);
|
|
568 } Extbyte_dynarr;
|
|
569
|
|
570 typedef struct
|
|
571 {
|
|
572 Dynarr_declare (Emchar);
|
|
573 } Emchar_dynarr;
|
|
574
|
|
575 typedef struct
|
|
576 {
|
|
577 Dynarr_declare (char);
|
|
578 } char_dynarr;
|
|
579
|
771
|
580 typedef struct
|
|
581 {
|
|
582 Dynarr_declare (char *);
|
|
583 } char_ptr_dynarr;
|
|
584
|
428
|
585 typedef unsigned char unsigned_char;
|
|
586 typedef struct
|
|
587 {
|
|
588 Dynarr_declare (unsigned char);
|
|
589 } unsigned_char_dynarr;
|
|
590
|
|
591 typedef unsigned long unsigned_long;
|
|
592 typedef struct
|
|
593 {
|
|
594 Dynarr_declare (unsigned long);
|
|
595 } unsigned_long_dynarr;
|
|
596
|
|
597 typedef struct
|
|
598 {
|
|
599 Dynarr_declare (int);
|
|
600 } int_dynarr;
|
|
601
|
|
602 typedef struct
|
|
603 {
|
665
|
604 Dynarr_declare (Charbpos);
|
|
605 } Charbpos_dynarr;
|
428
|
606
|
|
607 typedef struct
|
|
608 {
|
665
|
609 Dynarr_declare (Bytebpos);
|
|
610 } Bytebpos_dynarr;
|
428
|
611
|
|
612 typedef struct
|
|
613 {
|
|
614 Dynarr_declare (Charcount);
|
|
615 } Charcount_dynarr;
|
|
616
|
|
617 typedef struct
|
|
618 {
|
|
619 Dynarr_declare (Bytecount);
|
|
620 } Bytecount_dynarr;
|
|
621
|
771
|
622 /* Dynarr typedefs -- more complex types */
|
|
623
|
|
624 typedef struct
|
|
625 {
|
|
626 Dynarr_declare (struct face_cachel);
|
|
627 } face_cachel_dynarr;
|
|
628
|
|
629 typedef struct
|
|
630 {
|
|
631 Dynarr_declare (struct glyph_cachel);
|
|
632 } glyph_cachel_dynarr;
|
|
633
|
428
|
634 typedef struct
|
|
635 {
|
|
636 Dynarr_declare (struct console_type_entry);
|
|
637 } console_type_entry_dynarr;
|
|
638
|
771
|
639 /* ------------------------------- */
|
|
640 /* enum typedefs */
|
|
641 /* ------------------------------- */
|
|
642
|
428
|
643 enum run_hooks_condition
|
|
644 {
|
|
645 RUN_HOOKS_TO_COMPLETION,
|
|
646 RUN_HOOKS_UNTIL_SUCCESS,
|
|
647 RUN_HOOKS_UNTIL_FAILURE
|
|
648 };
|
|
649
|
|
650 #ifdef HAVE_TOOLBARS
|
|
651 enum toolbar_pos
|
|
652 {
|
|
653 TOP_TOOLBAR,
|
|
654 BOTTOM_TOOLBAR,
|
|
655 LEFT_TOOLBAR,
|
|
656 RIGHT_TOOLBAR
|
|
657 };
|
|
658 #endif
|
|
659
|
|
660 enum edge_style
|
|
661 {
|
|
662 EDGE_ETCHED_IN,
|
|
663 EDGE_ETCHED_OUT,
|
|
664 EDGE_BEVEL_IN,
|
|
665 EDGE_BEVEL_OUT
|
|
666 };
|
|
667
|
|
668 enum munge_me_out_the_door
|
|
669 {
|
|
670 MUNGE_ME_FUNCTION_KEY,
|
|
671 MUNGE_ME_KEY_TRANSLATION
|
|
672 };
|
|
673
|
771
|
674 /* ------------------------------- */
|
|
675 /* misc */
|
|
676 /* ------------------------------- */
|
|
677
|
|
678 #ifdef MEMORY_USAGE_STATS
|
|
679
|
|
680 /* This structure is used to keep statistics on the amount of memory
|
|
681 in use.
|
|
682
|
|
683 WAS_REQUESTED stores the actual amount of memory that was requested
|
|
684 of the allocation function. The *_OVERHEAD fields store the
|
|
685 additional amount of memory that was grabbed by the functions to
|
|
686 facilitate allocation, reallocation, etc. MALLOC_OVERHEAD is for
|
|
687 memory allocated with malloc(); DYNARR_OVERHEAD is for dynamic
|
|
688 arrays; GAP_OVERHEAD is for gap arrays. Note that for (e.g.)
|
|
689 dynamic arrays, there is both MALLOC_OVERHEAD and DYNARR_OVERHEAD
|
|
690 memory: The dynamic array allocates memory above and beyond what
|
|
691 was asked of it, and when it in turns allocates memory using
|
|
692 malloc(), malloc() allocates memory beyond what it was asked
|
|
693 to allocate.
|
|
694
|
|
695 Functions that accept a structure of this sort do not initialize
|
|
696 the fields to 0, and add any existing values to whatever was there
|
|
697 before; this way, you can get a cumulative effect. */
|
|
698
|
|
699 struct overhead_stats
|
|
700 {
|
|
701 int was_requested;
|
|
702 int malloc_overhead;
|
|
703 int dynarr_overhead;
|
|
704 int gap_overhead;
|
|
705 };
|
|
706
|
|
707 #endif /* MEMORY_USAGE_STATS */
|
|
708
|
428
|
709
|
|
710 /************************************************************************/
|
|
711 /* Definition of Lisp_Object data type */
|
|
712 /************************************************************************/
|
|
713
|
|
714 /* Define the fundamental Lisp data structures */
|
|
715
|
|
716 /* This is the set of Lisp data types */
|
|
717
|
|
718 enum Lisp_Type
|
|
719 {
|
|
720 Lisp_Type_Record,
|
|
721 Lisp_Type_Int_Even,
|
|
722 Lisp_Type_Char,
|
|
723 Lisp_Type_Int_Odd
|
|
724 };
|
|
725
|
|
726 #define POINTER_TYPE_P(type) ((type) == Lisp_Type_Record)
|
|
727
|
|
728 /* Overridden by m/next.h */
|
|
729 #ifndef ASSERT_VALID_POINTER
|
|
730 # define ASSERT_VALID_POINTER(pnt) (assert ((((EMACS_UINT) pnt) & 3) == 0))
|
|
731 #endif
|
|
732
|
|
733 #define GCMARKBITS 0
|
|
734 #define GCTYPEBITS 2
|
|
735 #define GCBITS 2
|
|
736 #define INT_GCBITS 1
|
|
737
|
|
738 #define INT_VALBITS (BITS_PER_EMACS_INT - INT_GCBITS)
|
|
739 #define VALBITS (BITS_PER_EMACS_INT - GCBITS)
|
542
|
740 #define EMACS_INT_MAX ((EMACS_INT) ((1UL << (INT_VALBITS - 1)) -1UL))
|
442
|
741 #define EMACS_INT_MIN (-(EMACS_INT_MAX) - 1)
|
428
|
742
|
|
743 #ifdef USE_UNION_TYPE
|
|
744 # include "lisp-union.h"
|
|
745 #else /* !USE_UNION_TYPE */
|
|
746 # include "lisp-disunion.h"
|
|
747 #endif /* !USE_UNION_TYPE */
|
|
748
|
|
749 #define XPNTR(x) ((void *) XPNTRVAL(x))
|
|
750
|
|
751 /* WARNING WARNING WARNING. You must ensure on your own that proper
|
|
752 GC protection is provided for the elements in this array. */
|
|
753 typedef struct
|
|
754 {
|
|
755 Dynarr_declare (Lisp_Object);
|
|
756 } Lisp_Object_dynarr;
|
|
757
|
452
|
758 typedef struct
|
|
759 {
|
|
760 Dynarr_declare (Lisp_Object *);
|
|
761 } Lisp_Object_ptr_dynarr;
|
|
762
|
428
|
763 /* Close your eyes now lest you vomit or spontaneously combust ... */
|
|
764
|
|
765 #define HACKEQ_UNSAFE(obj1, obj2) \
|
|
766 (EQ (obj1, obj2) || (!POINTER_TYPE_P (XTYPE (obj1)) \
|
|
767 && !POINTER_TYPE_P (XTYPE (obj2)) \
|
|
768 && XCHAR_OR_INT (obj1) == XCHAR_OR_INT (obj2)))
|
|
769
|
|
770 #ifdef DEBUG_XEMACS
|
|
771 extern int debug_issue_ebola_notices;
|
|
772 int eq_with_ebola_notice (Lisp_Object, Lisp_Object);
|
|
773 #define EQ_WITH_EBOLA_NOTICE(obj1, obj2) \
|
|
774 (debug_issue_ebola_notices ? eq_with_ebola_notice (obj1, obj2) \
|
|
775 : EQ (obj1, obj2))
|
|
776 #else
|
|
777 #define EQ_WITH_EBOLA_NOTICE(obj1, obj2) EQ (obj1, obj2)
|
|
778 #endif
|
|
779
|
|
780 /* OK, you can open them again */
|
|
781
|
|
782
|
|
783 /************************************************************************/
|
442
|
784 /** Definitions of basic Lisp objects **/
|
428
|
785 /************************************************************************/
|
|
786
|
|
787 #include "lrecord.h"
|
|
788
|
442
|
789 /*------------------------------ unbound -------------------------------*/
|
428
|
790
|
|
791 /* Qunbound is a special Lisp_Object (actually of type
|
|
792 symbol-value-forward), that can never be visible to
|
|
793 the Lisp caller and thus can be used in the C code
|
|
794 to mean "no such value". */
|
|
795
|
|
796 #define UNBOUNDP(val) EQ (val, Qunbound)
|
|
797
|
771
|
798 /* Evaluate expr, return it if it's not Qunbound. */
|
|
799 #define RETURN_IF_NOT_UNBOUND(expr) do \
|
|
800 { \
|
|
801 Lisp_Object ret_nunb_val = (expr); \
|
|
802 if (!UNBOUNDP (ret_nunb_val)) \
|
|
803 RETURN_SANS_WARNINGS ret_nunb_val; \
|
|
804 } while (0)
|
|
805
|
442
|
806 /*------------------------------- cons ---------------------------------*/
|
428
|
807
|
|
808 /* In a cons, the markbit of the car is the gc mark bit */
|
|
809
|
|
810 struct Lisp_Cons
|
|
811 {
|
|
812 struct lrecord_header lheader;
|
|
813 Lisp_Object car, cdr;
|
|
814 };
|
|
815 typedef struct Lisp_Cons Lisp_Cons;
|
|
816
|
|
817 #if 0 /* FSFmacs */
|
|
818 /* Like a cons, but records info on where the text lives that it was read from */
|
|
819 /* This is not really in use now */
|
|
820
|
|
821 struct Lisp_Buffer_Cons
|
|
822 {
|
|
823 Lisp_Object car, cdr;
|
|
824 struct buffer *buffer;
|
665
|
825 int charbpos;
|
428
|
826 };
|
|
827 #endif
|
|
828
|
|
829 DECLARE_LRECORD (cons, Lisp_Cons);
|
|
830 #define XCONS(x) XRECORD (x, cons, Lisp_Cons)
|
|
831 #define XSETCONS(x, p) XSETRECORD (x, p, cons)
|
617
|
832 #define wrap_cons(p) wrap_record (p, cons)
|
428
|
833 #define CONSP(x) RECORDP (x, cons)
|
|
834 #define CHECK_CONS(x) CHECK_RECORD (x, cons)
|
|
835 #define CONCHECK_CONS(x) CONCHECK_RECORD (x, cons)
|
|
836
|
|
837 #define CONS_MARKED_P(c) MARKED_RECORD_HEADER_P(&((c)->lheader))
|
|
838 #define MARK_CONS(c) MARK_RECORD_HEADER (&((c)->lheader))
|
|
839
|
|
840 extern Lisp_Object Qnil;
|
|
841
|
|
842 #define NILP(x) EQ (x, Qnil)
|
|
843 #define XCAR(a) (XCONS (a)->car)
|
|
844 #define XCDR(a) (XCONS (a)->cdr)
|
|
845 #define LISTP(x) (CONSP(x) || NILP(x))
|
|
846
|
|
847 #define CHECK_LIST(x) do { \
|
|
848 if (!LISTP (x)) \
|
|
849 dead_wrong_type_argument (Qlistp, x); \
|
|
850 } while (0)
|
|
851
|
|
852 #define CONCHECK_LIST(x) do { \
|
|
853 if (!LISTP (x)) \
|
|
854 x = wrong_type_argument (Qlistp, x); \
|
|
855 } while (0)
|
|
856
|
442
|
857 /*---------------------- list traversal macros -------------------------*/
|
|
858
|
|
859 /* Note: These macros are for traversing through a list in some format,
|
|
860 and executing code that you specify on each member of the list.
|
|
861
|
|
862 There are two kinds of macros, those requiring surrounding braces, and
|
|
863 those not requiring this. Which type of macro will be indicated.
|
|
864 The general format for using a brace-requiring macro is
|
|
865
|
|
866 {
|
|
867 LIST_LOOP_3 (elt, list, tail)
|
|
868 execute_code_here;
|
|
869 }
|
|
870
|
|
871 or
|
|
872
|
|
873 {
|
|
874 LIST_LOOP_3 (elt, list, tail)
|
|
875 {
|
|
876 execute_code_here;
|
|
877 }
|
|
878 }
|
|
879
|
|
880 You can put variable declarations between the brace and beginning of
|
|
881 macro, but NOTHING ELSE.
|
|
882
|
|
883 The brace-requiring macros typically declare themselves any arguments
|
|
884 that are initialized and iterated by the macros. If for some reason
|
|
885 you need to declare these arguments yourself (e.g. to do something on
|
|
886 them before the iteration starts, use the _NO_DECLARE versions of the
|
|
887 macros.)
|
|
888 */
|
|
889
|
|
890 /* There are two basic kinds of macros: those that handle "internal" lists
|
|
891 that are known to be correctly structured (i.e. first element is a cons
|
|
892 or nil, and the car of each cons is also a cons or nil, and there are
|
|
893 no circularities), and those that handle "external" lists, where the
|
|
894 list may have any sort of invalid formation. This is reflected in
|
|
895 the names: those with "EXTERNAL_" work with external lists, and those
|
|
896 without this prefix work with internal lists. The internal-list
|
|
897 macros will hit an assertion failure if the structure is ill-formed;
|
|
898 the external-list macros will signal an error in this case, either a
|
|
899 malformed-list error or a circular-list error.
|
|
900
|
|
901 Note also that the simplest external list iterator, EXTERNAL_LIST_LOOP,
|
|
902 does *NOT* check for circularities. Therefore, make sure you call
|
|
903 QUIT each iteration or so. However, it's probably easier just to use
|
|
904 EXTERNAL_LIST_LOOP_2, which is easier to use in any case.
|
|
905 */
|
|
906
|
|
907 /* LIST_LOOP and EXTERNAL_LIST_LOOP are the simplest macros. They don't
|
|
908 require brace surrounding, and iterate through a list, which may or may
|
|
909 not known to be syntactically correct. EXTERNAL_LIST_LOOP is for those
|
|
910 not known to be correct, and it detects and signals a malformed list
|
|
911 error when encountering a problem. Circularities, however, are not
|
|
912 handled, and cause looping forever, so make sure to include a QUIT.
|
|
913 These functions also accept two args, TAIL (set progressively to each
|
|
914 cons starting with the first), and LIST, the list to iterate over.
|
|
915 TAIL needs to be defined by the program.
|
|
916
|
|
917 In each iteration, you can retrieve the current list item using XCAR
|
|
918 (tail), or destructively modify the list using XSETCAR (tail,
|
|
919 ...). */
|
|
920
|
428
|
921 #define LIST_LOOP(tail, list) \
|
|
922 for (tail = list; \
|
|
923 !NILP (tail); \
|
|
924 tail = XCDR (tail))
|
|
925
|
|
926 #define EXTERNAL_LIST_LOOP(tail, list) \
|
|
927 for (tail = list; !NILP (tail); tail = XCDR (tail)) \
|
|
928 if (!CONSP (tail)) \
|
|
929 signal_malformed_list_error (list); \
|
|
930 else
|
|
931
|
442
|
932 /* The following macros are the "core" macros for list traversal.
|
|
933
|
|
934 *** ALL OF THESE MACROS MUST BE DECLARED INSIDE BRACES -- SEE ABOVE. ***
|
|
935
|
|
936 LIST_LOOP_2 and EXTERNAL_LIST_LOOP_2 are the standard, most-often used
|
|
937 macros. They take two arguments, an element variable ELT and the list
|
|
938 LIST. ELT is automatically declared, and set to each element in turn
|
|
939 from LIST.
|
|
940
|
|
941 LIST_LOOP_3 and EXTERNAL_LIST_LOOP_3 are the same, but they have a third
|
|
942 argument TAIL, another automatically-declared variable. At each iteration,
|
|
943 this one points to the cons cell for which ELT is the car.
|
|
944
|
|
945 EXTERNAL_LIST_LOOP_4 is like EXTERNAL_LIST_LOOP_3 but takes an additional
|
|
946 LEN argument, again automatically declared, which counts the number of
|
|
947 iterations gone by. It is 0 during the first iteration.
|
|
948
|
|
949 EXTERNAL_LIST_LOOP_4_NO_DECLARE is like EXTERNAL_LIST_LOOP_4 but none
|
|
950 of the variables are automatically declared, and so you need to declare
|
|
951 them yourself. (ELT and TAIL are Lisp_Objects, and LEN is an EMACS_INT.)
|
|
952 */
|
|
953
|
|
954 #define LIST_LOOP_2(elt, list) \
|
|
955 LIST_LOOP_3(elt, list, unused_tail_##elt)
|
|
956
|
|
957 #define LIST_LOOP_3(elt, list, tail) \
|
|
958 Lisp_Object elt, tail; \
|
|
959 for (tail = list; \
|
|
960 NILP (tail) ? \
|
|
961 0 : (elt = XCAR (tail), 1); \
|
|
962 tail = XCDR (tail))
|
428
|
963
|
|
964 /* The following macros are for traversing lisp lists.
|
|
965 Signal an error if LIST is not properly acyclic and nil-terminated.
|
|
966
|
|
967 Use tortoise/hare algorithm to check for cycles, but only if it
|
|
968 looks like the list is getting too long. Not only is the hare
|
|
969 faster than the tortoise; it even gets a head start! */
|
|
970
|
|
971 /* Optimized and safe macros for looping over external lists. */
|
|
972 #define CIRCULAR_LIST_SUSPICION_LENGTH 1024
|
|
973
|
|
974 #define EXTERNAL_LIST_LOOP_1(list) \
|
|
975 Lisp_Object ELL1_elt, ELL1_hare, ELL1_tortoise; \
|
442
|
976 EMACS_INT ELL1_len; \
|
|
977 PRIVATE_EXTERNAL_LIST_LOOP_6 (ELL1_elt, list, ELL1_len, ELL1_hare, \
|
428
|
978 ELL1_tortoise, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
979
|
|
980 #define EXTERNAL_LIST_LOOP_2(elt, list) \
|
442
|
981 Lisp_Object elt, hare_##elt, tortoise_##elt; \
|
|
982 EMACS_INT len_##elt; \
|
|
983 PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len_##elt, hare_##elt, \
|
428
|
984 tortoise_##elt, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
985
|
|
986 #define EXTERNAL_LIST_LOOP_3(elt, list, tail) \
|
442
|
987 Lisp_Object elt, tail, tortoise_##elt; \
|
|
988 EMACS_INT len_##elt; \
|
|
989 PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len_##elt, tail, \
|
|
990 tortoise_##elt, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
991
|
|
992 #define EXTERNAL_LIST_LOOP_4_NO_DECLARE(elt, list, tail, len) \
|
428
|
993 Lisp_Object tortoise_##elt; \
|
442
|
994 PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len, tail, \
|
428
|
995 tortoise_##elt, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
996
|
|
997 #define EXTERNAL_LIST_LOOP_4(elt, list, tail, len) \
|
442
|
998 Lisp_Object elt, tail, tortoise_##elt; \
|
|
999 EMACS_INT len; \
|
|
1000 PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len, tail, \
|
428
|
1001 tortoise_##elt, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1002
|
|
1003
|
444
|
1004 #define PRIVATE_EXTERNAL_LIST_LOOP_6(elt, list, len, hare, \
|
|
1005 tortoise, suspicion_length) \
|
|
1006 for (tortoise = hare = list, len = 0; \
|
|
1007 \
|
|
1008 (CONSP (hare) ? ((elt = XCAR (hare)), 1) : \
|
|
1009 (NILP (hare) ? 0 : \
|
|
1010 (signal_malformed_list_error (list), 0))); \
|
|
1011 \
|
|
1012 hare = XCDR (hare), \
|
|
1013 (void) \
|
|
1014 ((++len > suspicion_length) \
|
|
1015 && \
|
|
1016 ((((len & 1) != 0) && (tortoise = XCDR (tortoise), 0)), \
|
|
1017 (EQ (hare, tortoise) && (signal_circular_list_error (list), 0)))))
|
428
|
1018
|
442
|
1019 /* GET_LIST_LENGTH and GET_EXTERNAL_LIST_LENGTH:
|
|
1020
|
|
1021 These two macros return the length of LIST (either an internal or external
|
|
1022 list, according to which macro is used), stored into LEN (which must
|
|
1023 be declared by the caller). Circularities are trapped in external lists
|
|
1024 (and cause errors). Neither macro need be declared inside brackets. */
|
|
1025
|
|
1026 #define GET_LIST_LENGTH(list, len) do { \
|
|
1027 Lisp_Object GLL_tail; \
|
|
1028 for (GLL_tail = list, len = 0; \
|
|
1029 !NILP (GLL_tail); \
|
|
1030 GLL_tail = XCDR (GLL_tail), ++len) \
|
|
1031 DO_NOTHING; \
|
|
1032 } while (0)
|
|
1033
|
|
1034 #define GET_EXTERNAL_LIST_LENGTH(list, len) \
|
|
1035 do { \
|
|
1036 Lisp_Object GELL_elt, GELL_tail; \
|
|
1037 EXTERNAL_LIST_LOOP_4_NO_DECLARE (GELL_elt, list, GELL_tail, len) \
|
|
1038 ; \
|
|
1039 } while (0)
|
|
1040
|
|
1041 /* For a list that's known to be in valid list format, where we may
|
|
1042 be deleting the current element out of the list --
|
|
1043 will abort() if the list is not in valid format */
|
|
1044 #define LIST_LOOP_DELETING(consvar, nextconsvar, list) \
|
|
1045 for (consvar = list; \
|
|
1046 !NILP (consvar) ? (nextconsvar = XCDR (consvar), 1) :0; \
|
|
1047 consvar = nextconsvar)
|
|
1048
|
|
1049 /* LIST_LOOP_DELETE_IF and EXTERNAL_LIST_LOOP_DELETE_IF:
|
|
1050
|
|
1051 These two macros delete all elements of LIST (either an internal or
|
|
1052 external list, according to which macro is used) satisfying
|
|
1053 CONDITION, a C expression referring to variable ELT. ELT is
|
|
1054 automatically declared. Circularities are trapped in external
|
|
1055 lists (and cause errors). Neither macro need be declared inside
|
|
1056 brackets. */
|
|
1057
|
|
1058 #define LIST_LOOP_DELETE_IF(elt, list, condition) do { \
|
|
1059 /* Do not use ##list when creating new variables because \
|
|
1060 that may not be just a variable name. */ \
|
|
1061 Lisp_Object prev_tail_##elt = Qnil; \
|
|
1062 LIST_LOOP_3 (elt, list, tail_##elt) \
|
|
1063 { \
|
|
1064 if (condition) \
|
|
1065 { \
|
|
1066 if (NILP (prev_tail_##elt)) \
|
|
1067 list = XCDR (tail_##elt); \
|
|
1068 else \
|
|
1069 XCDR (prev_tail_##elt) = XCDR (tail_##elt); \
|
|
1070 } \
|
|
1071 else \
|
|
1072 prev_tail_##elt = tail_##elt; \
|
|
1073 } \
|
|
1074 } while (0)
|
|
1075
|
|
1076 #define EXTERNAL_LIST_LOOP_DELETE_IF(elt, list, condition) do { \
|
|
1077 Lisp_Object prev_tail_##elt = Qnil; \
|
|
1078 EXTERNAL_LIST_LOOP_4 (elt, list, tail_##elt, len_##elt) \
|
|
1079 { \
|
|
1080 if (condition) \
|
|
1081 { \
|
|
1082 if (NILP (prev_tail_##elt)) \
|
|
1083 list = XCDR (tail_##elt); \
|
|
1084 else \
|
|
1085 XCDR (prev_tail_##elt) = XCDR (tail_##elt); \
|
|
1086 /* Keep tortoise from ever passing hare. */ \
|
|
1087 len_##elt = 0; \
|
|
1088 } \
|
|
1089 else \
|
|
1090 prev_tail_##elt = tail_##elt; \
|
|
1091 } \
|
|
1092 } while (0)
|
|
1093
|
|
1094
|
|
1095 /* Macros for looping over external alists.
|
|
1096
|
|
1097 *** ALL OF THESE MACROS MUST BE DECLARED INSIDE BRACES -- SEE ABOVE. ***
|
|
1098
|
|
1099 EXTERNAL_ALIST_LOOP_4 is similar to EXTERNAL_LIST_LOOP_2, but it
|
|
1100 assumes the elements are aconses (the elements in an alist) and
|
|
1101 sets two additional argument variables ELT_CAR and ELT_CDR to the
|
|
1102 car and cdr of the acons. All of the variables ELT, ELT_CAR and
|
|
1103 ELT_CDR are automatically declared.
|
|
1104
|
|
1105 EXTERNAL_ALIST_LOOP_5 adds a TAIL argument to EXTERNAL_ALIST_LOOP_4,
|
|
1106 just like EXTERNAL_LIST_LOOP_3 does, and again TAIL is automatically
|
|
1107 declared.
|
|
1108
|
|
1109 EXTERNAL_ALIST_LOOP_6 adds a LEN argument to EXTERNAL_ALIST_LOOP_5,
|
|
1110 just like EXTERNAL_LIST_LOOP_4 does, and again LEN is automatically
|
|
1111 declared.
|
|
1112
|
|
1113 EXTERNAL_ALIST_LOOP_6_NO_DECLARE does not declare any of its arguments,
|
|
1114 just like EXTERNAL_LIST_LOOP_4_NO_DECLARE, and so these must be declared
|
|
1115 manually.
|
|
1116 */
|
428
|
1117
|
|
1118 /* Optimized and safe macros for looping over external alists. */
|
|
1119 #define EXTERNAL_ALIST_LOOP_4(elt, elt_car, elt_cdr, list) \
|
442
|
1120 Lisp_Object elt, elt_car, elt_cdr; \
|
428
|
1121 Lisp_Object hare_##elt, tortoise_##elt; \
|
|
1122 EMACS_INT len_##elt; \
|
442
|
1123 PRIVATE_EXTERNAL_ALIST_LOOP_8 (elt, elt_car, elt_cdr, list, \
|
428
|
1124 len_##elt, hare_##elt, tortoise_##elt, \
|
|
1125 CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1126
|
|
1127 #define EXTERNAL_ALIST_LOOP_5(elt, elt_car, elt_cdr, list, tail) \
|
442
|
1128 Lisp_Object elt, elt_car, elt_cdr, tail; \
|
428
|
1129 Lisp_Object tortoise_##elt; \
|
|
1130 EMACS_INT len_##elt; \
|
442
|
1131 PRIVATE_EXTERNAL_ALIST_LOOP_8 (elt, elt_car, elt_cdr, list, \
|
428
|
1132 len_##elt, tail, tortoise_##elt, \
|
|
1133 CIRCULAR_LIST_SUSPICION_LENGTH) \
|
|
1134
|
|
1135 #define EXTERNAL_ALIST_LOOP_6(elt, elt_car, elt_cdr, list, tail, len) \
|
442
|
1136 Lisp_Object elt, elt_car, elt_cdr, tail; \
|
|
1137 EMACS_INT len; \
|
428
|
1138 Lisp_Object tortoise_##elt; \
|
442
|
1139 PRIVATE_EXTERNAL_ALIST_LOOP_8 (elt, elt_car, elt_cdr, list, \
|
428
|
1140 len, tail, tortoise_##elt, \
|
|
1141 CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1142
|
442
|
1143 #define EXTERNAL_ALIST_LOOP_6_NO_DECLARE(elt, elt_car, elt_cdr, list, \
|
|
1144 tail, len) \
|
|
1145 Lisp_Object tortoise_##elt; \
|
|
1146 PRIVATE_EXTERNAL_ALIST_LOOP_8 (elt, elt_car, elt_cdr, list, \
|
|
1147 len, tail, tortoise_##elt, \
|
|
1148 CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1149
|
|
1150
|
|
1151 #define PRIVATE_EXTERNAL_ALIST_LOOP_8(elt, elt_car, elt_cdr, list, len, \
|
|
1152 hare, tortoise, suspicion_length) \
|
|
1153 PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len, hare, tortoise, \
|
|
1154 suspicion_length) \
|
428
|
1155 if (CONSP (elt) ? (elt_car = XCAR (elt), elt_cdr = XCDR (elt), 0) :1) \
|
|
1156 continue; \
|
|
1157 else
|
|
1158
|
442
|
1159 /* Macros for looping over external property lists.
|
|
1160
|
|
1161 *** ALL OF THESE MACROS MUST BE DECLARED INSIDE BRACES -- SEE ABOVE. ***
|
|
1162
|
|
1163 EXTERNAL_PROPERTY_LIST_LOOP_3 maps over an external list assumed to
|
|
1164 be a property list, consisting of alternating pairs of keys
|
|
1165 (typically symbols or keywords) and values. Each iteration
|
|
1166 processes one such pair out of LIST, assigning the two elements to
|
|
1167 KEY and VALUE respectively. Malformed lists and circularities are
|
|
1168 trapped as usual, and in addition, property lists with an odd number
|
|
1169 of elements also signal an error.
|
|
1170
|
|
1171 EXTERNAL_PROPERTY_LIST_LOOP_4 adds a TAIL argument to
|
|
1172 EXTERNAL_PROPERTY_LIST_LOOP_3, just like EXTERNAL_LIST_LOOP_3 does,
|
|
1173 and again TAIL is automatically declared.
|
|
1174
|
|
1175 EXTERNAL_PROPERTY_LIST_LOOP_5 adds a LEN argument to
|
|
1176 EXTERNAL_PROPERTY_LIST_LOOP_4, just like EXTERNAL_LIST_LOOP_4 does,
|
|
1177 and again LEN is automatically declared. Note that in this case,
|
|
1178 LEN counts the iterations, NOT the total number of list elements
|
|
1179 processed, which is 2 * LEN.
|
|
1180
|
|
1181 EXTERNAL_PROPERTY_LIST_LOOP_5_NO_DECLARE does not declare any of its
|
|
1182 arguments, just like EXTERNAL_LIST_LOOP_4_NO_DECLARE, and so these
|
|
1183 must be declared manually. */
|
428
|
1184
|
|
1185 /* Optimized and safe macros for looping over external property lists. */
|
|
1186 #define EXTERNAL_PROPERTY_LIST_LOOP_3(key, value, list) \
|
|
1187 Lisp_Object key, value, hare_##key, tortoise_##key; \
|
442
|
1188 EMACS_INT len_##key; \
|
428
|
1189 EXTERNAL_PROPERTY_LIST_LOOP_7 (key, value, list, len_##key, hare_##key, \
|
|
1190 tortoise_##key, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1191
|
|
1192 #define EXTERNAL_PROPERTY_LIST_LOOP_4(key, value, list, tail) \
|
|
1193 Lisp_Object key, value, tail, tortoise_##key; \
|
442
|
1194 EMACS_INT len_##key; \
|
428
|
1195 EXTERNAL_PROPERTY_LIST_LOOP_7 (key, value, list, len_##key, tail, \
|
|
1196 tortoise_##key, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1197
|
|
1198 #define EXTERNAL_PROPERTY_LIST_LOOP_5(key, value, list, tail, len) \
|
|
1199 Lisp_Object key, value, tail, tortoise_##key; \
|
|
1200 EMACS_INT len; \
|
|
1201 EXTERNAL_PROPERTY_LIST_LOOP_7 (key, value, list, len, tail, \
|
|
1202 tortoise_##key, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1203
|
442
|
1204 #define EXTERNAL_PROPERTY_LIST_LOOP_5_NO_DECLARE(key, value, list, \
|
|
1205 tail, len) \
|
|
1206 Lisp_Object tortoise_##key; \
|
|
1207 EXTERNAL_PROPERTY_LIST_LOOP_7 (key, value, list, len, tail, \
|
|
1208 tortoise_##key, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1209
|
428
|
1210
|
|
1211 #define EXTERNAL_PROPERTY_LIST_LOOP_7(key, value, list, len, hare, \
|
|
1212 tortoise, suspicion_length) \
|
|
1213 for (tortoise = hare = list, len = 0; \
|
|
1214 \
|
|
1215 ((CONSP (hare) && \
|
|
1216 (key = XCAR (hare), \
|
|
1217 hare = XCDR (hare), \
|
442
|
1218 (CONSP (hare) ? 1 : \
|
|
1219 (signal_malformed_property_list_error (list), 0)))) ? \
|
428
|
1220 (value = XCAR (hare), 1) : \
|
|
1221 (NILP (hare) ? 0 : \
|
|
1222 (signal_malformed_property_list_error (list), 0))); \
|
|
1223 \
|
|
1224 hare = XCDR (hare), \
|
|
1225 ((++len < suspicion_length) ? \
|
|
1226 ((void) 0) : \
|
|
1227 (((len & 1) ? \
|
|
1228 ((void) (tortoise = XCDR (XCDR (tortoise)))) : \
|
|
1229 ((void) 0)) \
|
|
1230 , \
|
|
1231 (EQ (hare, tortoise) ? \
|
|
1232 ((void) signal_circular_property_list_error (list)) : \
|
|
1233 ((void) 0)))))
|
|
1234
|
|
1235 /* For a property list (alternating keywords/values) that may not be
|
|
1236 in valid list format -- will signal an error if the list is not in
|
|
1237 valid format. CONSVAR is used to keep track of the iterations
|
|
1238 without modifying PLIST.
|
|
1239
|
|
1240 We have to be tricky to still keep the same C format.*/
|
|
1241 #define EXTERNAL_PROPERTY_LIST_LOOP(tail, key, value, plist) \
|
|
1242 for (tail = plist; \
|
|
1243 (CONSP (tail) && CONSP (XCDR (tail)) ? \
|
|
1244 (key = XCAR (tail), value = XCAR (XCDR (tail))) : \
|
|
1245 (key = Qunbound, value = Qunbound)), \
|
|
1246 !NILP (tail); \
|
|
1247 tail = XCDR (XCDR (tail))) \
|
|
1248 if (UNBOUNDP (key)) \
|
|
1249 Fsignal (Qmalformed_property_list, list1 (plist)); \
|
|
1250 else
|
|
1251
|
|
1252 #define PROPERTY_LIST_LOOP(tail, key, value, plist) \
|
|
1253 for (tail = plist; \
|
|
1254 NILP (tail) ? 0 : \
|
|
1255 (key = XCAR (tail), tail = XCDR (tail), \
|
|
1256 value = XCAR (tail), tail = XCDR (tail), 1); \
|
|
1257 )
|
|
1258
|
|
1259 /* Return 1 if LIST is properly acyclic and nil-terminated, else 0. */
|
442
|
1260 INLINE_HEADER int TRUE_LIST_P (Lisp_Object object);
|
|
1261 INLINE_HEADER int
|
428
|
1262 TRUE_LIST_P (Lisp_Object object)
|
|
1263 {
|
|
1264 Lisp_Object hare, tortoise;
|
|
1265 EMACS_INT len;
|
|
1266
|
|
1267 for (hare = tortoise = object, len = 0;
|
|
1268 CONSP (hare);
|
|
1269 hare = XCDR (hare), len++)
|
|
1270 {
|
|
1271 if (len < CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1272 continue;
|
|
1273
|
|
1274 if (len & 1)
|
|
1275 tortoise = XCDR (tortoise);
|
|
1276 else if (EQ (hare, tortoise))
|
|
1277 return 0;
|
|
1278 }
|
|
1279
|
|
1280 return NILP (hare);
|
|
1281 }
|
|
1282
|
|
1283 /* Signal an error if LIST is not properly acyclic and nil-terminated. */
|
|
1284 #define CHECK_TRUE_LIST(list) do { \
|
|
1285 Lisp_Object CTL_list = (list); \
|
|
1286 Lisp_Object CTL_hare, CTL_tortoise; \
|
436
|
1287 EMACS_INT CTL_len; \
|
428
|
1288 \
|
|
1289 for (CTL_hare = CTL_tortoise = CTL_list, CTL_len = 0; \
|
|
1290 CONSP (CTL_hare); \
|
|
1291 CTL_hare = XCDR (CTL_hare), CTL_len++) \
|
|
1292 { \
|
|
1293 if (CTL_len < CIRCULAR_LIST_SUSPICION_LENGTH) \
|
|
1294 continue; \
|
|
1295 \
|
|
1296 if (CTL_len & 1) \
|
|
1297 CTL_tortoise = XCDR (CTL_tortoise); \
|
|
1298 else if (EQ (CTL_hare, CTL_tortoise)) \
|
|
1299 Fsignal (Qcircular_list, list1 (CTL_list)); \
|
|
1300 } \
|
|
1301 \
|
|
1302 if (! NILP (CTL_hare)) \
|
|
1303 signal_malformed_list_error (CTL_list); \
|
|
1304 } while (0)
|
|
1305
|
442
|
1306 /*------------------------------ string --------------------------------*/
|
428
|
1307
|
|
1308 struct Lisp_String
|
|
1309 {
|
771
|
1310 union
|
|
1311 {
|
|
1312 struct lrecord_header lheader;
|
|
1313 struct
|
|
1314 {
|
|
1315 /* WARNING: Everything before ascii_begin must agree exactly with
|
|
1316 struct lrecord_header */
|
|
1317 unsigned int type :8;
|
|
1318 unsigned int mark :1;
|
|
1319 unsigned int c_readonly :1;
|
|
1320 unsigned int lisp_readonly :1;
|
|
1321 /* Number of chars at beginning of string that are one byte in length
|
|
1322 (BYTE_ASCII_P) */
|
|
1323 unsigned int ascii_begin :21;
|
|
1324 } v;
|
|
1325 } u;
|
428
|
1326 Bytecount size;
|
665
|
1327 Intbyte *data;
|
428
|
1328 Lisp_Object plist;
|
|
1329 };
|
|
1330 typedef struct Lisp_String Lisp_String;
|
|
1331
|
771
|
1332 #define MAX_STRING_ASCII_BEGIN ((2 << 21) - 1)
|
|
1333
|
428
|
1334 DECLARE_LRECORD (string, Lisp_String);
|
|
1335 #define XSTRING(x) XRECORD (x, string, Lisp_String)
|
|
1336 #define XSETSTRING(x, p) XSETRECORD (x, p, string)
|
617
|
1337 #define wrap_string(p) wrap_record (p, string)
|
428
|
1338 #define STRINGP(x) RECORDP (x, string)
|
|
1339 #define CHECK_STRING(x) CHECK_RECORD (x, string)
|
|
1340 #define CONCHECK_STRING(x) CONCHECK_RECORD (x, string)
|
|
1341
|
|
1342 #ifdef MULE
|
|
1343
|
665
|
1344 Charcount bytecount_to_charcount (const Intbyte *ptr, Bytecount len);
|
|
1345 Bytecount charcount_to_bytecount (const Intbyte *ptr, Charcount len);
|
428
|
1346
|
|
1347 #else /* not MULE */
|
|
1348
|
|
1349 # define bytecount_to_charcount(ptr, len) (len)
|
|
1350 # define charcount_to_bytecount(ptr, len) (len)
|
|
1351
|
|
1352 #endif /* not MULE */
|
|
1353
|
|
1354 #define string_length(s) ((s)->size)
|
|
1355 #define XSTRING_LENGTH(s) string_length (XSTRING (s))
|
|
1356 #define string_data(s) ((s)->data + 0)
|
|
1357 #define XSTRING_DATA(s) string_data (XSTRING (s))
|
771
|
1358 #define string_ascii_begin(s) ((s)->u.v.ascii_begin + 0)
|
|
1359 #define XSTRING_ASCII_BEGIN(s) string_ascii_begin (XSTRING (s))
|
|
1360 #define string_char_length(s) string_index_byte_to_char (s, string_length (s))
|
|
1361 #define XSTRING_CHAR_LENGTH(s) string_char_length (XSTRING (s))
|
428
|
1362 #define string_byte(s, i) ((s)->data[i] + 0)
|
|
1363 #define XSTRING_BYTE(s, i) string_byte (XSTRING (s), i)
|
|
1364 #define string_byte_addr(s, i) (&((s)->data[i]))
|
771
|
1365 #define string_char(s, i) charptr_emchar (string_char_addr (s, i))
|
|
1366 #define XSTRING_CHAR(s, i) string_char (XSTRING (s), i)
|
|
1367 #define XSTRING_INDEX_CHAR_TO_BYTE(s, idx) \
|
|
1368 string_index_char_to_byte (XSTRING (s), idx)
|
|
1369 #define XSTRING_INDEX_BYTE_TO_CHAR(s, idx) \
|
|
1370 string_index_byte_to_char (XSTRING (s), idx)
|
|
1371 #define XSTRING_OFFSET_BYTE_TO_CHAR_LEN(s, off, len) \
|
|
1372 string_offset_byte_to_char_len (XSTRING (s), off, len)
|
|
1373 #define XSTRING_OFFSET_CHAR_TO_BYTE_LEN(s, off, len) \
|
|
1374 string_offset_char_to_byte_len (XSTRING (s), off, len)
|
428
|
1375 #define set_string_length(s, len) ((void) ((s)->size = (len)))
|
|
1376 #define set_string_data(s, ptr) ((void) ((s)->data = (ptr)))
|
771
|
1377 /* WARNING: If you modify an existing string, you must call
|
|
1378 bump_string_modiff() afterwards. */
|
442
|
1379 #define set_string_byte(s, i, b) ((void) ((s)->data[i] = (b)))
|
771
|
1380 #define set_string_ascii_begin(s, val) ((void) ((s)->u.v.ascii_begin = (val)))
|
|
1381
|
|
1382 #ifdef ERROR_CHECK_CHARBPOS
|
|
1383 #define SLEDGEHAMMER_CHECK_ASCII_BEGIN
|
|
1384 #endif
|
|
1385
|
|
1386 #ifdef SLEDGEHAMMER_CHECK_ASCII_BEGIN
|
|
1387 void sledgehammer_check_ascii_begin (Lisp_Object str);
|
|
1388 #else
|
|
1389 #define sledgehammer_check_ascii_begin(str)
|
|
1390 #endif
|
|
1391
|
|
1392 /* Make an alloca'd copy of a Lisp string */
|
|
1393 #define LISP_STRING_TO_ALLOCA(s, lval) \
|
|
1394 do { \
|
|
1395 Intbyte **_lta_ = (Intbyte **) &(lval); \
|
|
1396 Lisp_Object _lta_2 = (s); \
|
|
1397 *_lta_ = alloca_array (Intbyte, 1 + XSTRING_LENGTH (_lta_2)); \
|
|
1398 memcpy (*_lta_, XSTRING_DATA (_lta_2), 1 + XSTRING_LENGTH (_lta_2)); \
|
|
1399 } while (0)
|
|
1400
|
|
1401 /* Make an alloca'd copy of a Intbyte * */
|
|
1402 #define INTBYTE_STRING_TO_ALLOCA(p, lval) \
|
|
1403 do { \
|
|
1404 Intbyte **_bsta_ = (Intbyte **) &(lval); \
|
|
1405 const Intbyte *_bsta_2 = (p); \
|
|
1406 Bytecount _bsta_3 = qxestrlen (_bsta_2); \
|
|
1407 *_bsta_ = alloca_array (Intbyte, 1 + _bsta_3); \
|
|
1408 memcpy (*_bsta_, _bsta_2, 1 + _bsta_3); \
|
|
1409 } while (0)
|
|
1410
|
|
1411 #define alloca_intbytes(num) alloca_array (Intbyte, num)
|
|
1412 #define alloca_extbytes(num) alloca_array (Extbyte, num)
|
428
|
1413
|
|
1414 void resize_string (Lisp_String *s, Bytecount pos, Bytecount delta);
|
|
1415
|
|
1416 #ifdef MULE
|
|
1417
|
771
|
1418 /* Convert a byte index into a string into a char index. */
|
|
1419 DECLARE_INLINE_HEADER (
|
|
1420 Charcount
|
|
1421 string_index_byte_to_char (Lisp_String *s, Bytecount idx)
|
|
1422 )
|
|
1423 {
|
|
1424 Charcount retval;
|
|
1425 if (idx <= (Bytecount) string_ascii_begin (s))
|
|
1426 retval = idx;
|
|
1427 else
|
|
1428 retval = (string_ascii_begin (s) +
|
|
1429 bytecount_to_charcount (string_data (s) + string_ascii_begin (s),
|
|
1430 idx - string_ascii_begin (s)));
|
|
1431 #ifdef SLEDGEHAMMER_CHECK_ASCII_BEGIN
|
|
1432 assert (retval == bytecount_to_charcount (string_data (s), idx));
|
|
1433 #endif
|
|
1434 return retval;
|
|
1435 }
|
|
1436
|
|
1437 /* Convert a char index into a string into a byte index. */
|
|
1438 DECLARE_INLINE_HEADER (
|
|
1439 Bytecount
|
|
1440 string_index_char_to_byte (Lisp_String *s, Charcount idx)
|
|
1441 )
|
|
1442 {
|
|
1443 Bytecount retval;
|
|
1444 if (idx <= (Charcount) string_ascii_begin (s))
|
|
1445 retval = idx;
|
|
1446 else
|
|
1447 retval = (string_ascii_begin (s) +
|
|
1448 charcount_to_bytecount (string_data (s) + string_ascii_begin (s),
|
|
1449 idx - string_ascii_begin (s)));
|
|
1450 #ifdef SLEDGEHAMMER_CHECK_ASCII_BEGIN
|
|
1451 assert (retval == charcount_to_bytecount (string_data (s), idx));
|
|
1452 #endif
|
|
1453 return retval;
|
|
1454 }
|
|
1455
|
|
1456 /* Convert a substring length (starting at byte offset OFF) from bytes to
|
|
1457 chars. */
|
|
1458 DECLARE_INLINE_HEADER (
|
|
1459 Charcount
|
|
1460 string_offset_byte_to_char_len (Lisp_String *s, Bytecount off, Bytecount len)
|
|
1461 )
|
428
|
1462 {
|
771
|
1463 Charcount retval;
|
|
1464 if (off + len <= (Bytecount) string_ascii_begin (s))
|
|
1465 retval = len;
|
|
1466 else if (off < (Bytecount) string_ascii_begin (s))
|
|
1467 retval =
|
|
1468 string_ascii_begin (s) - off +
|
|
1469 bytecount_to_charcount (string_data (s) + string_ascii_begin (s),
|
|
1470 len - (string_ascii_begin (s) - off));
|
|
1471 else
|
|
1472 retval = bytecount_to_charcount (string_data (s) + off, len);
|
|
1473 #ifdef SLEDGEHAMMER_CHECK_ASCII_BEGIN
|
|
1474 assert (retval == bytecount_to_charcount (string_data (s) + off, len));
|
|
1475 #endif
|
|
1476 return retval;
|
428
|
1477 }
|
|
1478
|
771
|
1479 /* Convert a substring length (starting at byte offset OFF) from chars to
|
|
1480 bytes. */
|
|
1481 DECLARE_INLINE_HEADER (
|
|
1482 Bytecount
|
|
1483 string_offset_char_to_byte_len (Lisp_String *s, Bytecount off, Charcount len)
|
|
1484 )
|
|
1485 {
|
|
1486 Bytecount retval;
|
|
1487 if (off + len <= (Bytecount) string_ascii_begin (s))
|
|
1488 retval = len;
|
|
1489 else if (off < (Bytecount) string_ascii_begin (s))
|
|
1490 retval =
|
|
1491 string_ascii_begin (s) - off +
|
|
1492 charcount_to_bytecount (string_data (s) + string_ascii_begin (s),
|
|
1493 len - (string_ascii_begin (s) - off));
|
|
1494 else
|
|
1495 retval = charcount_to_bytecount (string_data (s) + off, len);
|
|
1496 #ifdef SLEDGEHAMMER_CHECK_ASCII_BEGIN
|
|
1497 assert (retval == charcount_to_bytecount (string_data (s) + off, len));
|
|
1498 #endif
|
|
1499 return retval;
|
|
1500 }
|
|
1501
|
|
1502 DECLARE_INLINE_HEADER (
|
|
1503 Intbyte *
|
|
1504 string_char_addr (Lisp_String *s, Charcount idx)
|
|
1505 )
|
|
1506 {
|
|
1507 return string_data (s) + string_index_char_to_byte (s, idx);
|
|
1508 }
|
|
1509
|
428
|
1510 void set_string_char (Lisp_String *s, Charcount i, Emchar c);
|
|
1511
|
|
1512 #else /* not MULE */
|
|
1513
|
771
|
1514 #define string_index_byte_to_char(s, idx) (idx)
|
|
1515 #define string_index_char_to_byte(s, idx) (idx)
|
|
1516 #define string_offset_byte_to_char_len(s, off, len) (len)
|
|
1517 #define string_offset_char_to_byte_len(s, off, len) (len)
|
428
|
1518 # define string_char_addr(s, i) string_byte_addr (s, i)
|
771
|
1519 /* WARNING: If you modify an existing string, you must call
|
|
1520 bump_string_modiff() afterwards. */
|
|
1521 # define set_string_char(s, i, c) set_string_byte (s, i, (Intbyte) c)
|
428
|
1522
|
|
1523 #endif /* not MULE */
|
|
1524
|
456
|
1525 /* Return the true aligned size of a struct whose last member is a
|
|
1526 variable-length array field. (this is known as the "struct hack") */
|
|
1527 /* Implementation: in practice, structtype and fieldtype usually have
|
|
1528 the same alignment, but we can't be sure. We need to use
|
|
1529 ALIGN_SIZE to be absolutely sure of getting the correct alignment.
|
|
1530 To help the compiler's optimizer, we use a ternary expression that
|
|
1531 only a very stupid compiler would fail to correctly simplify. */
|
|
1532 #define FLEXIBLE_ARRAY_STRUCT_SIZEOF(structtype, \
|
|
1533 fieldtype, \
|
|
1534 fieldname, \
|
|
1535 array_length) \
|
|
1536 (ALIGNOF (structtype) == ALIGNOF (fieldtype) \
|
|
1537 ? (offsetof (structtype, fieldname) + \
|
|
1538 (offsetof (structtype, fieldname[1]) - \
|
|
1539 offsetof (structtype, fieldname[0])) * \
|
|
1540 (array_length)) \
|
|
1541 : (ALIGN_SIZE \
|
|
1542 ((offsetof (structtype, fieldname) + \
|
|
1543 (offsetof (structtype, fieldname[1]) - \
|
|
1544 offsetof (structtype, fieldname[0])) * \
|
|
1545 (array_length)), \
|
|
1546 ALIGNOF (structtype))))
|
442
|
1547
|
|
1548 /*------------------------------ vector --------------------------------*/
|
428
|
1549
|
|
1550 struct Lisp_Vector
|
|
1551 {
|
|
1552 struct lcrecord_header header;
|
|
1553 long size;
|
|
1554 /* next is now chained through v->contents[size], terminated by Qzero.
|
|
1555 This means that pure vectors don't need a "next" */
|
|
1556 /* struct Lisp_Vector *next; */
|
|
1557 Lisp_Object contents[1];
|
|
1558 };
|
|
1559 typedef struct Lisp_Vector Lisp_Vector;
|
|
1560
|
|
1561 DECLARE_LRECORD (vector, Lisp_Vector);
|
|
1562 #define XVECTOR(x) XRECORD (x, vector, Lisp_Vector)
|
|
1563 #define XSETVECTOR(x, p) XSETRECORD (x, p, vector)
|
617
|
1564 #define wrap_vector(p) wrap_record (p, vector)
|
428
|
1565 #define VECTORP(x) RECORDP (x, vector)
|
|
1566 #define CHECK_VECTOR(x) CHECK_RECORD (x, vector)
|
|
1567 #define CONCHECK_VECTOR(x) CONCHECK_RECORD (x, vector)
|
|
1568
|
|
1569 #define vector_length(v) ((v)->size)
|
|
1570 #define XVECTOR_LENGTH(s) vector_length (XVECTOR (s))
|
|
1571 #define vector_data(v) ((v)->contents)
|
|
1572 #define XVECTOR_DATA(s) vector_data (XVECTOR (s))
|
|
1573
|
442
|
1574 /*---------------------------- bit vectors -----------------------------*/
|
428
|
1575
|
|
1576 #if (LONGBITS < 16)
|
|
1577 #error What the hell?!
|
|
1578 #elif (LONGBITS < 32)
|
|
1579 # define LONGBITS_LOG2 4
|
|
1580 # define LONGBITS_POWER_OF_2 16
|
|
1581 #elif (LONGBITS < 64)
|
|
1582 # define LONGBITS_LOG2 5
|
|
1583 # define LONGBITS_POWER_OF_2 32
|
|
1584 #elif (LONGBITS < 128)
|
|
1585 # define LONGBITS_LOG2 6
|
|
1586 # define LONGBITS_POWER_OF_2 64
|
|
1587 #else
|
|
1588 #error You really have 128-bit integers?!
|
|
1589 #endif
|
|
1590
|
|
1591 struct Lisp_Bit_Vector
|
|
1592 {
|
|
1593 struct lrecord_header lheader;
|
|
1594 Lisp_Object next;
|
665
|
1595 Elemcount size;
|
428
|
1596 unsigned long bits[1];
|
|
1597 };
|
|
1598 typedef struct Lisp_Bit_Vector Lisp_Bit_Vector;
|
|
1599
|
|
1600 DECLARE_LRECORD (bit_vector, Lisp_Bit_Vector);
|
|
1601 #define XBIT_VECTOR(x) XRECORD (x, bit_vector, Lisp_Bit_Vector)
|
|
1602 #define XSETBIT_VECTOR(x, p) XSETRECORD (x, p, bit_vector)
|
617
|
1603 #define wrap_bit_vector(p) wrap_record (p, bit_vector)
|
428
|
1604 #define BIT_VECTORP(x) RECORDP (x, bit_vector)
|
|
1605 #define CHECK_BIT_VECTOR(x) CHECK_RECORD (x, bit_vector)
|
|
1606 #define CONCHECK_BIT_VECTOR(x) CONCHECK_RECORD (x, bit_vector)
|
|
1607
|
|
1608 #define BITP(x) (INTP (x) && (XINT (x) == 0 || XINT (x) == 1))
|
|
1609
|
|
1610 #define CHECK_BIT(x) do { \
|
|
1611 if (!BITP (x)) \
|
|
1612 dead_wrong_type_argument (Qbitp, x);\
|
|
1613 } while (0)
|
|
1614
|
|
1615 #define CONCHECK_BIT(x) do { \
|
|
1616 if (!BITP (x)) \
|
|
1617 x = wrong_type_argument (Qbitp, x); \
|
|
1618 } while (0)
|
|
1619
|
|
1620 #define bit_vector_length(v) ((v)->size)
|
|
1621 #define bit_vector_next(v) ((v)->next)
|
|
1622
|
665
|
1623 INLINE_HEADER int bit_vector_bit (Lisp_Bit_Vector *v, Elemcount n);
|
442
|
1624 INLINE_HEADER int
|
665
|
1625 bit_vector_bit (Lisp_Bit_Vector *v, Elemcount n)
|
428
|
1626 {
|
|
1627 return ((v->bits[n >> LONGBITS_LOG2] >> (n & (LONGBITS_POWER_OF_2 - 1)))
|
|
1628 & 1);
|
|
1629 }
|
|
1630
|
665
|
1631 INLINE_HEADER void set_bit_vector_bit (Lisp_Bit_Vector *v, Elemcount n, int value);
|
442
|
1632 INLINE_HEADER void
|
665
|
1633 set_bit_vector_bit (Lisp_Bit_Vector *v, Elemcount n, int value)
|
428
|
1634 {
|
|
1635 if (value)
|
|
1636 v->bits[n >> LONGBITS_LOG2] |= (1UL << (n & (LONGBITS_POWER_OF_2 - 1)));
|
|
1637 else
|
|
1638 v->bits[n >> LONGBITS_LOG2] &= ~(1UL << (n & (LONGBITS_POWER_OF_2 - 1)));
|
|
1639 }
|
|
1640
|
|
1641 /* Number of longs required to hold LEN bits */
|
|
1642 #define BIT_VECTOR_LONG_STORAGE(len) \
|
|
1643 (((len) + LONGBITS_POWER_OF_2 - 1) >> LONGBITS_LOG2)
|
|
1644
|
442
|
1645 /*------------------------------ symbol --------------------------------*/
|
428
|
1646
|
440
|
1647 typedef struct Lisp_Symbol Lisp_Symbol;
|
428
|
1648 struct Lisp_Symbol
|
|
1649 {
|
|
1650 struct lrecord_header lheader;
|
|
1651 /* next symbol in this obarray bucket */
|
440
|
1652 Lisp_Symbol *next;
|
|
1653 Lisp_String *name;
|
428
|
1654 Lisp_Object value;
|
|
1655 Lisp_Object function;
|
|
1656 Lisp_Object plist;
|
|
1657 };
|
|
1658
|
|
1659 #define SYMBOL_IS_KEYWORD(sym) \
|
|
1660 ((string_byte (symbol_name (XSYMBOL (sym)), 0) == ':') \
|
|
1661 && EQ (sym, oblookup (Vobarray, \
|
|
1662 string_data (symbol_name (XSYMBOL (sym))), \
|
|
1663 string_length (symbol_name (XSYMBOL (sym))))))
|
|
1664 #define KEYWORDP(obj) (SYMBOLP (obj) && SYMBOL_IS_KEYWORD (obj))
|
|
1665
|
|
1666 DECLARE_LRECORD (symbol, Lisp_Symbol);
|
|
1667 #define XSYMBOL(x) XRECORD (x, symbol, Lisp_Symbol)
|
|
1668 #define XSETSYMBOL(x, p) XSETRECORD (x, p, symbol)
|
617
|
1669 #define wrap_symbol(p) wrap_record (p, symbol)
|
428
|
1670 #define SYMBOLP(x) RECORDP (x, symbol)
|
|
1671 #define CHECK_SYMBOL(x) CHECK_RECORD (x, symbol)
|
|
1672 #define CONCHECK_SYMBOL(x) CONCHECK_RECORD (x, symbol)
|
|
1673
|
|
1674 #define symbol_next(s) ((s)->next)
|
|
1675 #define symbol_name(s) ((s)->name)
|
|
1676 #define symbol_value(s) ((s)->value)
|
|
1677 #define symbol_function(s) ((s)->function)
|
|
1678 #define symbol_plist(s) ((s)->plist)
|
|
1679
|
442
|
1680 /*------------------------------- subr ---------------------------------*/
|
428
|
1681
|
|
1682 typedef Lisp_Object (*lisp_fn_t) (void);
|
|
1683
|
|
1684 struct Lisp_Subr
|
|
1685 {
|
|
1686 struct lrecord_header lheader;
|
442
|
1687 short min_args;
|
|
1688 short max_args;
|
|
1689 const char *prompt;
|
|
1690 const char *doc;
|
|
1691 const char *name;
|
428
|
1692 lisp_fn_t subr_fn;
|
|
1693 };
|
|
1694 typedef struct Lisp_Subr Lisp_Subr;
|
|
1695
|
|
1696 DECLARE_LRECORD (subr, Lisp_Subr);
|
|
1697 #define XSUBR(x) XRECORD (x, subr, Lisp_Subr)
|
|
1698 #define XSETSUBR(x, p) XSETRECORD (x, p, subr)
|
617
|
1699 #define wrap_subr(p) wrap_record (p, subr)
|
428
|
1700 #define SUBRP(x) RECORDP (x, subr)
|
|
1701 #define CHECK_SUBR(x) CHECK_RECORD (x, subr)
|
|
1702 #define CONCHECK_SUBR(x) CONCHECK_RECORD (x, subr)
|
|
1703
|
436
|
1704 #define subr_function(subr) ((subr)->subr_fn)
|
|
1705 #define SUBR_FUNCTION(subr,max_args) \
|
|
1706 ((Lisp_Object (*) (EXFUN_##max_args)) (subr)->subr_fn)
|
|
1707 #define subr_name(subr) ((subr)->name)
|
428
|
1708
|
442
|
1709 /*------------------------------ marker --------------------------------*/
|
|
1710
|
428
|
1711
|
440
|
1712 typedef struct Lisp_Marker Lisp_Marker;
|
428
|
1713 struct Lisp_Marker
|
|
1714 {
|
|
1715 struct lrecord_header lheader;
|
440
|
1716 Lisp_Marker *next;
|
|
1717 Lisp_Marker *prev;
|
428
|
1718 struct buffer *buffer;
|
665
|
1719 Membpos membpos;
|
428
|
1720 char insertion_type;
|
|
1721 };
|
|
1722
|
|
1723 DECLARE_LRECORD (marker, Lisp_Marker);
|
|
1724 #define XMARKER(x) XRECORD (x, marker, Lisp_Marker)
|
|
1725 #define XSETMARKER(x, p) XSETRECORD (x, p, marker)
|
617
|
1726 #define wrap_marker(p) wrap_record (p, marker)
|
428
|
1727 #define MARKERP(x) RECORDP (x, marker)
|
|
1728 #define CHECK_MARKER(x) CHECK_RECORD (x, marker)
|
|
1729 #define CONCHECK_MARKER(x) CONCHECK_RECORD (x, marker)
|
|
1730
|
|
1731 /* The second check was looking for GCed markers still in use */
|
|
1732 /* if (INTP (XMARKER (x)->lheader.next.v)) abort (); */
|
|
1733
|
|
1734 #define marker_next(m) ((m)->next)
|
|
1735 #define marker_prev(m) ((m)->prev)
|
|
1736
|
442
|
1737 /*------------------------------- char ---------------------------------*/
|
428
|
1738
|
|
1739 #define CHARP(x) (XTYPE (x) == Lisp_Type_Char)
|
|
1740
|
|
1741 #ifdef ERROR_CHECK_TYPECHECK
|
|
1742
|
788
|
1743 INLINE_HEADER Emchar XCHAR_1 (Lisp_Object obj, const char *file, int line);
|
442
|
1744 INLINE_HEADER Emchar
|
788
|
1745 XCHAR_1 (Lisp_Object obj, const char *file, int line)
|
428
|
1746 {
|
788
|
1747 assert_at_line (CHARP (obj), file, line);
|
428
|
1748 return XCHARVAL (obj);
|
|
1749 }
|
|
1750
|
788
|
1751 #define XCHAR(x) XCHAR_1 (x, __FILE__, __LINE__)
|
|
1752
|
|
1753 #else /* no error checking */
|
|
1754
|
|
1755 #define XCHAR(x) ((Emchar) XCHARVAL (x))
|
|
1756
|
|
1757 #endif /* no error checking */
|
428
|
1758
|
|
1759 #define CHECK_CHAR(x) CHECK_NONRECORD (x, Lisp_Type_Char, Qcharacterp)
|
|
1760 #define CONCHECK_CHAR(x) CONCHECK_NONRECORD (x, Lisp_Type_Char, Qcharacterp)
|
|
1761
|
|
1762
|
442
|
1763 /*------------------------------ float ---------------------------------*/
|
428
|
1764
|
|
1765 #ifdef LISP_FLOAT_TYPE
|
|
1766
|
|
1767 /* Note: the 'unused_next_' field exists only to ensure that the
|
|
1768 `next' pointer fits within the structure, for the purposes of the
|
|
1769 free list. This makes a difference in the unlikely case of
|
|
1770 sizeof(double) being smaller than sizeof(void *). */
|
|
1771
|
|
1772 struct Lisp_Float
|
|
1773 {
|
|
1774 struct lrecord_header lheader;
|
|
1775 union { double d; struct Lisp_Float *unused_next_; } data;
|
|
1776 };
|
|
1777 typedef struct Lisp_Float Lisp_Float;
|
|
1778
|
|
1779 DECLARE_LRECORD (float, Lisp_Float);
|
|
1780 #define XFLOAT(x) XRECORD (x, float, Lisp_Float)
|
|
1781 #define XSETFLOAT(x, p) XSETRECORD (x, p, float)
|
617
|
1782 #define wrap_float(p) wrap_record (p, float)
|
428
|
1783 #define FLOATP(x) RECORDP (x, float)
|
|
1784 #define CHECK_FLOAT(x) CHECK_RECORD (x, float)
|
|
1785 #define CONCHECK_FLOAT(x) CONCHECK_RECORD (x, float)
|
|
1786
|
|
1787 #define float_data(f) ((f)->data.d)
|
|
1788 #define XFLOAT_DATA(x) float_data (XFLOAT (x))
|
|
1789
|
|
1790 #define XFLOATINT(n) extract_float (n)
|
|
1791
|
|
1792 #define CHECK_INT_OR_FLOAT(x) do { \
|
|
1793 if (!INT_OR_FLOATP (x)) \
|
|
1794 dead_wrong_type_argument (Qnumberp, x); \
|
|
1795 } while (0)
|
|
1796
|
|
1797 #define CONCHECK_INT_OR_FLOAT(x) do { \
|
|
1798 if (!INT_OR_FLOATP (x)) \
|
|
1799 x = wrong_type_argument (Qnumberp, x); \
|
|
1800 } while (0)
|
|
1801
|
|
1802 # define INT_OR_FLOATP(x) (INTP (x) || FLOATP (x))
|
|
1803
|
|
1804 #else /* not LISP_FLOAT_TYPE */
|
|
1805
|
|
1806 #define XFLOAT(x) --- error! No float support. ---
|
|
1807 #define XSETFLOAT(x, p) --- error! No float support. ---
|
|
1808 #define FLOATP(x) 0
|
|
1809 #define CHECK_FLOAT(x) --- error! No float support. ---
|
|
1810 #define CONCHECK_FLOAT(x) --- error! No float support. ---
|
|
1811
|
|
1812 #define XFLOATINT(n) XINT(n)
|
|
1813 #define CHECK_INT_OR_FLOAT CHECK_INT
|
|
1814 #define CONCHECK_INT_OR_FLOAT CONCHECK_INT
|
|
1815 #define INT_OR_FLOATP(x) INTP (x)
|
|
1816
|
|
1817 #endif /* not LISP_FLOAT_TYPE */
|
|
1818
|
442
|
1819 /*-------------------------------- int ---------------------------------*/
|
428
|
1820
|
|
1821 #define ZEROP(x) EQ (x, Qzero)
|
|
1822
|
|
1823 #ifdef ERROR_CHECK_TYPECHECK
|
|
1824
|
788
|
1825 #define XCHAR_OR_INT(x) XCHAR_OR_INT_1 (x, __FILE__, __LINE__)
|
|
1826 #define XINT(x) XINT_1 (x, __FILE__, __LINE__)
|
|
1827
|
|
1828 INLINE_HEADER EMACS_INT XINT_1 (Lisp_Object obj, const char *file, int line);
|
442
|
1829 INLINE_HEADER EMACS_INT
|
788
|
1830 XINT_1 (Lisp_Object obj, const char *file, int line)
|
428
|
1831 {
|
788
|
1832 assert_at_line (INTP (obj), file, line);
|
428
|
1833 return XREALINT (obj);
|
|
1834 }
|
|
1835
|
788
|
1836 INLINE_HEADER EMACS_INT XCHAR_OR_INT_1 (Lisp_Object obj, const char *file,
|
|
1837 int line);
|
442
|
1838 INLINE_HEADER EMACS_INT
|
788
|
1839 XCHAR_OR_INT_1 (Lisp_Object obj, const char *file, int line)
|
428
|
1840 {
|
788
|
1841 assert_at_line (INTP (obj) || CHARP (obj), file, line);
|
428
|
1842 return CHARP (obj) ? XCHAR (obj) : XINT (obj);
|
|
1843 }
|
|
1844
|
|
1845 #else /* no error checking */
|
|
1846
|
|
1847 #define XINT(obj) XREALINT (obj)
|
|
1848 #define XCHAR_OR_INT(obj) (CHARP (obj) ? XCHAR (obj) : XINT (obj))
|
|
1849
|
|
1850 #endif /* no error checking */
|
|
1851
|
|
1852 #define CHECK_INT(x) do { \
|
|
1853 if (!INTP (x)) \
|
|
1854 dead_wrong_type_argument (Qintegerp, x); \
|
|
1855 } while (0)
|
|
1856
|
|
1857 #define CONCHECK_INT(x) do { \
|
|
1858 if (!INTP (x)) \
|
|
1859 x = wrong_type_argument (Qintegerp, x); \
|
|
1860 } while (0)
|
|
1861
|
|
1862 #define NATNUMP(x) (INTP (x) && XINT (x) >= 0)
|
|
1863
|
|
1864 #define CHECK_NATNUM(x) do { \
|
|
1865 if (!NATNUMP (x)) \
|
|
1866 dead_wrong_type_argument (Qnatnump, x); \
|
|
1867 } while (0)
|
|
1868
|
|
1869 #define CONCHECK_NATNUM(x) do { \
|
|
1870 if (!NATNUMP (x)) \
|
|
1871 x = wrong_type_argument (Qnatnump, x); \
|
|
1872 } while (0)
|
|
1873
|
|
1874 /* next three always continuable because they coerce their arguments. */
|
|
1875 #define CHECK_INT_COERCE_CHAR(x) do { \
|
|
1876 if (INTP (x)) \
|
|
1877 ; \
|
|
1878 else if (CHARP (x)) \
|
|
1879 x = make_int (XCHAR (x)); \
|
|
1880 else \
|
|
1881 x = wrong_type_argument (Qinteger_or_char_p, x); \
|
|
1882 } while (0)
|
|
1883
|
|
1884 #define CHECK_INT_COERCE_MARKER(x) do { \
|
|
1885 if (INTP (x)) \
|
|
1886 ; \
|
|
1887 else if (MARKERP (x)) \
|
|
1888 x = make_int (marker_position (x)); \
|
|
1889 else \
|
|
1890 x = wrong_type_argument (Qinteger_or_marker_p, x); \
|
|
1891 } while (0)
|
|
1892
|
|
1893 #define CHECK_INT_COERCE_CHAR_OR_MARKER(x) do { \
|
|
1894 if (INTP (x)) \
|
|
1895 ; \
|
|
1896 else if (CHARP (x)) \
|
|
1897 x = make_int (XCHAR (x)); \
|
|
1898 else if (MARKERP (x)) \
|
|
1899 x = make_int (marker_position (x)); \
|
|
1900 else \
|
|
1901 x = wrong_type_argument (Qinteger_char_or_marker_p, x); \
|
|
1902 } while (0)
|
|
1903
|
|
1904
|
442
|
1905 /*--------------------------- readonly objects -------------------------*/
|
440
|
1906
|
428
|
1907 #define CHECK_C_WRITEABLE(obj) \
|
|
1908 do { if (c_readonly (obj)) c_write_error (obj); } while (0)
|
|
1909
|
|
1910 #define CHECK_LISP_WRITEABLE(obj) \
|
|
1911 do { if (lisp_readonly (obj)) lisp_write_error (obj); } while (0)
|
|
1912
|
|
1913 #define C_READONLY(obj) (C_READONLY_RECORD_HEADER_P(XRECORD_LHEADER (obj)))
|
|
1914 #define LISP_READONLY(obj) (LISP_READONLY_RECORD_HEADER_P(XRECORD_LHEADER (obj)))
|
|
1915
|
442
|
1916 /*----------------------------- structrures ----------------------------*/
|
428
|
1917
|
|
1918 typedef struct structure_keyword_entry structure_keyword_entry;
|
|
1919 struct structure_keyword_entry
|
|
1920 {
|
|
1921 Lisp_Object keyword;
|
|
1922 int (*validate) (Lisp_Object keyword, Lisp_Object value,
|
578
|
1923 Error_Behavior errb);
|
428
|
1924 };
|
|
1925
|
|
1926 typedef struct
|
|
1927 {
|
|
1928 Dynarr_declare (structure_keyword_entry);
|
|
1929 } structure_keyword_entry_dynarr;
|
|
1930
|
|
1931 typedef struct structure_type structure_type;
|
|
1932 struct structure_type
|
|
1933 {
|
|
1934 Lisp_Object type;
|
|
1935 structure_keyword_entry_dynarr *keywords;
|
578
|
1936 int (*validate) (Lisp_Object data, Error_Behavior errb);
|
428
|
1937 Lisp_Object (*instantiate) (Lisp_Object data);
|
|
1938 };
|
|
1939
|
|
1940 typedef struct
|
|
1941 {
|
|
1942 Dynarr_declare (structure_type);
|
|
1943 } structure_type_dynarr;
|
|
1944
|
|
1945 struct structure_type *define_structure_type (Lisp_Object type,
|
|
1946 int (*validate)
|
|
1947 (Lisp_Object data,
|
578
|
1948 Error_Behavior errb),
|
428
|
1949 Lisp_Object (*instantiate)
|
|
1950 (Lisp_Object data));
|
|
1951 void define_structure_type_keyword (struct structure_type *st,
|
|
1952 Lisp_Object keyword,
|
|
1953 int (*validate) (Lisp_Object keyword,
|
|
1954 Lisp_Object value,
|
578
|
1955 Error_Behavior errb));
|
428
|
1956
|
442
|
1957 /*---------------------------- weak lists ------------------------------*/
|
428
|
1958
|
|
1959 enum weak_list_type
|
|
1960 {
|
|
1961 /* element disappears if it's unmarked. */
|
|
1962 WEAK_LIST_SIMPLE,
|
|
1963 /* element disappears if it's a cons and either its car or
|
|
1964 cdr is unmarked. */
|
|
1965 WEAK_LIST_ASSOC,
|
|
1966 /* element disappears if it's a cons and its car is unmarked. */
|
|
1967 WEAK_LIST_KEY_ASSOC,
|
|
1968 /* element disappears if it's a cons and its cdr is unmarked. */
|
442
|
1969 WEAK_LIST_VALUE_ASSOC,
|
|
1970 /* element disappears if it's a cons and neither its car nor
|
|
1971 its cdr is marked. */
|
|
1972 WEAK_LIST_FULL_ASSOC
|
428
|
1973 };
|
|
1974
|
|
1975 struct weak_list
|
|
1976 {
|
|
1977 struct lcrecord_header header;
|
|
1978 Lisp_Object list; /* don't mark through this! */
|
|
1979 enum weak_list_type type;
|
|
1980 Lisp_Object next_weak; /* don't mark through this! */
|
|
1981 };
|
|
1982
|
|
1983 DECLARE_LRECORD (weak_list, struct weak_list);
|
|
1984 #define XWEAK_LIST(x) XRECORD (x, weak_list, struct weak_list)
|
|
1985 #define XSETWEAK_LIST(x, p) XSETRECORD (x, p, weak_list)
|
617
|
1986 #define wrap_weak_list(p) wrap_record (p, weak_list)
|
428
|
1987 #define WEAK_LISTP(x) RECORDP (x, weak_list)
|
|
1988 #define CHECK_WEAK_LIST(x) CHECK_RECORD (x, weak_list)
|
|
1989 #define CONCHECK_WEAK_LIST(x) CONCHECK_RECORD (x, weak_list)
|
|
1990
|
|
1991 #define weak_list_list(w) ((w)->list)
|
|
1992 #define XWEAK_LIST_LIST(w) (XWEAK_LIST (w)->list)
|
|
1993
|
|
1994 Lisp_Object make_weak_list (enum weak_list_type type);
|
|
1995 /* The following two are only called by the garbage collector */
|
|
1996 int finish_marking_weak_lists (void);
|
|
1997 void prune_weak_lists (void);
|
|
1998
|
442
|
1999 /*-------------------------- lcrecord-list -----------------------------*/
|
428
|
2000
|
|
2001 struct lcrecord_list
|
|
2002 {
|
|
2003 struct lcrecord_header header;
|
|
2004 Lisp_Object free;
|
665
|
2005 Elemcount size;
|
442
|
2006 const struct lrecord_implementation *implementation;
|
428
|
2007 };
|
|
2008
|
|
2009 DECLARE_LRECORD (lcrecord_list, struct lcrecord_list);
|
|
2010 #define XLCRECORD_LIST(x) XRECORD (x, lcrecord_list, struct lcrecord_list)
|
|
2011 #define XSETLCRECORD_LIST(x, p) XSETRECORD (x, p, lcrecord_list)
|
617
|
2012 #define wrap_lcrecord_list(p) wrap_record (p, lcrecord_list)
|
428
|
2013 #define LCRECORD_LISTP(x) RECORDP (x, lcrecord_list)
|
|
2014 /* #define CHECK_LCRECORD_LIST(x) CHECK_RECORD (x, lcrecord_list)
|
|
2015 Lcrecord lists should never escape to the Lisp level, so
|
|
2016 functions should not be doing this. */
|
|
2017
|
665
|
2018 Lisp_Object make_lcrecord_list (Elemcount size,
|
442
|
2019 const struct lrecord_implementation
|
428
|
2020 *implementation);
|
|
2021 Lisp_Object allocate_managed_lcrecord (Lisp_Object lcrecord_list);
|
|
2022 void free_managed_lcrecord (Lisp_Object lcrecord_list, Lisp_Object lcrecord);
|
|
2023
|
|
2024
|
|
2025 /************************************************************************/
|
771
|
2026 /* Definitions related to the format of text and of characters */
|
|
2027 /************************************************************************/
|
|
2028
|
|
2029 /* Note:
|
|
2030
|
|
2031 "internally formatted text" and the term "internal format" in
|
|
2032 general are likely to refer to the format of text in buffers and
|
|
2033 strings; "externally formatted text" and the term "external format"
|
|
2034 refer to any text format used in the O.S. or elsewhere outside of
|
|
2035 XEmacs. The format of text and of a character are related and
|
|
2036 there must be a one-to-one relationship (hopefully through a
|
|
2037 relatively simple algorithmic means of conversion) between a string
|
|
2038 of text and an equivalent array of characters, but the conversion
|
|
2039 between the two is NOT necessarily trivial.
|
|
2040
|
|
2041 In a non-Mule XEmacs, allowed characters are numbered 0 through
|
|
2042 255, where no fixed meaning is assigned to them, but (when
|
|
2043 representing text, rather than bytes in a binary file) in practice
|
|
2044 the lower half represents ASCII and the upper half some other 8-bit
|
|
2045 character set (chosen by setting the font, case tables, syntax
|
|
2046 tables, etc. appropriately for the character set through ad-hoc
|
|
2047 means such as the `iso-8859-1' file and the
|
|
2048 `standard-display-european' function).
|
|
2049
|
|
2050 #### Finish this.
|
|
2051
|
|
2052 */
|
|
2053 #include "text.h"
|
|
2054
|
|
2055
|
|
2056 /************************************************************************/
|
428
|
2057 /* Definitions of primitive Lisp functions and variables */
|
|
2058 /************************************************************************/
|
|
2059
|
|
2060
|
|
2061 /* DEFUN - Define a built-in Lisp-visible C function or `subr'.
|
|
2062 `lname' should be the name to give the function in Lisp,
|
|
2063 as a null-terminated C string.
|
|
2064 `Fname' should be the C equivalent of `lname', using only characters
|
|
2065 valid in a C identifier, with an "F" prepended.
|
|
2066 The name of the C constant structure that records information
|
|
2067 on this function for internal use is "S" concatenated with Fname.
|
|
2068 `min_args' should be a number, the minimum number of arguments allowed.
|
|
2069 `max_args' should be a number, the maximum number of arguments allowed,
|
|
2070 or else MANY or UNEVALLED.
|
|
2071 MANY means pass a vector of evaluated arguments,
|
|
2072 in the form of an integer number-of-arguments
|
|
2073 followed by the address of a vector of Lisp_Objects
|
|
2074 which contains the argument values.
|
|
2075 UNEVALLED means pass the list of unevaluated arguments.
|
|
2076 `prompt' says how to read arguments for an interactive call.
|
|
2077 See the doc string for `interactive'.
|
|
2078 A null string means call interactively with no arguments.
|
|
2079 `arglist' are the comma-separated arguments (always Lisp_Objects) for
|
|
2080 the function.
|
|
2081 The docstring for the function is placed as a "C" comment between
|
|
2082 the prompt and the `args' argument. make-docfile reads the
|
|
2083 comment and creates the DOC file from it.
|
|
2084 */
|
|
2085
|
|
2086 #define EXFUN_0 void
|
|
2087 #define EXFUN_1 Lisp_Object
|
|
2088 #define EXFUN_2 Lisp_Object,Lisp_Object
|
|
2089 #define EXFUN_3 Lisp_Object,Lisp_Object,Lisp_Object
|
|
2090 #define EXFUN_4 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object
|
|
2091 #define EXFUN_5 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object
|
|
2092 #define EXFUN_6 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object, \
|
|
2093 Lisp_Object
|
|
2094 #define EXFUN_7 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object, \
|
|
2095 Lisp_Object,Lisp_Object
|
|
2096 #define EXFUN_8 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object, \
|
|
2097 Lisp_Object,Lisp_Object,Lisp_Object
|
|
2098 #define EXFUN_MANY int, Lisp_Object*
|
|
2099 #define EXFUN_UNEVALLED Lisp_Object
|
|
2100 #define EXFUN(sym, max_args) Lisp_Object sym (EXFUN_##max_args)
|
|
2101
|
|
2102 #define SUBR_MAX_ARGS 8
|
|
2103 #define MANY -2
|
|
2104 #define UNEVALLED -1
|
|
2105
|
|
2106 /* Can't be const, because then subr->doc is read-only and
|
|
2107 Snarf_documentation chokes */
|
|
2108
|
|
2109 #define DEFUN(lname, Fname, min_args, max_args, prompt, arglist) \
|
|
2110 Lisp_Object Fname (EXFUN_##max_args); \
|
442
|
2111 static struct Lisp_Subr S##Fname = \
|
|
2112 { \
|
|
2113 { /* struct lrecord_header */ \
|
|
2114 lrecord_type_subr, /* lrecord_type_index */ \
|
|
2115 1, /* mark bit */ \
|
|
2116 1, /* c_readonly bit */ \
|
|
2117 1 /* lisp_readonly bit */ \
|
|
2118 }, \
|
|
2119 min_args, \
|
|
2120 max_args, \
|
|
2121 prompt, \
|
|
2122 0, /* doc string */ \
|
|
2123 lname, \
|
|
2124 (lisp_fn_t) Fname \
|
|
2125 }; \
|
428
|
2126 Lisp_Object Fname (DEFUN_##max_args arglist)
|
|
2127
|
|
2128 /* Heavy ANSI C preprocessor hackery to get DEFUN to declare a
|
|
2129 prototype that matches max_args, and add the obligatory
|
|
2130 `Lisp_Object' type declaration to the formal C arguments. */
|
|
2131
|
|
2132 #define DEFUN_MANY(named_int, named_Lisp_Object) named_int, named_Lisp_Object
|
|
2133 #define DEFUN_UNEVALLED(args) Lisp_Object args
|
|
2134 #define DEFUN_0() void
|
|
2135 #define DEFUN_1(a) Lisp_Object a
|
|
2136 #define DEFUN_2(a,b) DEFUN_1(a), Lisp_Object b
|
|
2137 #define DEFUN_3(a,b,c) DEFUN_2(a,b), Lisp_Object c
|
|
2138 #define DEFUN_4(a,b,c,d) DEFUN_3(a,b,c), Lisp_Object d
|
|
2139 #define DEFUN_5(a,b,c,d,e) DEFUN_4(a,b,c,d), Lisp_Object e
|
|
2140 #define DEFUN_6(a,b,c,d,e,f) DEFUN_5(a,b,c,d,e), Lisp_Object f
|
|
2141 #define DEFUN_7(a,b,c,d,e,f,g) DEFUN_6(a,b,c,d,e,f), Lisp_Object g
|
|
2142 #define DEFUN_8(a,b,c,d,e,f,g,h) DEFUN_7(a,b,c,d,e,f,g),Lisp_Object h
|
|
2143
|
|
2144 /* WARNING: If you add defines here for higher values of max_args,
|
|
2145 make sure to also fix the clauses in PRIMITIVE_FUNCALL(),
|
|
2146 and change the define of SUBR_MAX_ARGS above. */
|
|
2147
|
|
2148 #include "symeval.h"
|
|
2149
|
|
2150 /* `specpdl' is the special binding/unwind-protect stack.
|
|
2151
|
|
2152 Knuth says (see the Jargon File):
|
|
2153 At MIT, `pdl' [abbreviation for `Push Down List'] used to
|
|
2154 be a more common synonym for `stack'.
|
|
2155 Everywhere else `stack' seems to be the preferred term.
|
|
2156
|
|
2157 specpdl_depth is the current depth of `specpdl'.
|
771
|
2158 Save this for use later as arg to `unbind_to_1'. */
|
428
|
2159 extern int specpdl_depth_counter;
|
|
2160 #define specpdl_depth() specpdl_depth_counter
|
|
2161
|
442
|
2162
|
|
2163 #define CHECK_FUNCTION(fun) do { \
|
|
2164 while (NILP (Ffunctionp (fun))) \
|
|
2165 signal_invalid_function_error (fun); \
|
|
2166 } while (0)
|
|
2167
|
428
|
2168
|
|
2169 /************************************************************************/
|
|
2170 /* Checking for QUIT */
|
|
2171 /************************************************************************/
|
|
2172
|
|
2173 /* Asynchronous events set something_happened, and then are processed
|
|
2174 within the QUIT macro. At this point, we are guaranteed to not be in
|
|
2175 any sensitive code. */
|
|
2176
|
|
2177 extern volatile int something_happened;
|
771
|
2178 extern int dont_check_for_quit;
|
428
|
2179 int check_what_happened (void);
|
|
2180
|
|
2181 extern volatile int quit_check_signal_happened;
|
|
2182 extern volatile int quit_check_signal_tick_count;
|
|
2183 int check_quit (void);
|
|
2184
|
|
2185 void signal_quit (void);
|
|
2186
|
771
|
2187 #define QUIT_FLAG_SAYS_SHOULD_QUIT \
|
|
2188 (!NILP (Vquit_flag) && \
|
|
2189 (NILP (Vinhibit_quit) \
|
|
2190 || (EQ (Vquit_flag, Qcritical) && !dont_check_for_quit)))
|
|
2191
|
428
|
2192 /* Nonzero if ought to quit now. */
|
|
2193 #define QUITP \
|
|
2194 ((quit_check_signal_happened ? check_quit () : 0), \
|
771
|
2195 QUIT_FLAG_SAYS_SHOULD_QUIT)
|
428
|
2196
|
|
2197 /* QUIT used to call QUITP, but there are some places where QUITP
|
|
2198 is called directly, and check_what_happened() should only be called
|
|
2199 when Emacs is actually ready to quit because it could do things
|
|
2200 like switch threads. */
|
|
2201 #define INTERNAL_QUITP \
|
|
2202 ((something_happened ? check_what_happened () : 0), \
|
771
|
2203 QUIT_FLAG_SAYS_SHOULD_QUIT)
|
428
|
2204
|
|
2205 #define INTERNAL_REALLY_QUITP \
|
|
2206 (check_what_happened (), \
|
771
|
2207 QUIT_FLAG_SAYS_SHOULD_QUIT)
|
428
|
2208
|
|
2209 /* Check quit-flag and quit if it is non-nil. Also do any other things
|
|
2210 that might have gotten queued until it was safe. */
|
|
2211 #define QUIT do { if (INTERNAL_QUITP) signal_quit (); } while (0)
|
|
2212
|
|
2213 #define REALLY_QUIT do { if (INTERNAL_REALLY_QUITP) signal_quit (); } while (0)
|
|
2214
|
|
2215
|
|
2216 /************************************************************************/
|
|
2217 /* hashing */
|
|
2218 /************************************************************************/
|
|
2219
|
|
2220 /* #### for a 64-bit machine, we should substitute a prime just over 2^32 */
|
|
2221 #define GOOD_HASH 65599 /* prime number just over 2^16; Dragon book, p. 435 */
|
|
2222 #define HASH2(a,b) (GOOD_HASH * (a) + (b))
|
|
2223 #define HASH3(a,b,c) (GOOD_HASH * HASH2 (a,b) + (c))
|
|
2224 #define HASH4(a,b,c,d) (GOOD_HASH * HASH3 (a,b,c) + (d))
|
|
2225 #define HASH5(a,b,c,d,e) (GOOD_HASH * HASH4 (a,b,c,d) + (e))
|
|
2226 #define HASH6(a,b,c,d,e,f) (GOOD_HASH * HASH5 (a,b,c,d,e) + (f))
|
|
2227 #define HASH7(a,b,c,d,e,f,g) (GOOD_HASH * HASH6 (a,b,c,d,e,f) + (g))
|
|
2228 #define HASH8(a,b,c,d,e,f,g,h) (GOOD_HASH * HASH7 (a,b,c,d,e,f,g) + (h))
|
|
2229 #define HASH9(a,b,c,d,e,f,g,h,i) (GOOD_HASH * HASH8 (a,b,c,d,e,f,g,h) + (i))
|
|
2230
|
|
2231 #define LISP_HASH(obj) ((unsigned long) LISP_TO_VOID (obj))
|
442
|
2232 unsigned long string_hash (const char *xv);
|
665
|
2233 unsigned long memory_hash (const void *xv, Bytecount size);
|
428
|
2234 unsigned long internal_hash (Lisp_Object obj, int depth);
|
|
2235 unsigned long internal_array_hash (Lisp_Object *arr, int size, int depth);
|
|
2236
|
|
2237
|
|
2238 /************************************************************************/
|
|
2239 /* String translation */
|
|
2240 /************************************************************************/
|
|
2241
|
771
|
2242 /* When support for message translation exists, GETTEXT() translates a
|
|
2243 string from English into the language defined by
|
|
2244 `current-language-environment'. This is done by looking the string
|
|
2245 up in a large predefined table; if no translation is found, the
|
|
2246 original string is returned, and the failure is possibly logged so
|
|
2247 that the translation can later be entered into the table.
|
|
2248
|
|
2249 In addition to this, there is a mechanism to snarf message strings
|
|
2250 out of the source code so that they can be entered into the tables.
|
|
2251 This is what make-msgfile.lex does.
|
|
2252
|
|
2253 Handling `format' strings is more difficult: The format string
|
|
2254 should get translated, but not under all circumstances. When the
|
|
2255 format string is a Lisp string, what should happen is that
|
|
2256 Fformat() should format the untranslated args[0] and return that,
|
|
2257 and also call Fgettext() on args[0] and, if that is different,
|
|
2258 format it and store it in the `string-translatable' property of the
|
|
2259 returned string. See Fgettext().
|
|
2260
|
|
2261 CGETTEXT() is the same as GETTEXT() but works with char * strings
|
|
2262 instead of Intbyte * strings.
|
|
2263
|
|
2264 build_msg_string() is a shorthand for build_string (GETTEXT (x)).
|
|
2265 build_msg_intstring() is a shorthand for build_intstring (GETTEXT (x)).
|
|
2266 */
|
|
2267
|
|
2268 #define GETTEXT(x) (x)
|
|
2269 #define CGETTEXT(x) (x)
|
|
2270 #define LISP_GETTEXT(x) (x)
|
428
|
2271
|
|
2272 /* DEFER_GETTEXT is used to identify strings which are translated when
|
|
2273 they are referenced instead of when they are defined.
|
|
2274 These include Qerror_messages and initialized arrays of strings.
|
|
2275 */
|
|
2276 #define DEFER_GETTEXT(x) (x)
|
|
2277
|
|
2278
|
|
2279 /************************************************************************/
|
|
2280 /* Garbage collection / GC-protection */
|
|
2281 /************************************************************************/
|
|
2282
|
|
2283 /* number of bytes of structure consed since last GC */
|
|
2284
|
|
2285 extern EMACS_INT consing_since_gc;
|
|
2286
|
|
2287 /* threshold for doing another gc */
|
|
2288
|
458
|
2289 extern Fixnum gc_cons_threshold;
|
428
|
2290
|
|
2291 /* Structure for recording stack slots that need marking */
|
|
2292
|
|
2293 /* This is a chain of structures, each of which points at a Lisp_Object
|
|
2294 variable whose value should be marked in garbage collection.
|
|
2295 Normally every link of the chain is an automatic variable of a function,
|
|
2296 and its `val' points to some argument or local variable of the function.
|
|
2297 On exit to the function, the chain is set back to the value it had on
|
|
2298 entry. This way, no link remains in the chain when the stack frame
|
|
2299 containing the link disappears.
|
|
2300
|
|
2301 Every function that can call Feval must protect in this fashion all
|
|
2302 Lisp_Object variables whose contents will be used again. */
|
|
2303
|
|
2304 extern struct gcpro *gcprolist;
|
|
2305
|
|
2306 struct gcpro
|
|
2307 {
|
|
2308 struct gcpro *next;
|
771
|
2309 const Lisp_Object *var; /* Address of first protected variable */
|
428
|
2310 int nvars; /* Number of consecutive protected variables */
|
|
2311 };
|
|
2312
|
|
2313 /* Normally, you declare variables gcpro1, gcpro2, ... and use the
|
|
2314 GCPROn() macros. However, if you need to have nested gcpro's,
|
|
2315 declare ngcpro1, ngcpro2, ... and use NGCPROn(). If you need
|
|
2316 to nest another level, use nngcpro1, nngcpro2, ... and use
|
|
2317 NNGCPROn(). If you need to nest yet another level, create
|
|
2318 the appropriate macros. */
|
|
2319
|
|
2320 #ifdef DEBUG_GCPRO
|
|
2321
|
|
2322 void debug_gcpro1 (char *, int, struct gcpro *, Lisp_Object *);
|
|
2323 void debug_gcpro2 (char *, int, struct gcpro *, struct gcpro *,
|
|
2324 Lisp_Object *, Lisp_Object *);
|
|
2325 void debug_gcpro3 (char *, int, struct gcpro *, struct gcpro *, struct gcpro *,
|
|
2326 Lisp_Object *, Lisp_Object *, Lisp_Object *);
|
|
2327 void debug_gcpro4 (char *, int, struct gcpro *, struct gcpro *, struct gcpro *,
|
|
2328 struct gcpro *, Lisp_Object *, Lisp_Object *, Lisp_Object *,
|
|
2329 Lisp_Object *);
|
|
2330 void debug_gcpro5 (char *, int, struct gcpro *, struct gcpro *, struct gcpro *,
|
|
2331 struct gcpro *, struct gcpro *, Lisp_Object *, Lisp_Object *,
|
|
2332 Lisp_Object *, Lisp_Object *, Lisp_Object *);
|
|
2333 void debug_ungcpro(char *, int, struct gcpro *);
|
|
2334
|
|
2335 #define GCPRO1(v) \
|
|
2336 debug_gcpro1 (__FILE__, __LINE__,&gcpro1,&v)
|
|
2337 #define GCPRO2(v1,v2) \
|
|
2338 debug_gcpro2 (__FILE__, __LINE__,&gcpro1,&gcpro2,&v1,&v2)
|
|
2339 #define GCPRO3(v1,v2,v3) \
|
|
2340 debug_gcpro3 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&v1,&v2,&v3)
|
|
2341 #define GCPRO4(v1,v2,v3,v4) \
|
|
2342 debug_gcpro4 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&gcpro4,\
|
|
2343 &v1,&v2,&v3,&v4)
|
|
2344 #define GCPRO5(v1,v2,v3,v4,v5) \
|
|
2345 debug_gcpro5 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&gcpro4,&gcpro5,\
|
|
2346 &v1,&v2,&v3,&v4,&v5)
|
|
2347 #define UNGCPRO \
|
|
2348 debug_ungcpro(__FILE__, __LINE__,&gcpro1)
|
|
2349
|
|
2350 #define NGCPRO1(v) \
|
|
2351 debug_gcpro1 (__FILE__, __LINE__,&ngcpro1,&v)
|
|
2352 #define NGCPRO2(v1,v2) \
|
|
2353 debug_gcpro2 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&v1,&v2)
|
|
2354 #define NGCPRO3(v1,v2,v3) \
|
|
2355 debug_gcpro3 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&v1,&v2,&v3)
|
|
2356 #define NGCPRO4(v1,v2,v3,v4) \
|
|
2357 debug_gcpro4 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&ngcpro4,\
|
|
2358 &v1,&v2,&v3,&v4)
|
|
2359 #define NGCPRO5(v1,v2,v3,v4,v5) \
|
|
2360 debug_gcpro5 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&ngcpro4,\
|
|
2361 &ngcpro5,&v1,&v2,&v3,&v4,&v5)
|
|
2362 #define NUNGCPRO \
|
|
2363 debug_ungcpro(__FILE__, __LINE__,&ngcpro1)
|
|
2364
|
|
2365 #define NNGCPRO1(v) \
|
|
2366 debug_gcpro1 (__FILE__, __LINE__,&nngcpro1,&v)
|
|
2367 #define NNGCPRO2(v1,v2) \
|
|
2368 debug_gcpro2 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&v1,&v2)
|
|
2369 #define NNGCPRO3(v1,v2,v3) \
|
|
2370 debug_gcpro3 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&v1,&v2,&v3)
|
|
2371 #define NNGCPRO4(v1,v2,v3,v4) \
|
|
2372 debug_gcpro4 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&nngcpro4,\
|
|
2373 &v1,&v2,&v3,&v4)
|
|
2374 #define NNGCPRO5(v1,v2,v3,v4,v5) \
|
|
2375 debug_gcpro5 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&nngcpro4,\
|
|
2376 &nngcpro5,&v1,&v2,&v3,&v4,&v5)
|
|
2377 #define NNUNGCPRO \
|
|
2378 debug_ungcpro(__FILE__, __LINE__,&nngcpro1)
|
|
2379
|
|
2380 #else /* ! DEBUG_GCPRO */
|
|
2381
|
|
2382 #define GCPRO1(var1) ((void) ( \
|
|
2383 gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \
|
|
2384 gcprolist = &gcpro1 ))
|
|
2385
|
|
2386 #define GCPRO2(var1, var2) ((void) ( \
|
|
2387 gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \
|
|
2388 gcpro2.next = &gcpro1, gcpro2.var = &var2, gcpro2.nvars = 1, \
|
|
2389 gcprolist = &gcpro2 ))
|
|
2390
|
|
2391 #define GCPRO3(var1, var2, var3) ((void) ( \
|
|
2392 gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \
|
|
2393 gcpro2.next = &gcpro1, gcpro2.var = &var2, gcpro2.nvars = 1, \
|
|
2394 gcpro3.next = &gcpro2, gcpro3.var = &var3, gcpro3.nvars = 1, \
|
|
2395 gcprolist = &gcpro3 ))
|
|
2396
|
|
2397 #define GCPRO4(var1, var2, var3, var4) ((void) ( \
|
|
2398 gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \
|
|
2399 gcpro2.next = &gcpro1, gcpro2.var = &var2, gcpro2.nvars = 1, \
|
|
2400 gcpro3.next = &gcpro2, gcpro3.var = &var3, gcpro3.nvars = 1, \
|
|
2401 gcpro4.next = &gcpro3, gcpro4.var = &var4, gcpro4.nvars = 1, \
|
|
2402 gcprolist = &gcpro4 ))
|
|
2403
|
|
2404 #define GCPRO5(var1, var2, var3, var4, var5) ((void) ( \
|
|
2405 gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \
|
|
2406 gcpro2.next = &gcpro1, gcpro2.var = &var2, gcpro2.nvars = 1, \
|
|
2407 gcpro3.next = &gcpro2, gcpro3.var = &var3, gcpro3.nvars = 1, \
|
|
2408 gcpro4.next = &gcpro3, gcpro4.var = &var4, gcpro4.nvars = 1, \
|
|
2409 gcpro5.next = &gcpro4, gcpro5.var = &var5, gcpro5.nvars = 1, \
|
|
2410 gcprolist = &gcpro5 ))
|
|
2411
|
|
2412 #define UNGCPRO ((void) (gcprolist = gcpro1.next))
|
|
2413
|
|
2414 #define NGCPRO1(var1) ((void) ( \
|
|
2415 ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \
|
|
2416 gcprolist = &ngcpro1 ))
|
|
2417
|
|
2418 #define NGCPRO2(var1, var2) ((void) ( \
|
|
2419 ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \
|
|
2420 ngcpro2.next = &ngcpro1, ngcpro2.var = &var2, ngcpro2.nvars = 1, \
|
|
2421 gcprolist = &ngcpro2 ))
|
|
2422
|
|
2423 #define NGCPRO3(var1, var2, var3) ((void) ( \
|
|
2424 ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \
|
|
2425 ngcpro2.next = &ngcpro1, ngcpro2.var = &var2, ngcpro2.nvars = 1, \
|
|
2426 ngcpro3.next = &ngcpro2, ngcpro3.var = &var3, ngcpro3.nvars = 1, \
|
|
2427 gcprolist = &ngcpro3 ))
|
|
2428
|
|
2429 #define NGCPRO4(var1, var2, var3, var4) ((void) ( \
|
|
2430 ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \
|
|
2431 ngcpro2.next = &ngcpro1, ngcpro2.var = &var2, ngcpro2.nvars = 1, \
|
|
2432 ngcpro3.next = &ngcpro2, ngcpro3.var = &var3, ngcpro3.nvars = 1, \
|
|
2433 ngcpro4.next = &ngcpro3, ngcpro4.var = &var4, ngcpro4.nvars = 1, \
|
|
2434 gcprolist = &ngcpro4 ))
|
|
2435
|
|
2436 #define NGCPRO5(var1, var2, var3, var4, var5) ((void) ( \
|
|
2437 ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \
|
|
2438 ngcpro2.next = &ngcpro1, ngcpro2.var = &var2, ngcpro2.nvars = 1, \
|
|
2439 ngcpro3.next = &ngcpro2, ngcpro3.var = &var3, ngcpro3.nvars = 1, \
|
|
2440 ngcpro4.next = &ngcpro3, ngcpro4.var = &var4, ngcpro4.nvars = 1, \
|
|
2441 ngcpro5.next = &ngcpro4, ngcpro5.var = &var5, ngcpro5.nvars = 1, \
|
|
2442 gcprolist = &ngcpro5 ))
|
|
2443
|
|
2444 #define NUNGCPRO ((void) (gcprolist = ngcpro1.next))
|
|
2445
|
|
2446 #define NNGCPRO1(var1) ((void) ( \
|
|
2447 nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \
|
|
2448 gcprolist = &nngcpro1 ))
|
|
2449
|
|
2450 #define NNGCPRO2(var1, var2) ((void) ( \
|
|
2451 nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \
|
|
2452 nngcpro2.next = &nngcpro1, nngcpro2.var = &var2, nngcpro2.nvars = 1, \
|
|
2453 gcprolist = &nngcpro2 ))
|
|
2454
|
|
2455 #define NNGCPRO3(var1, var2, var3) ((void) ( \
|
|
2456 nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \
|
|
2457 nngcpro2.next = &nngcpro1, nngcpro2.var = &var2, nngcpro2.nvars = 1, \
|
|
2458 nngcpro3.next = &nngcpro2, nngcpro3.var = &var3, nngcpro3.nvars = 1, \
|
|
2459 gcprolist = &nngcpro3 ))
|
|
2460
|
|
2461 #define NNGCPRO4(var1, var2, var3, var4) ((void) ( \
|
|
2462 nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \
|
|
2463 nngcpro2.next = &nngcpro1, nngcpro2.var = &var2, nngcpro2.nvars = 1, \
|
|
2464 nngcpro3.next = &nngcpro2, nngcpro3.var = &var3, nngcpro3.nvars = 1, \
|
|
2465 nngcpro4.next = &nngcpro3, nngcpro4.var = &var4, nngcpro4.nvars = 1, \
|
|
2466 gcprolist = &nngcpro4 ))
|
|
2467
|
|
2468 #define NNGCPRO5(var1, var2, var3, var4, var5) ((void) ( \
|
|
2469 nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \
|
|
2470 nngcpro2.next = &nngcpro1, nngcpro2.var = &var2, nngcpro2.nvars = 1, \
|
|
2471 nngcpro3.next = &nngcpro2, nngcpro3.var = &var3, nngcpro3.nvars = 1, \
|
|
2472 nngcpro4.next = &nngcpro3, nngcpro4.var = &var4, nngcpro4.nvars = 1, \
|
|
2473 nngcpro5.next = &nngcpro4, nngcpro5.var = &var5, nngcpro5.nvars = 1, \
|
|
2474 gcprolist = &nngcpro5 ))
|
|
2475
|
|
2476 #define NNUNGCPRO ((void) (gcprolist = nngcpro1.next))
|
|
2477
|
|
2478 #endif /* ! DEBUG_GCPRO */
|
|
2479
|
|
2480 /* Evaluate expr, UNGCPRO, and then return the value of expr. */
|
|
2481 #define RETURN_UNGCPRO(expr) do \
|
|
2482 { \
|
|
2483 Lisp_Object ret_ungc_val = (expr); \
|
|
2484 UNGCPRO; \
|
|
2485 RETURN_SANS_WARNINGS ret_ungc_val; \
|
|
2486 } while (0)
|
|
2487
|
|
2488 /* Evaluate expr, NUNGCPRO, UNGCPRO, and then return the value of expr. */
|
|
2489 #define RETURN_NUNGCPRO(expr) do \
|
|
2490 { \
|
|
2491 Lisp_Object ret_ungc_val = (expr); \
|
|
2492 NUNGCPRO; \
|
|
2493 UNGCPRO; \
|
|
2494 RETURN_SANS_WARNINGS ret_ungc_val; \
|
|
2495 } while (0)
|
|
2496
|
|
2497 /* Evaluate expr, NNUNGCPRO, NUNGCPRO, UNGCPRO, and then return the
|
|
2498 value of expr. */
|
|
2499 #define RETURN_NNUNGCPRO(expr) do \
|
|
2500 { \
|
|
2501 Lisp_Object ret_ungc_val = (expr); \
|
|
2502 NNUNGCPRO; \
|
|
2503 NUNGCPRO; \
|
|
2504 UNGCPRO; \
|
|
2505 RETURN_SANS_WARNINGS ret_ungc_val; \
|
|
2506 } while (0)
|
|
2507
|
452
|
2508 extern Lisp_Object_ptr_dynarr *staticpros;
|
|
2509
|
771
|
2510 #ifdef DEBUG_XEMACS
|
|
2511
|
|
2512 /* Help debug crashes gc-marking a staticpro'ed object. */
|
|
2513
|
|
2514 void staticpro_1 (Lisp_Object *, char *);
|
|
2515 void staticpro_nodump_1 (Lisp_Object *, char *);
|
|
2516 #define staticpro(ptr) staticpro_1 (ptr, #ptr)
|
|
2517 #define staticpro_nodump(ptr) staticpro_nodump_1 (ptr, #ptr)
|
|
2518
|
|
2519 #else
|
611
|
2520
|
428
|
2521 /* Call staticpro (&var) to protect static variable `var'. */
|
|
2522 void staticpro (Lisp_Object *);
|
|
2523
|
|
2524 /* Call staticpro_nodump (&var) to protect static variable `var'. */
|
|
2525 /* var will not be saved at dump time */
|
|
2526 void staticpro_nodump (Lisp_Object *);
|
|
2527
|
771
|
2528 #endif
|
|
2529
|
|
2530 void register_post_gc_action (void (*fun) (void *), void *arg);
|
|
2531 int begin_gc_forbidden (void);
|
|
2532 void end_gc_forbidden (int count);
|
|
2533
|
|
2534
|
|
2535 /************************************************************************/
|
|
2536 /* Dumping */
|
|
2537 /************************************************************************/
|
|
2538
|
|
2539 /* dump_add_root_struct_ptr (&var, &desc) dumps the structure pointed to by
|
|
2540 `var'. This is for a single relocatable pointer located in the data
|
|
2541 segment (i.e. the block pointed to is in the heap). */
|
452
|
2542 #ifdef PDUMP
|
|
2543 void dump_add_root_struct_ptr (void *, const struct struct_description *);
|
|
2544 #else
|
|
2545 #define dump_add_root_struct_ptr(varaddr,descaddr) DO_NOTHING
|
|
2546 #endif
|
|
2547
|
771
|
2548 /* dump_add_opaque (&var, size) dumps the opaque static structure `var'.
|
|
2549 This is for a static block of memory (in the data segment, not the
|
|
2550 heap), with no relocatable pointers in it. */
|
452
|
2551 #ifdef PDUMP
|
665
|
2552 void dump_add_opaque (const void *, Bytecount);
|
452
|
2553 #else
|
|
2554 #define dump_add_opaque(varaddr,size) DO_NOTHING
|
|
2555 #endif
|
|
2556
|
771
|
2557 /* dump_add_root_block (&var, &desc) dumps the static structure located at
|
|
2558 `var' and described by DESC. This is for a static block of memory (in
|
|
2559 the data segment, not the heap), with relocatable pointers in it, as
|
|
2560 described by DESC. (#### Not yet implemented) */
|
|
2561 #ifdef PDUMP
|
|
2562 void dump_add_root_block (void *ptraddress,
|
|
2563 const struct lrecord_description *desc);
|
|
2564 #else
|
|
2565 #define dump_add_root_block(ptraddress,desc) DO_NOTHING
|
|
2566 #endif
|
|
2567
|
458
|
2568 /* Call dump_add_opaque_int (&int_var) to dump `int_var', of type `int'. */
|
|
2569 #ifdef PDUMP
|
|
2570 #define dump_add_opaque_int(int_varaddr) do { \
|
|
2571 int *dao_ = (int_varaddr); /* type check */ \
|
|
2572 dump_add_opaque (dao_, sizeof (*dao_)); \
|
|
2573 } while (0)
|
|
2574 #else
|
|
2575 #define dump_add_opaque_int(int_varaddr) DO_NOTHING
|
|
2576 #endif
|
|
2577
|
|
2578 /* Call dump_add_opaque_fixnum (&fixnum_var) to dump `fixnum_var', of type `Fixnum'. */
|
|
2579 #ifdef PDUMP
|
|
2580 #define dump_add_opaque_fixnum(fixnum_varaddr) do { \
|
|
2581 Fixnum *dao_ = (fixnum_varaddr); /* type check */ \
|
|
2582 dump_add_opaque (dao_, sizeof (*dao_)); \
|
|
2583 } while (0)
|
|
2584 #else
|
|
2585 #define dump_add_opaque_fixnum(fixnum_varaddr) DO_NOTHING
|
|
2586 #endif
|
|
2587
|
452
|
2588 /* Call dump_add_root_object (&var) to ensure that var is properly updated after pdump. */
|
|
2589 #ifdef PDUMP
|
|
2590 void dump_add_root_object (Lisp_Object *);
|
|
2591 #else
|
|
2592 #define dump_add_root_object(varaddr) DO_NOTHING
|
|
2593 #endif
|
|
2594
|
|
2595 /* Call dump_add_root_object (&var) to ensure that var is properly updated after
|
|
2596 pdump. var must point to a linked list of objects out of which
|
428
|
2597 some may not be dumped */
|
452
|
2598 #ifdef PDUMP
|
|
2599 void dump_add_weak_object_chain (Lisp_Object *);
|
|
2600 #else
|
|
2601 #define dump_add_weak_object_chain(varaddr) DO_NOTHING
|
|
2602 #endif
|
428
|
2603
|
|
2604 /* Nonzero means Emacs has already been initialized.
|
|
2605 Used during startup to detect startup of dumped Emacs. */
|
|
2606 extern int initialized;
|
|
2607
|
771
|
2608
|
|
2609
|
|
2610 /************************************************************************/
|
|
2611 /* Misc definitions */
|
|
2612 /************************************************************************/
|
442
|
2613
|
|
2614 /************************************************************************/
|
|
2615 /* prototypes */
|
|
2616 /************************************************************************/
|
|
2617
|
|
2618 /* NOTE: Prototypes should go HERE, not in various header files, unless
|
|
2619 they specifically reference a type that's not defined in lisp.h.
|
|
2620 (And even then, you might consider adding the type to lisp.h.)
|
|
2621
|
|
2622 The idea is that header files typically contain the innards of objects,
|
|
2623 and we want to minimize the number of "dependencies" of one file on
|
|
2624 the specifics of such objects. Putting prototypes here minimizes the
|
|
2625 number of header files that need to be included -- good for a number
|
|
2626 of reasons. --ben */
|
|
2627
|
|
2628 /*--------------- prototypes for various public c functions ------------*/
|
|
2629
|
|
2630 /* Prototypes for all init/syms_of/vars_of initialization functions. */
|
|
2631 #include "symsinit.h"
|
|
2632
|
428
|
2633 /* Defined in alloc.c */
|
|
2634 void release_breathing_space (void);
|
|
2635 Lisp_Object noseeum_cons (Lisp_Object, Lisp_Object);
|
665
|
2636 Lisp_Object make_vector (Elemcount, Lisp_Object);
|
428
|
2637 Lisp_Object vector1 (Lisp_Object);
|
|
2638 Lisp_Object vector2 (Lisp_Object, Lisp_Object);
|
|
2639 Lisp_Object vector3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
665
|
2640 Lisp_Object make_bit_vector (Elemcount, Lisp_Object);
|
|
2641 Lisp_Object make_bit_vector_from_byte_vector (unsigned char *, Elemcount);
|
428
|
2642 Lisp_Object noseeum_make_marker (void);
|
|
2643 void garbage_collect_1 (void);
|
|
2644 Lisp_Object acons (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2645 Lisp_Object cons3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2646 Lisp_Object list1 (Lisp_Object);
|
|
2647 Lisp_Object list2 (Lisp_Object, Lisp_Object);
|
|
2648 Lisp_Object list3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2649 Lisp_Object list4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2650 Lisp_Object list5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2651 Lisp_Object);
|
|
2652 Lisp_Object list6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2653 Lisp_Object, Lisp_Object);
|
|
2654 DECLARE_DOESNT_RETURN (memory_full (void));
|
|
2655 void disksave_object_finalization (void);
|
|
2656 extern int purify_flag;
|
|
2657 extern int gc_currently_forbidden;
|
|
2658 extern EMACS_INT gc_generation_number[1];
|
|
2659 int c_readonly (Lisp_Object);
|
|
2660 int lisp_readonly (Lisp_Object);
|
771
|
2661 Lisp_Object build_intstring (const Intbyte *);
|
665
|
2662 Lisp_Object build_string (const CIntbyte *);
|
609
|
2663 Lisp_Object build_ext_string (const Extbyte *, Lisp_Object);
|
771
|
2664 Lisp_Object build_msg_intstring (const Intbyte *);
|
|
2665 Lisp_Object build_msg_string (const CIntbyte *);
|
665
|
2666 Lisp_Object make_string (const Intbyte *, Bytecount);
|
442
|
2667 Lisp_Object make_ext_string (const Extbyte *, EMACS_INT, Lisp_Object);
|
771
|
2668 void init_string_ascii_begin (Lisp_Object string);
|
428
|
2669 Lisp_Object make_uninit_string (Bytecount);
|
|
2670 Lisp_Object make_float (double);
|
665
|
2671 Lisp_Object make_string_nocopy (const Intbyte *, Bytecount);
|
428
|
2672 void free_cons (Lisp_Cons *);
|
|
2673 void free_list (Lisp_Object);
|
|
2674 void free_alist (Lisp_Object);
|
|
2675 void mark_conses_in_list (Lisp_Object);
|
|
2676 void free_marker (Lisp_Marker *);
|
|
2677 int object_dead_p (Lisp_Object);
|
|
2678 void mark_object (Lisp_Object obj);
|
|
2679 int marked_p (Lisp_Object obj);
|
|
2680
|
|
2681 #ifdef MEMORY_USAGE_STATS
|
665
|
2682 Bytecount malloced_storage_size (void *, Bytecount, struct overhead_stats *);
|
|
2683 Bytecount fixed_type_block_overhead (Bytecount);
|
428
|
2684 #endif
|
|
2685 #ifdef PDUMP
|
|
2686 void pdump (void);
|
442
|
2687 int pdump_load (const char *);
|
428
|
2688
|
|
2689 extern char *pdump_start, *pdump_end;
|
|
2690 #define DUMPEDP(adr) ((((char *)(adr)) < pdump_end) && (((char *)(adr)) >= pdump_start))
|
|
2691 #else
|
|
2692 #define DUMPEDP(adr) 0
|
|
2693 #endif
|
|
2694
|
|
2695 /* Defined in buffer.c */
|
|
2696 Lisp_Object get_truename_buffer (Lisp_Object);
|
|
2697 void switch_to_buffer (Lisp_Object, Lisp_Object);
|
|
2698 extern int find_file_compare_truenames;
|
|
2699 extern int find_file_use_truenames;
|
771
|
2700 Intbyte *get_initial_directory (Intbyte *pathname, Bytecount size);
|
|
2701 extern Lisp_Object Vbuffer_alist;
|
|
2702 void set_buffer_internal (struct buffer *b);
|
|
2703 struct buffer *decode_buffer (Lisp_Object buffer, int allow_string);
|
|
2704
|
|
2705 void record_buffer (Lisp_Object buf);
|
|
2706 Lisp_Object get_buffer (Lisp_Object name,
|
|
2707 int error_if_deleted_or_does_not_exist);
|
|
2708 int map_over_sharing_buffers (struct buffer *buf,
|
|
2709 int (*mapfun) (struct buffer *buf,
|
|
2710 void *closure),
|
|
2711 void *closure);
|
|
2712
|
|
2713 extern struct buffer *current_buffer;
|
|
2714
|
|
2715 extern void init_initial_directory (void); /* initialize initial_directory */
|
|
2716
|
|
2717 EXFUN (Fbuffer_disable_undo, 1);
|
|
2718 EXFUN (Fbuffer_modified_p, 1);
|
|
2719 EXFUN (Fbuffer_name, 1);
|
|
2720 EXFUN (Fcurrent_buffer, 0);
|
|
2721 EXFUN (Ferase_buffer, 1);
|
|
2722 EXFUN (Fget_buffer, 1);
|
|
2723 EXFUN (Fget_buffer_create, 1);
|
|
2724 EXFUN (Fget_file_buffer, 1);
|
|
2725 EXFUN (Fkill_buffer, 1);
|
|
2726 EXFUN (Fother_buffer, 3);
|
|
2727 EXFUN (Frecord_buffer, 1);
|
|
2728 EXFUN (Fset_buffer, 1);
|
|
2729 EXFUN (Fset_buffer_modified_p, 2);
|
|
2730
|
|
2731 extern Lisp_Object QSscratch, Qafter_change_function, Qafter_change_functions;
|
|
2732 extern Lisp_Object Qbefore_change_function, Qbefore_change_functions;
|
|
2733 extern Lisp_Object Qbuffer_or_string_p, Qdefault_directory, Qfirst_change_hook;
|
|
2734 extern Lisp_Object Qpermanent_local, Vafter_change_function;
|
|
2735 extern Lisp_Object Vafter_change_functions, Vbefore_change_function;
|
|
2736 extern Lisp_Object Vbefore_change_functions, Vbuffer_alist, Vbuffer_defaults;
|
|
2737 extern Lisp_Object Vinhibit_read_only, Vtransient_mark_mode;
|
428
|
2738
|
563
|
2739 /* Defined in bytecode.c */
|
593
|
2740 DECLARE_DOESNT_RETURN (invalid_byte_code
|
665
|
2741 (const CIntbyte *reason, Lisp_Object frob));
|
563
|
2742
|
428
|
2743 /* Defined in callproc.c */
|
771
|
2744 Intbyte *egetenv (const CIntbyte *var);
|
|
2745 void eputenv (const CIntbyte *var, const CIntbyte *value);
|
|
2746 extern int env_initted;
|
428
|
2747
|
|
2748 /* Defined in console.c */
|
|
2749 void stuff_buffered_input (Lisp_Object);
|
|
2750
|
442
|
2751 /* Defined in console-msw.c */
|
|
2752 EXFUN (Fmswindows_message_box, 3);
|
|
2753 extern int mswindows_message_outputted;
|
771
|
2754 void mswindows_hide_console (void);
|
|
2755 int mswindows_output_console_string (const Intbyte *ptr, Bytecount len);
|
|
2756 void write_string_to_mswindows_debugging_output (Intbyte *str, Bytecount len);
|
442
|
2757
|
428
|
2758 /* Defined in data.c */
|
|
2759 DECLARE_DOESNT_RETURN (c_write_error (Lisp_Object));
|
|
2760 DECLARE_DOESNT_RETURN (lisp_write_error (Lisp_Object));
|
|
2761 DECLARE_DOESNT_RETURN (args_out_of_range (Lisp_Object, Lisp_Object));
|
|
2762 DECLARE_DOESNT_RETURN (args_out_of_range_3 (Lisp_Object, Lisp_Object,
|
|
2763 Lisp_Object));
|
|
2764 Lisp_Object wrong_type_argument (Lisp_Object, Lisp_Object);
|
|
2765 DECLARE_DOESNT_RETURN (dead_wrong_type_argument (Lisp_Object, Lisp_Object));
|
|
2766 void check_int_range (EMACS_INT, EMACS_INT, EMACS_INT);
|
|
2767
|
771
|
2768 EXFUN (Fint_to_char, 1);
|
|
2769 EXFUN (Fchar_to_int, 1);
|
|
2770
|
428
|
2771 enum arith_comparison {
|
|
2772 arith_equal,
|
|
2773 arith_notequal,
|
|
2774 arith_less,
|
|
2775 arith_grtr,
|
|
2776 arith_less_or_equal,
|
|
2777 arith_grtr_or_equal };
|
|
2778 Lisp_Object arithcompare (Lisp_Object, Lisp_Object, enum arith_comparison);
|
|
2779
|
707
|
2780 /* Do NOT use word_to_lisp or wasteful_word_to_lisp to decode time_t's
|
|
2781 unless you KNOW arg is non-negative. They cannot return negative
|
|
2782 values! Use make_time. */
|
428
|
2783 Lisp_Object word_to_lisp (unsigned int);
|
|
2784 unsigned int lisp_to_word (Lisp_Object);
|
|
2785
|
|
2786 /* Defined in dired.c */
|
771
|
2787 Lisp_Object make_directory_hash_table (const Intbyte *);
|
428
|
2788 Lisp_Object wasteful_word_to_lisp (unsigned int);
|
|
2789
|
|
2790 /* Defined in doc.c */
|
771
|
2791 Lisp_Object unparesseuxify_doc_string (int, EMACS_INT, Intbyte *, Lisp_Object);
|
428
|
2792 Lisp_Object read_doc_string (Lisp_Object);
|
|
2793
|
|
2794 /* Defined in doprnt.c */
|
771
|
2795
|
|
2796 Bytecount emacs_doprnt_va (Lisp_Object stream, const Intbyte *format_nonreloc,
|
|
2797 Bytecount format_length, Lisp_Object format_reloc,
|
|
2798 va_list vargs);
|
|
2799 Bytecount emacs_doprnt (Lisp_Object stream, const Intbyte *format_nonreloc,
|
|
2800 Bytecount format_length, Lisp_Object format_reloc,
|
|
2801 int nargs, const Lisp_Object *largs, ...);
|
|
2802 Lisp_Object emacs_vsprintf_string_lisp (const CIntbyte *format_nonreloc,
|
|
2803 Lisp_Object format_reloc, int nargs,
|
|
2804 const Lisp_Object *largs);
|
|
2805 Lisp_Object emacs_sprintf_string_lisp (const CIntbyte *format_nonreloc,
|
|
2806 Lisp_Object format_reloc, int nargs, ...);
|
|
2807 Intbyte *emacs_vsprintf_malloc_lisp (const CIntbyte *format_nonreloc,
|
|
2808 Lisp_Object format_reloc, int nargs,
|
|
2809 const Lisp_Object *largs,
|
|
2810 Bytecount *len_out);
|
|
2811 Intbyte *emacs_sprintf_malloc_lisp (Bytecount *len_out,
|
|
2812 const CIntbyte *format_nonreloc,
|
|
2813 Lisp_Object format_reloc, int nargs, ...);
|
|
2814 Lisp_Object emacs_vsprintf_string (const CIntbyte *format, va_list vargs);
|
|
2815 Lisp_Object emacs_sprintf_string (const CIntbyte *format, ...)
|
|
2816 PRINTF_ARGS (1, 2);
|
|
2817 Intbyte *emacs_vsprintf_malloc (const CIntbyte *format, va_list vargs,
|
|
2818 Bytecount *len_out);
|
|
2819 Intbyte *emacs_sprintf_malloc (Bytecount *len_out, const CIntbyte *format, ...)
|
|
2820 PRINTF_ARGS (2, 3);
|
|
2821 Bytecount emacs_vsprintf (Intbyte *output, const CIntbyte *format,
|
|
2822 va_list vargs);
|
|
2823 Bytecount emacs_sprintf (Intbyte *output, const CIntbyte *format, ...)
|
|
2824 PRINTF_ARGS (2, 3);
|
|
2825
|
428
|
2826
|
|
2827 /* Defined in editfns.c */
|
|
2828 void uncache_home_directory (void);
|
771
|
2829 Intbyte *get_home_directory (void);
|
|
2830 Intbyte *user_login_name (uid_t *);
|
665
|
2831 Charbpos charbpos_clip_to_bounds (Charbpos, Charbpos, Charbpos);
|
|
2832 Bytebpos bytebpos_clip_to_bounds (Bytebpos, Bytebpos, Bytebpos);
|
428
|
2833 void buffer_insert1 (struct buffer *, Lisp_Object);
|
665
|
2834 Lisp_Object make_string_from_buffer (struct buffer *, Charbpos, Charcount);
|
|
2835 Lisp_Object make_string_from_buffer_no_extents (struct buffer *, Charbpos, Charcount);
|
707
|
2836 Lisp_Object make_time (time_t);
|
428
|
2837 Lisp_Object save_excursion_save (void);
|
|
2838 Lisp_Object save_restriction_save (void);
|
|
2839 Lisp_Object save_excursion_restore (Lisp_Object);
|
|
2840 Lisp_Object save_restriction_restore (Lisp_Object);
|
771
|
2841 void widen_buffer (struct buffer *b, int no_clip);
|
|
2842 int beginning_of_line_p (struct buffer *b, Charbpos pt);
|
428
|
2843
|
|
2844 /* Defined in emacsfns.c */
|
|
2845 Lisp_Object save_current_buffer_restore (Lisp_Object);
|
|
2846
|
|
2847 /* Defined in emacs.c */
|
|
2848 SIGTYPE fatal_error_signal (int);
|
442
|
2849 Lisp_Object make_arg_list (int, Extbyte **);
|
|
2850 void make_argc_argv (Lisp_Object, int *, Extbyte ***);
|
|
2851 void free_argc_argv (Extbyte **);
|
771
|
2852 Lisp_Object split_external_path (const Extbyte *path);
|
|
2853 Lisp_Object split_env_path (const CIntbyte *evarname, const Intbyte *default_);
|
|
2854
|
428
|
2855 /* Nonzero means don't do interactive redisplay and don't change tty modes */
|
442
|
2856 extern int noninteractive, noninteractive1;
|
771
|
2857 extern int inhibit_non_essential_printing_operations;
|
428
|
2858 extern int preparing_for_armageddon;
|
458
|
2859 extern Fixnum emacs_priority;
|
428
|
2860 extern int running_asynch_code;
|
|
2861 extern int suppress_early_error_handler_backtrace;
|
771
|
2862 void debug_break (void);
|
|
2863 int debug_can_access_memory (void *ptr, Bytecount len);
|
|
2864 void really_abort (void);
|
776
|
2865 void zero_out_command_line_status_vars (void);
|
428
|
2866
|
|
2867 /* Defined in eval.c */
|
563
|
2868 DECLARE_DOESNT_RETURN (signal_error_1 (Lisp_Object, Lisp_Object));
|
|
2869 void maybe_signal_error_1 (Lisp_Object, Lisp_Object, Lisp_Object,
|
578
|
2870 Error_Behavior);
|
563
|
2871 Lisp_Object maybe_signal_continuable_error_1 (Lisp_Object, Lisp_Object,
|
578
|
2872 Lisp_Object, Error_Behavior);
|
609
|
2873 DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS (signal_ferror
|
|
2874 (Lisp_Object,
|
665
|
2875 const CIntbyte *,
|
609
|
2876 ...), 2, 3);
|
578
|
2877 void maybe_signal_ferror (Lisp_Object, Lisp_Object, Error_Behavior,
|
665
|
2878 const CIntbyte *, ...) PRINTF_ARGS (4, 5);
|
|
2879 Lisp_Object signal_continuable_ferror (Lisp_Object, const CIntbyte *, ...)
|
442
|
2880 PRINTF_ARGS (2, 3);
|
563
|
2881 Lisp_Object maybe_signal_continuable_ferror (Lisp_Object, Lisp_Object,
|
578
|
2882 Error_Behavior,
|
665
|
2883 const CIntbyte *, ...)
|
442
|
2884 PRINTF_ARGS (4, 5);
|
563
|
2885
|
665
|
2886 Lisp_Object build_error_data (const CIntbyte *reason, Lisp_Object frob);
|
|
2887 DECLARE_DOESNT_RETURN (signal_error (Lisp_Object, const CIntbyte *,
|
563
|
2888 Lisp_Object));
|
665
|
2889 void maybe_signal_error (Lisp_Object, const CIntbyte *, Lisp_Object,
|
578
|
2890 Lisp_Object, Error_Behavior);
|
665
|
2891 Lisp_Object signal_continuable_error (Lisp_Object, const CIntbyte *,
|
563
|
2892 Lisp_Object);
|
665
|
2893 Lisp_Object maybe_signal_continuable_error (Lisp_Object, const CIntbyte *,
|
563
|
2894 Lisp_Object,
|
578
|
2895 Lisp_Object, Error_Behavior);
|
563
|
2896 DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS (signal_ferror_with_frob
|
442
|
2897 (Lisp_Object, Lisp_Object,
|
665
|
2898 const CIntbyte *,
|
442
|
2899 ...), 3, 4);
|
563
|
2900 void maybe_signal_ferror_with_frob (Lisp_Object, Lisp_Object, Lisp_Object,
|
578
|
2901 Error_Behavior,
|
665
|
2902 const CIntbyte *, ...) PRINTF_ARGS (5, 6);
|
563
|
2903 Lisp_Object signal_continuable_ferror_with_frob (Lisp_Object, Lisp_Object,
|
665
|
2904 const CIntbyte *,
|
563
|
2905 ...) PRINTF_ARGS (3, 4);
|
|
2906 Lisp_Object maybe_signal_continuable_ferror_with_frob (Lisp_Object,
|
|
2907 Lisp_Object,
|
|
2908 Lisp_Object,
|
578
|
2909 Error_Behavior,
|
665
|
2910 const CIntbyte *, ...)
|
442
|
2911 PRINTF_ARGS (5, 6);
|
665
|
2912 DECLARE_DOESNT_RETURN (signal_error_2 (Lisp_Object, const CIntbyte *,
|
563
|
2913 Lisp_Object, Lisp_Object));
|
665
|
2914 void maybe_signal_error_2 (Lisp_Object, const CIntbyte *, Lisp_Object,
|
578
|
2915 Lisp_Object, Lisp_Object, Error_Behavior);
|
665
|
2916 Lisp_Object signal_continuable_error_2 (Lisp_Object, const CIntbyte *,
|
563
|
2917 Lisp_Object, Lisp_Object);
|
665
|
2918 Lisp_Object maybe_signal_continuable_error_2 (Lisp_Object, const CIntbyte *,
|
563
|
2919 Lisp_Object, Lisp_Object,
|
|
2920 Lisp_Object,
|
578
|
2921 Error_Behavior);
|
563
|
2922
|
|
2923
|
436
|
2924 DECLARE_DOESNT_RETURN (signal_malformed_list_error (Lisp_Object));
|
|
2925 DECLARE_DOESNT_RETURN (signal_malformed_property_list_error (Lisp_Object));
|
|
2926 DECLARE_DOESNT_RETURN (signal_circular_list_error (Lisp_Object));
|
|
2927 DECLARE_DOESNT_RETURN (signal_circular_property_list_error (Lisp_Object));
|
|
2928
|
665
|
2929 DECLARE_DOESNT_RETURN (syntax_error (const CIntbyte *reason,
|
609
|
2930 Lisp_Object frob));
|
665
|
2931 DECLARE_DOESNT_RETURN (syntax_error_2 (const CIntbyte *reason,
|
609
|
2932 Lisp_Object frob1,
|
442
|
2933 Lisp_Object frob2));
|
665
|
2934 void maybe_syntax_error (const CIntbyte *, Lisp_Object, Lisp_Object,
|
578
|
2935 Error_Behavior);
|
665
|
2936 DECLARE_DOESNT_RETURN (sferror (const CIntbyte *reason, Lisp_Object frob));
|
|
2937 DECLARE_DOESNT_RETURN (sferror_2 (const CIntbyte *reason, Lisp_Object frob1,
|
563
|
2938 Lisp_Object frob2));
|
665
|
2939 void maybe_sferror (const CIntbyte *, Lisp_Object, Lisp_Object,
|
578
|
2940 Error_Behavior);
|
665
|
2941 DECLARE_DOESNT_RETURN (invalid_argument (const CIntbyte *reason,
|
442
|
2942 Lisp_Object frob));
|
665
|
2943 DECLARE_DOESNT_RETURN (invalid_argument_2 (const CIntbyte *reason,
|
442
|
2944 Lisp_Object frob1,
|
|
2945 Lisp_Object frob2));
|
665
|
2946 void maybe_invalid_argument (const CIntbyte *, Lisp_Object, Lisp_Object,
|
578
|
2947 Error_Behavior);
|
665
|
2948 DECLARE_DOESNT_RETURN (invalid_operation (const CIntbyte *reason,
|
563
|
2949 Lisp_Object frob));
|
665
|
2950 DECLARE_DOESNT_RETURN (invalid_operation_2 (const CIntbyte *reason,
|
563
|
2951 Lisp_Object frob1,
|
|
2952 Lisp_Object frob2));
|
665
|
2953 void maybe_invalid_operation (const CIntbyte *, Lisp_Object, Lisp_Object,
|
578
|
2954 Error_Behavior);
|
665
|
2955 DECLARE_DOESNT_RETURN (invalid_state (const CIntbyte *reason,
|
563
|
2956 Lisp_Object frob));
|
665
|
2957 DECLARE_DOESNT_RETURN (invalid_state_2 (const CIntbyte *reason,
|
563
|
2958 Lisp_Object frob1,
|
|
2959 Lisp_Object frob2));
|
665
|
2960 void maybe_invalid_state (const CIntbyte *, Lisp_Object, Lisp_Object,
|
609
|
2961 Error_Behavior);
|
665
|
2962 DECLARE_DOESNT_RETURN (invalid_change (const CIntbyte *reason,
|
563
|
2963 Lisp_Object frob));
|
665
|
2964 DECLARE_DOESNT_RETURN (invalid_change_2 (const CIntbyte *reason,
|
563
|
2965 Lisp_Object frob1,
|
|
2966 Lisp_Object frob2));
|
665
|
2967 void maybe_invalid_change (const CIntbyte *, Lisp_Object, Lisp_Object,
|
609
|
2968 Error_Behavior);
|
665
|
2969 DECLARE_DOESNT_RETURN (invalid_constant (const CIntbyte *reason,
|
563
|
2970 Lisp_Object frob));
|
665
|
2971 DECLARE_DOESNT_RETURN (invalid_constant_2 (const CIntbyte *reason,
|
563
|
2972 Lisp_Object frob1,
|
|
2973 Lisp_Object frob2));
|
665
|
2974 void maybe_invalid_constant (const CIntbyte *, Lisp_Object, Lisp_Object,
|
578
|
2975 Error_Behavior);
|
665
|
2976 DECLARE_DOESNT_RETURN (wtaerror (const CIntbyte *reason, Lisp_Object frob));
|
|
2977 DECLARE_DOESNT_RETURN (out_of_memory (const CIntbyte *reason,
|
563
|
2978 Lisp_Object frob));
|
665
|
2979 DECLARE_DOESNT_RETURN (stack_overflow (const CIntbyte *reason,
|
442
|
2980 Lisp_Object frob));
|
563
|
2981 DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS (printing_unreadable_object
|
665
|
2982 (const CIntbyte *,
|
563
|
2983 ...), 1, 2);
|
442
|
2984
|
436
|
2985 Lisp_Object signal_void_function_error (Lisp_Object);
|
|
2986 Lisp_Object signal_invalid_function_error (Lisp_Object);
|
|
2987 Lisp_Object signal_wrong_number_of_arguments_error (Lisp_Object, int);
|
|
2988
|
428
|
2989 Lisp_Object run_hook_with_args_in_buffer (struct buffer *, int, Lisp_Object *,
|
|
2990 enum run_hooks_condition);
|
|
2991 Lisp_Object run_hook_with_args (int, Lisp_Object *, enum run_hooks_condition);
|
|
2992 void va_run_hook_with_args (Lisp_Object, int, ...);
|
|
2993 void va_run_hook_with_args_in_buffer (struct buffer *, Lisp_Object, int, ...);
|
|
2994 Lisp_Object run_hook (Lisp_Object);
|
|
2995 Lisp_Object apply1 (Lisp_Object, Lisp_Object);
|
|
2996 Lisp_Object call0 (Lisp_Object);
|
|
2997 Lisp_Object call1 (Lisp_Object, Lisp_Object);
|
|
2998 Lisp_Object call2 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2999 Lisp_Object call3 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3000 Lisp_Object call4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
3001 Lisp_Object);
|
|
3002 Lisp_Object call5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
3003 Lisp_Object, Lisp_Object);
|
|
3004 Lisp_Object call6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
3005 Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3006 Lisp_Object call7 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
3007 Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3008 Lisp_Object call8 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
3009 Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
3010 Lisp_Object);
|
|
3011 Lisp_Object call0_in_buffer (struct buffer *, Lisp_Object);
|
|
3012 Lisp_Object call1_in_buffer (struct buffer *, Lisp_Object, Lisp_Object);
|
|
3013 Lisp_Object call2_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
3014 Lisp_Object);
|
|
3015 Lisp_Object call3_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
3016 Lisp_Object, Lisp_Object);
|
|
3017 Lisp_Object call4_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
3018 Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3019 Lisp_Object call5_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
3020 Lisp_Object, Lisp_Object, Lisp_Object,
|
|
3021 Lisp_Object);
|
|
3022 Lisp_Object call6_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
3023 Lisp_Object, Lisp_Object, Lisp_Object,
|
|
3024 Lisp_Object, Lisp_Object);
|
|
3025 Lisp_Object eval_in_buffer (struct buffer *, Lisp_Object);
|
|
3026 Lisp_Object call0_with_handler (Lisp_Object, Lisp_Object);
|
|
3027 Lisp_Object call1_with_handler (Lisp_Object, Lisp_Object, Lisp_Object);
|
665
|
3028 Lisp_Object eval_in_buffer_trapping_errors (const CIntbyte *, struct buffer *,
|
428
|
3029 Lisp_Object);
|
665
|
3030 Lisp_Object run_hook_trapping_errors (const CIntbyte *, Lisp_Object);
|
|
3031 Lisp_Object safe_run_hook_trapping_errors (const CIntbyte *, Lisp_Object, int);
|
|
3032 Lisp_Object call0_trapping_errors (const CIntbyte *, Lisp_Object);
|
|
3033 Lisp_Object call1_trapping_errors (const CIntbyte *, Lisp_Object, Lisp_Object);
|
|
3034 Lisp_Object call2_trapping_errors (const CIntbyte *,
|
428
|
3035 Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3036 Lisp_Object call_with_suspended_errors (lisp_fn_t, volatile Lisp_Object, Lisp_Object,
|
578
|
3037 Error_Behavior, int, ...);
|
428
|
3038 /* C Code should be using internal_catch, record_unwind_p, condition_case_1 */
|
|
3039 Lisp_Object internal_catch (Lisp_Object, Lisp_Object (*) (Lisp_Object),
|
|
3040 Lisp_Object, int * volatile);
|
|
3041 Lisp_Object condition_case_1 (Lisp_Object,
|
|
3042 Lisp_Object (*) (Lisp_Object),
|
|
3043 Lisp_Object,
|
|
3044 Lisp_Object (*) (Lisp_Object, Lisp_Object),
|
|
3045 Lisp_Object);
|
|
3046 Lisp_Object condition_case_3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
771
|
3047 Lisp_Object unbind_to_1 (int, Lisp_Object);
|
|
3048 #define unbind_to(obj) unbind_to_1 (obj, Qnil)
|
428
|
3049 void specbind (Lisp_Object, Lisp_Object);
|
771
|
3050 int record_unwind_protect (Lisp_Object (*) (Lisp_Object), Lisp_Object);
|
|
3051 int record_unwind_protect_freeing (void *ptr);
|
|
3052 int record_unwind_protect_freeing_dynarr (void *ptr);
|
428
|
3053 void do_autoload (Lisp_Object, Lisp_Object);
|
|
3054 Lisp_Object un_autoload (Lisp_Object);
|
|
3055 void warn_when_safe_lispobj (Lisp_Object, Lisp_Object, Lisp_Object);
|
665
|
3056 void warn_when_safe (Lisp_Object, Lisp_Object, const CIntbyte *,
|
428
|
3057 ...) PRINTF_ARGS (3, 4);
|
|
3058
|
|
3059
|
|
3060 /* Defined in event-stream.c */
|
|
3061 void wait_delaying_user_input (int (*) (void *), void *);
|
|
3062 int detect_input_pending (void);
|
|
3063 void reset_this_command_keys (Lisp_Object, int);
|
|
3064 Lisp_Object enqueue_misc_user_event (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3065 Lisp_Object enqueue_misc_user_event_pos (Lisp_Object, Lisp_Object,
|
|
3066 Lisp_Object, int, int, int, int);
|
442
|
3067 extern int modifier_keys_are_sticky;
|
428
|
3068
|
|
3069 /* Defined in event-Xt.c */
|
442
|
3070 void enqueue_Xt_dispatch_event (Lisp_Object event);
|
428
|
3071 void signal_special_Xt_user_event (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3072
|
|
3073
|
|
3074 /* Defined in events.c */
|
|
3075 void clear_event_resource (void);
|
|
3076 Lisp_Object allocate_event (void);
|
|
3077
|
771
|
3078 EXFUN (Fevent_x_pixel, 1);
|
|
3079 EXFUN (Fevent_y_pixel, 1);
|
|
3080
|
|
3081
|
|
3082 /* Defined in file-coding.c */
|
|
3083 EXFUN (Fcoding_category_list, 0);
|
|
3084 EXFUN (Fcoding_category_system, 1);
|
|
3085 EXFUN (Fcoding_priority_list, 0);
|
|
3086 EXFUN (Fcoding_system_description, 1);
|
|
3087 EXFUN (Fcoding_system_documentation, 1);
|
|
3088 EXFUN (Fcoding_system_list, 1);
|
|
3089 EXFUN (Fcoding_system_name, 1);
|
|
3090 EXFUN (Fcoding_system_p, 1);
|
|
3091 EXFUN (Fcoding_system_property, 2);
|
|
3092 EXFUN (Fcoding_system_type, 1);
|
|
3093 EXFUN (Fcopy_coding_system, 2);
|
|
3094 EXFUN (Fdecode_big5_char, 1);
|
|
3095 EXFUN (Fdecode_coding_region, 4);
|
|
3096 EXFUN (Fdecode_shift_jis_char, 1);
|
|
3097 EXFUN (Fdefine_coding_system_alias, 2);
|
|
3098 EXFUN (Fdetect_coding_region, 3);
|
|
3099 EXFUN (Fdefault_encoding_detection_enabled_p, 0);
|
|
3100 EXFUN (Fencode_big5_char, 1);
|
|
3101 EXFUN (Fencode_coding_region, 4);
|
|
3102 EXFUN (Fencode_shift_jis_char, 1);
|
|
3103 EXFUN (Ffind_coding_system, 1);
|
|
3104 EXFUN (Fget_coding_system, 1);
|
|
3105 EXFUN (Fmake_coding_system, 4);
|
|
3106 EXFUN (Fset_coding_category_system, 2);
|
|
3107 EXFUN (Fset_coding_priority_list, 1);
|
|
3108 EXFUN (Fsubsidiary_coding_system, 2);
|
|
3109
|
|
3110 extern Lisp_Object Qshift_jis, Qiso2022, Qbig5, Qccl;
|
|
3111 extern Lisp_Object Qcharset_g0;
|
|
3112 extern Lisp_Object Qcharset_g1, Qcharset_g2, Qcharset_g3, Qcoding_system_error;
|
|
3113 extern Lisp_Object Qcoding_systemp, Qcr, Qcrlf, Qdecode, Qencode;
|
|
3114 extern Lisp_Object Qeol_cr, Qeol_crlf, Qeol_lf, Qeol_type, Qescape_quoted;
|
|
3115 extern Lisp_Object Qforce_g0_on_output, Qforce_g1_on_output;
|
|
3116 extern Lisp_Object Qforce_g2_on_output, Qforce_g3_on_output;
|
|
3117 extern Lisp_Object Qinput_charset_conversion, Qlf, Qlock_shift;
|
|
3118 extern Lisp_Object Qmnemonic, Qno_ascii_cntl, Qno_ascii_eol;
|
|
3119 extern Lisp_Object Qno_conversion, Qraw_text;
|
|
3120 extern Lisp_Object Qno_iso6429, Qoutput_charset_conversion;
|
|
3121 extern Lisp_Object Qpost_read_conversion, Qpre_write_conversion, Qseven;
|
|
3122 extern Lisp_Object Qshort, Vcoding_system_for_read;
|
|
3123 extern Lisp_Object Vcoding_system_for_write;
|
|
3124 extern Lisp_Object Vfile_name_coding_system, Vkeyboard_coding_system;
|
|
3125 extern Lisp_Object Vterminal_coding_system;
|
|
3126 extern Lisp_Object Qcanonicalize_after_coding;
|
|
3127 void init_charset_unicode_tables (Lisp_Object charset);
|
|
3128 void free_charset_unicode_tables (Lisp_Object charset);
|
|
3129 void recalculate_unicode_precedence (void);
|
|
3130 int coding_system_is_for_text_file (Lisp_Object coding_system);
|
|
3131 Lisp_Object find_coding_system_for_text_file (Lisp_Object name, int eol_wrap);
|
|
3132 Lisp_Object get_coding_system_for_text_file (Lisp_Object name, int eol_wrap);
|
|
3133 int coding_system_is_binary (Lisp_Object coding_system);
|
|
3134
|
|
3135
|
428
|
3136 /* Defined in fileio.c */
|
|
3137 void record_auto_save (void);
|
|
3138 void force_auto_save_soon (void);
|
563
|
3139 DECLARE_DOESNT_RETURN (report_error_with_errno (Lisp_Object errtype,
|
665
|
3140 const CIntbyte *string,
|
563
|
3141 Lisp_Object data));
|
|
3142 DECLARE_DOESNT_RETURN (report_file_type_error (Lisp_Object errtype,
|
|
3143 Lisp_Object oserrmess,
|
665
|
3144 const CIntbyte *string,
|
563
|
3145 Lisp_Object data));
|
665
|
3146 DECLARE_DOESNT_RETURN (report_file_error (const CIntbyte *, Lisp_Object));
|
428
|
3147 Lisp_Object lisp_strerror (int);
|
|
3148 Lisp_Object expand_and_dir_to_file (Lisp_Object, Lisp_Object);
|
|
3149 int internal_delete_file (Lisp_Object);
|
|
3150
|
|
3151 /* Defined in filelock.c */
|
|
3152 void lock_file (Lisp_Object);
|
|
3153 void unlock_file (Lisp_Object);
|
|
3154 void unlock_all_files (void);
|
|
3155 void unlock_buffer (struct buffer *);
|
|
3156
|
|
3157 /* Defined in filemode.c */
|
|
3158 void filemodestring (struct stat *, char *);
|
|
3159
|
|
3160 /* Defined in floatfns.c */
|
|
3161 double extract_float (Lisp_Object);
|
|
3162
|
|
3163 /* Defined in fns.c */
|
|
3164 Lisp_Object list_sort (Lisp_Object, Lisp_Object,
|
|
3165 int (*) (Lisp_Object, Lisp_Object, Lisp_Object));
|
|
3166 Lisp_Object merge (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3167
|
|
3168 void bump_string_modiff (Lisp_Object);
|
|
3169 Lisp_Object memq_no_quit (Lisp_Object, Lisp_Object);
|
|
3170 Lisp_Object assoc_no_quit (Lisp_Object, Lisp_Object);
|
|
3171 Lisp_Object assq_no_quit (Lisp_Object, Lisp_Object);
|
|
3172 Lisp_Object rassq_no_quit (Lisp_Object, Lisp_Object);
|
|
3173 Lisp_Object delq_no_quit (Lisp_Object, Lisp_Object);
|
|
3174 Lisp_Object delq_no_quit_and_free_cons (Lisp_Object, Lisp_Object);
|
|
3175 Lisp_Object remassoc_no_quit (Lisp_Object, Lisp_Object);
|
|
3176 Lisp_Object remassq_no_quit (Lisp_Object, Lisp_Object);
|
|
3177 Lisp_Object remrassq_no_quit (Lisp_Object, Lisp_Object);
|
|
3178
|
|
3179 int plists_differ (Lisp_Object, Lisp_Object, int, int, int);
|
|
3180 Lisp_Object internal_plist_get (Lisp_Object, Lisp_Object);
|
|
3181 void internal_plist_put (Lisp_Object *, Lisp_Object, Lisp_Object);
|
|
3182 int internal_remprop (Lisp_Object *, Lisp_Object);
|
|
3183 Lisp_Object external_plist_get (Lisp_Object *, Lisp_Object,
|
578
|
3184 int, Error_Behavior);
|
428
|
3185 void external_plist_put (Lisp_Object *, Lisp_Object,
|
578
|
3186 Lisp_Object, int, Error_Behavior);
|
|
3187 int external_remprop (Lisp_Object *, Lisp_Object, int, Error_Behavior);
|
428
|
3188 int internal_equal (Lisp_Object, Lisp_Object, int);
|
|
3189 Lisp_Object concat2 (Lisp_Object, Lisp_Object);
|
|
3190 Lisp_Object concat3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3191 Lisp_Object vconcat2 (Lisp_Object, Lisp_Object);
|
|
3192 Lisp_Object vconcat3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3193 Lisp_Object nconc2 (Lisp_Object, Lisp_Object);
|
|
3194 Lisp_Object bytecode_nconc2 (Lisp_Object *);
|
442
|
3195 void check_losing_bytecode (const char *, Lisp_Object);
|
428
|
3196
|
771
|
3197 Lisp_Object add_suffix_to_symbol (Lisp_Object symbol,
|
|
3198 const Char_ASCII *ascii_string);
|
|
3199 Lisp_Object add_prefix_to_symbol (const Char_ASCII *ascii_string,
|
|
3200 Lisp_Object symbol);
|
|
3201
|
428
|
3202 /* Defined in glyphs.c */
|
578
|
3203 Error_Behavior decode_error_behavior_flag (Lisp_Object);
|
|
3204 Lisp_Object encode_error_behavior_flag (Error_Behavior);
|
428
|
3205
|
563
|
3206 /* Defined in glyphs-shared.c */
|
|
3207 void shared_resource_validate (Lisp_Object instantiator);
|
|
3208 Lisp_Object shared_resource_normalize (Lisp_Object inst,
|
|
3209 Lisp_Object console_type,
|
|
3210 Lisp_Object dest_mask,
|
|
3211 Lisp_Object tag);
|
|
3212 extern Lisp_Object Q_resource_type, Q_resource_id;
|
|
3213
|
|
3214 /* Defined in gui.c */
|
|
3215 DECLARE_DOESNT_RETURN (gui_error (const char *reason,
|
|
3216 Lisp_Object frob));
|
569
|
3217 DECLARE_DOESNT_RETURN (gui_error_2 (const char *reason,
|
|
3218 Lisp_Object frob0, Lisp_Object frob1));
|
428
|
3219 /* Defined in indent.c */
|
665
|
3220 int bi_spaces_at_point (struct buffer *, Bytebpos);
|
|
3221 int column_at_point (struct buffer *, Charbpos, int);
|
|
3222 int string_column_at_point (Lisp_String *, Charbpos, int);
|
428
|
3223 int current_column (struct buffer *);
|
|
3224 void invalidate_current_column (void);
|
665
|
3225 Charbpos vmotion (struct window *, Charbpos, int, int *);
|
|
3226 Charbpos vmotion_pixels (Lisp_Object, Charbpos, int, int, int *);
|
428
|
3227
|
771
|
3228 /* Defined in insdel.c */
|
|
3229 void set_buffer_point (struct buffer *buf, Charbpos pos, Bytebpos bipos);
|
|
3230
|
|
3231 /* Defined in intl-win32.c */
|
|
3232 EXFUN (Fmswindows_set_current_locale, 1);
|
|
3233 EXFUN (Fmswindows_current_locale, 0);
|
|
3234 EXFUN (Fmswindows_user_default_locale, 0);
|
|
3235 EXFUN (Fmswindows_system_default_locale, 0);
|
|
3236 EXFUN (Fmswindows_locale_code_page, 1);
|
|
3237 EXFUN (Fmswindows_supported_locales, 0);
|
|
3238 EXFUN (Fmswindows_charset_code_page, 1);
|
|
3239 EXFUN (Fmswindows_set_charset_code_page, 2);
|
|
3240
|
|
3241 extern Lisp_Object Qmswindows_tstr, Qmswindows_unicode;
|
|
3242 extern Lisp_Object Qmswindows_multibyte, Qmswindows_multibyte_to_unicode;
|
|
3243
|
428
|
3244 /* Defined in keymap.c */
|
|
3245 void where_is_to_char (Lisp_Object, char *);
|
|
3246
|
|
3247 /* Defined in lread.c */
|
|
3248 void ebolify_bytecode_constants (Lisp_Object);
|
|
3249 void close_load_descs (void);
|
|
3250 int locate_file (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object *, int);
|
|
3251 EXFUN (Flocate_file_clear_hashing, 1);
|
442
|
3252 int isfloat_string (const char *);
|
428
|
3253
|
|
3254 /* Well, I've decided to enable this. -- ben */
|
|
3255 /* And I've decided to make it work right. -- sb */
|
|
3256 #define LOADHIST
|
|
3257 /* Define the following symbol to enable load history of dumped files */
|
|
3258 #define LOADHIST_DUMPED
|
|
3259 /* Define the following symbol to enable load history of C source */
|
|
3260 #define LOADHIST_BUILTIN
|
|
3261
|
|
3262 #ifdef LOADHIST /* this is just a stupid idea */
|
|
3263 #define LOADHIST_ATTACH(x) \
|
|
3264 do { if (initialized) Vcurrent_load_list = Fcons (x, Vcurrent_load_list); } \
|
|
3265 while (0)
|
|
3266 #else /*! LOADHIST */
|
|
3267 # define LOADHIST_ATTACH(x)
|
|
3268 #endif /*! LOADHIST */
|
|
3269
|
|
3270 /* Defined in marker.c */
|
665
|
3271 Bytebpos bi_marker_position (Lisp_Object);
|
|
3272 Charbpos marker_position (Lisp_Object);
|
|
3273 void set_bi_marker_position (Lisp_Object, Bytebpos);
|
|
3274 void set_marker_position (Lisp_Object, Charbpos);
|
428
|
3275 void unchain_marker (Lisp_Object);
|
|
3276 Lisp_Object noseeum_copy_marker (Lisp_Object, Lisp_Object);
|
|
3277 Lisp_Object set_marker_restricted (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3278 #ifdef MEMORY_USAGE_STATS
|
|
3279 int compute_buffer_marker_usage (struct buffer *, struct overhead_stats *);
|
|
3280 #endif
|
771
|
3281 void init_buffer_markers (struct buffer *b);
|
|
3282 void uninit_buffer_markers (struct buffer *b);
|
428
|
3283
|
|
3284 /* Defined in menubar.c */
|
|
3285 extern int popup_menu_up_p;
|
|
3286 extern int menubar_show_keybindings;
|
|
3287 extern int popup_menu_titles;
|
|
3288
|
|
3289 /* Defined in minibuf.c */
|
|
3290 extern int minibuf_level;
|
665
|
3291 Charcount scmp_1 (const Intbyte *, const Intbyte *, Charcount, int);
|
428
|
3292 #define scmp(s1, s2, len) scmp_1 (s1, s2, len, completion_ignore_case)
|
|
3293 extern int completion_ignore_case;
|
665
|
3294 int regexp_ignore_completion_p (const Intbyte *, Lisp_Object,
|
428
|
3295 Bytecount, Bytecount);
|
|
3296 Lisp_Object clear_echo_area (struct frame *, Lisp_Object, int);
|
|
3297 Lisp_Object clear_echo_area_from_print (struct frame *, Lisp_Object, int);
|
665
|
3298 void echo_area_append (struct frame *, const Intbyte *, Lisp_Object,
|
428
|
3299 Bytecount, Bytecount, Lisp_Object);
|
665
|
3300 void echo_area_message (struct frame *, const Intbyte *, Lisp_Object,
|
428
|
3301 Bytecount, Bytecount, Lisp_Object);
|
|
3302 Lisp_Object echo_area_status (struct frame *);
|
|
3303 int echo_area_active (struct frame *);
|
|
3304 Lisp_Object echo_area_contents (struct frame *);
|
665
|
3305 void message_internal (const Intbyte *, Lisp_Object, Bytecount, Bytecount);
|
|
3306 void message_append_internal (const Intbyte *, Lisp_Object,
|
428
|
3307 Bytecount, Bytecount);
|
442
|
3308 void message (const char *, ...) PRINTF_ARGS (1, 2);
|
|
3309 void message_append (const char *, ...) PRINTF_ARGS (1, 2);
|
|
3310 void message_no_translate (const char *, ...) PRINTF_ARGS (1, 2);
|
428
|
3311 void clear_message (void);
|
|
3312
|
771
|
3313 /* Defined in mule-charset.c */
|
|
3314 extern Lisp_Object Ql2r, Qr2l;
|
|
3315
|
428
|
3316 /* Defined in print.c */
|
771
|
3317
|
|
3318 /* Lower-level ways to output data: */
|
|
3319 void print_internal (Lisp_Object, Lisp_Object, int);
|
428
|
3320 void debug_print (Lisp_Object);
|
|
3321 /* NOTE: Do not call this with the data of a Lisp_String. Use princ.
|
|
3322 * Note: stream should be defaulted before calling
|
|
3323 * (eg Qnil means stdout, not Vstandard_output, etc) */
|
771
|
3324 void write_c_string (const CIntbyte *str, Lisp_Object stream);
|
|
3325 /* Same goes for this function. */
|
|
3326 void write_string (const Intbyte *str, Lisp_Object stream);
|
428
|
3327 /* Same goes for this function. */
|
771
|
3328 void write_string_1 (const Intbyte *str, Bytecount size, Lisp_Object stream);
|
|
3329
|
|
3330 /* Higher-level (printf-style) ways to output data: */
|
|
3331 void write_fmt_string (Lisp_Object stream, const CIntbyte *fmt, ...);
|
|
3332 void write_fmt_string_lisp (Lisp_Object stream, const CIntbyte *fmt,
|
|
3333 int nargs, ...);
|
|
3334 void stderr_out (const CIntbyte *, ...) PRINTF_ARGS (1, 2);
|
|
3335 void stderr_out_lisp (const CIntbyte *, int nargs, ...);
|
|
3336 void stdout_out (const CIntbyte *, ...) PRINTF_ARGS (1, 2);
|
|
3337 void debug_out (const CIntbyte *, ...) PRINTF_ARGS (1, 2);
|
|
3338 DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS (fatal (const CIntbyte *,
|
|
3339 ...), 1, 2);
|
|
3340
|
|
3341 /* Internal functions: */
|
|
3342 void temp_output_buffer_setup (Lisp_Object);
|
|
3343 void temp_output_buffer_show (Lisp_Object, Lisp_Object);
|
428
|
3344 void print_cons (Lisp_Object, Lisp_Object, int);
|
|
3345 void print_vector (Lisp_Object, Lisp_Object, int);
|
|
3346 void print_string (Lisp_Object, Lisp_Object, int);
|
771
|
3347 void print_symbol (Lisp_Object, Lisp_Object, int);
|
|
3348 void print_float (Lisp_Object, Lisp_Object, int);
|
603
|
3349 /* The number of bytes required to store the decimal printed
|
|
3350 representation of an integral type. Add a few bytes for truncation,
|
|
3351 optional sign prefix, and null byte terminator.
|
614
|
3352 2.40824 == log (256) / log (10).
|
|
3353
|
|
3354 We don't use floating point since Sun cc (buggily?) cannot use
|
|
3355 floating point computations to define a compile-time integral
|
|
3356 constant. */
|
603
|
3357 #define DECIMAL_PRINT_SIZE(integral_type) \
|
614
|
3358 (((2410824 * sizeof (integral_type)) / 1000000) + 3)
|
577
|
3359 void long_to_string (char *, long);
|
428
|
3360 extern int print_escape_newlines;
|
|
3361 extern int print_readably;
|
|
3362 Lisp_Object internal_with_output_to_temp_buffer (Lisp_Object,
|
|
3363 Lisp_Object (*) (Lisp_Object),
|
|
3364 Lisp_Object, Lisp_Object);
|
|
3365 void float_to_string (char *, double);
|
|
3366 void internal_object_printer (Lisp_Object, Lisp_Object, int);
|
771
|
3367 void debug_short_backtrace (int);
|
|
3368 void debug_backtrace (void);
|
428
|
3369
|
563
|
3370 /* Defined in process.c */
|
|
3371 DECLARE_DOESNT_RETURN (report_process_error (const char *, Lisp_Object));
|
|
3372 DECLARE_DOESNT_RETURN (report_network_error (const char *, Lisp_Object));
|
|
3373
|
428
|
3374 /* Defined in profile.c */
|
|
3375 void mark_profiling_info (void);
|
|
3376 void profile_increase_call_count (Lisp_Object);
|
|
3377 extern int profiling_active;
|
|
3378 extern int profiling_redisplay_flag;
|
|
3379
|
|
3380 /* Defined in rangetab.c */
|
|
3381 void put_range_table (Lisp_Object, EMACS_INT, EMACS_INT, Lisp_Object);
|
|
3382 int unified_range_table_bytes_needed (Lisp_Object);
|
|
3383 int unified_range_table_bytes_used (void *);
|
|
3384 void unified_range_table_copy_data (Lisp_Object, void *);
|
|
3385 Lisp_Object unified_range_table_lookup (void *, EMACS_INT, Lisp_Object);
|
|
3386 int unified_range_table_nentries (void *);
|
|
3387 void unified_range_table_get_range (void *, int, EMACS_INT *, EMACS_INT *,
|
|
3388 Lisp_Object *);
|
|
3389
|
|
3390 /* Defined in search.c */
|
|
3391 struct re_pattern_buffer;
|
|
3392 struct re_registers;
|
665
|
3393 Charbpos scan_buffer (struct buffer *, Emchar, Charbpos, Charbpos, EMACS_INT, EMACS_INT *, int);
|
|
3394 Charbpos find_next_newline (struct buffer *, Charbpos, int);
|
|
3395 Charbpos find_next_newline_no_quit (struct buffer *, Charbpos, int);
|
|
3396 Bytebpos bi_find_next_newline_no_quit (struct buffer *, Bytebpos, int);
|
|
3397 Bytebpos bi_find_next_emchar_in_string (Lisp_String*, Emchar, Bytebpos, EMACS_INT);
|
|
3398 Charbpos find_before_next_newline (struct buffer *, Charbpos, Charbpos, int);
|
428
|
3399 struct re_pattern_buffer *compile_pattern (Lisp_Object, struct re_registers *,
|
578
|
3400 Lisp_Object, int, Error_Behavior);
|
665
|
3401 Bytecount fast_string_match (Lisp_Object, const Intbyte *,
|
428
|
3402 Lisp_Object, Bytecount,
|
578
|
3403 Bytecount, int, Error_Behavior, int);
|
428
|
3404 Bytecount fast_lisp_string_match (Lisp_Object, Lisp_Object);
|
|
3405 void restore_match_data (void);
|
507
|
3406 extern Fixnum warn_about_possibly_incompatible_back_references;
|
502
|
3407
|
428
|
3408
|
|
3409 /* Defined in signal.c */
|
|
3410 void init_interrupts_late (void);
|
771
|
3411 int begin_dont_check_for_quit (void);
|
428
|
3412
|
|
3413 /* Defined in sound.c */
|
|
3414 void init_device_sound (struct device *);
|
563
|
3415 DECLARE_DOESNT_RETURN (report_sound_error (const Char_ASCII *, Lisp_Object));
|
428
|
3416
|
|
3417 /* Defined in specifier.c */
|
|
3418 Lisp_Object specifier_instance (Lisp_Object, Lisp_Object, Lisp_Object,
|
578
|
3419 Error_Behavior, int, int, Lisp_Object);
|
428
|
3420 Lisp_Object specifier_instance_no_quit (Lisp_Object, Lisp_Object, Lisp_Object,
|
578
|
3421 Error_Behavior, int, Lisp_Object);
|
428
|
3422
|
|
3423 /* Defined in symbols.c */
|
665
|
3424 unsigned int hash_string (const Intbyte *, Bytecount);
|
771
|
3425 Lisp_Object intern_int (const Intbyte *str);
|
|
3426 Lisp_Object intern (const CIntbyte *str);
|
665
|
3427 Lisp_Object oblookup (Lisp_Object, const Intbyte *, Bytecount);
|
428
|
3428 void map_obarray (Lisp_Object, int (*) (Lisp_Object, void *), void *);
|
|
3429 Lisp_Object indirect_function (Lisp_Object, int);
|
|
3430 Lisp_Object symbol_value_in_buffer (Lisp_Object, Lisp_Object);
|
|
3431 void kill_buffer_local_variables (struct buffer *);
|
|
3432 int symbol_value_buffer_local_info (Lisp_Object, struct buffer *);
|
|
3433 Lisp_Object find_symbol_value (Lisp_Object);
|
|
3434 Lisp_Object find_symbol_value_quickly (Lisp_Object, int);
|
|
3435 Lisp_Object top_level_value (Lisp_Object);
|
|
3436 void reject_constant_symbols (Lisp_Object sym, Lisp_Object newval,
|
|
3437 int function_p,
|
|
3438 Lisp_Object follow_past_lisp_magic);
|
|
3439
|
|
3440 /* Defined in syntax.c */
|
665
|
3441 Charbpos scan_words (struct buffer *, Charbpos, int);
|
428
|
3442
|
771
|
3443 /* Defined in sysdep.c */
|
|
3444 long get_random (void);
|
|
3445 void seed_random (long arg);
|
|
3446
|
|
3447 /* Defined in text.c */
|
|
3448 void find_charsets_in_intbyte_string (unsigned char *charsets,
|
|
3449 const Intbyte *str,
|
|
3450 Bytecount len);
|
|
3451 void find_charsets_in_emchar_string (unsigned char *charsets,
|
|
3452 const Emchar *str,
|
|
3453 Charcount len);
|
|
3454 int intbyte_string_displayed_columns (const Intbyte *str, Bytecount len);
|
|
3455 int emchar_string_displayed_columns (const Emchar *str, Charcount len);
|
|
3456 Charcount intbyte_string_nonascii_chars (const Intbyte *str, Bytecount len);
|
|
3457 void convert_intbyte_string_into_emchar_dynarr (const Intbyte *str,
|
|
3458 Bytecount len,
|
|
3459 Emchar_dynarr *dyn);
|
|
3460 Charcount convert_intbyte_string_into_emchar_string (const Intbyte *str,
|
|
3461 Bytecount len,
|
|
3462 Emchar *arr);
|
|
3463 void convert_emchar_string_into_intbyte_dynarr (Emchar *arr, int nels,
|
|
3464 Intbyte_dynarr *dyn);
|
|
3465 Intbyte *convert_emchar_string_into_malloced_string (Emchar *arr, int nels,
|
|
3466 Bytecount *len_out);
|
|
3467
|
|
3468 /* flags for get_buffer_pos_char(), get_buffer_range_char(), etc. */
|
|
3469 /* At most one of GB_COERCE_RANGE and GB_NO_ERROR_IF_BAD should be
|
|
3470 specified. At most one of GB_NEGATIVE_FROM_END and GB_NO_ERROR_IF_BAD
|
|
3471 should be specified. */
|
|
3472
|
|
3473 #define GB_ALLOW_PAST_ACCESSIBLE (1 << 0)
|
|
3474 #define GB_ALLOW_NIL (1 << 1)
|
|
3475 #define GB_CHECK_ORDER (1 << 2)
|
|
3476 #define GB_COERCE_RANGE (1 << 3)
|
|
3477 #define GB_NO_ERROR_IF_BAD (1 << 4)
|
|
3478 #define GB_NEGATIVE_FROM_END (1 << 5)
|
|
3479 #define GB_HISTORICAL_STRING_BEHAVIOR (GB_NEGATIVE_FROM_END | GB_ALLOW_NIL)
|
|
3480
|
|
3481 Charbpos get_buffer_pos_char (struct buffer *b, Lisp_Object pos,
|
|
3482 unsigned int flags);
|
|
3483 Bytebpos get_buffer_pos_byte (struct buffer *b, Lisp_Object pos,
|
|
3484 unsigned int flags);
|
|
3485 void get_buffer_range_char (struct buffer *b, Lisp_Object from, Lisp_Object to,
|
|
3486 Charbpos *from_out, Charbpos *to_out,
|
|
3487 unsigned int flags);
|
|
3488 void get_buffer_range_byte (struct buffer *b, Lisp_Object from, Lisp_Object to,
|
|
3489 Bytebpos *from_out, Bytebpos *to_out,
|
|
3490 unsigned int flags);
|
|
3491 Charcount get_string_pos_char (Lisp_Object string, Lisp_Object pos,
|
|
3492 unsigned int flags);
|
|
3493 Bytecount get_string_pos_byte (Lisp_Object string, Lisp_Object pos,
|
|
3494 unsigned int flags);
|
|
3495 void get_string_range_char (Lisp_Object string, Lisp_Object from,
|
|
3496 Lisp_Object to, Charcount *from_out,
|
|
3497 Charcount *to_out, unsigned int flags);
|
|
3498 void get_string_range_byte (Lisp_Object string, Lisp_Object from,
|
|
3499 Lisp_Object to, Bytecount *from_out,
|
|
3500 Bytecount *to_out, unsigned int flags);
|
|
3501 Charbpos get_buffer_or_string_pos_char (Lisp_Object object, Lisp_Object pos,
|
|
3502 unsigned int flags);
|
|
3503 Bytebpos get_buffer_or_string_pos_byte (Lisp_Object object, Lisp_Object pos,
|
|
3504 unsigned int flags);
|
|
3505 void get_buffer_or_string_range_char (Lisp_Object object, Lisp_Object from,
|
|
3506 Lisp_Object to, Charbpos *from_out,
|
|
3507 Charbpos *to_out, unsigned int flags);
|
|
3508 void get_buffer_or_string_range_byte (Lisp_Object object, Lisp_Object from,
|
|
3509 Lisp_Object to, Bytebpos *from_out,
|
|
3510 Bytebpos *to_out, unsigned int flags);
|
|
3511 Charbpos buffer_or_string_accessible_begin_char (Lisp_Object object);
|
|
3512 Charbpos buffer_or_string_accessible_end_char (Lisp_Object object);
|
|
3513 Bytebpos buffer_or_string_accessible_begin_byte (Lisp_Object object);
|
|
3514 Bytebpos buffer_or_string_accessible_end_byte (Lisp_Object object);
|
|
3515 Charbpos buffer_or_string_absolute_begin_char (Lisp_Object object);
|
|
3516 Charbpos buffer_or_string_absolute_end_char (Lisp_Object object);
|
|
3517 Bytebpos buffer_or_string_absolute_begin_byte (Lisp_Object object);
|
|
3518 Bytebpos buffer_or_string_absolute_end_byte (Lisp_Object object);
|
|
3519
|
|
3520 #ifdef ENABLE_COMPOSITE_CHARS
|
|
3521
|
|
3522 Emchar lookup_composite_char (Intbyte *str, int len);
|
|
3523 Lisp_Object composite_char_string (Emchar ch);
|
|
3524 #endif /* ENABLE_COMPOSITE_CHARS */
|
|
3525
|
|
3526 EXFUN (Ffind_charset, 1);
|
|
3527 EXFUN (Fget_charset, 1);
|
|
3528 EXFUN (Fcharset_list, 0);
|
|
3529
|
|
3530 extern Lisp_Object Vcharset_ascii;
|
|
3531 extern Lisp_Object Vcharset_control_1;
|
|
3532 extern Lisp_Object Vcharset_latin_iso8859_1;
|
|
3533 extern Lisp_Object Vcharset_latin_iso8859_2;
|
|
3534 extern Lisp_Object Vcharset_latin_iso8859_3;
|
|
3535 extern Lisp_Object Vcharset_latin_iso8859_4;
|
|
3536 extern Lisp_Object Vcharset_thai_tis620;
|
|
3537 extern Lisp_Object Vcharset_greek_iso8859_7;
|
|
3538 extern Lisp_Object Vcharset_arabic_iso8859_6;
|
|
3539 extern Lisp_Object Vcharset_hebrew_iso8859_8;
|
|
3540 extern Lisp_Object Vcharset_katakana_jisx0201;
|
|
3541 extern Lisp_Object Vcharset_latin_jisx0201;
|
|
3542 extern Lisp_Object Vcharset_cyrillic_iso8859_5;
|
|
3543 extern Lisp_Object Vcharset_latin_iso8859_9;
|
|
3544 extern Lisp_Object Vcharset_japanese_jisx0208_1978;
|
|
3545 extern Lisp_Object Vcharset_chinese_gb2312;
|
|
3546 extern Lisp_Object Vcharset_japanese_jisx0208;
|
|
3547 extern Lisp_Object Vcharset_korean_ksc5601;
|
|
3548 extern Lisp_Object Vcharset_japanese_jisx0212;
|
|
3549 extern Lisp_Object Vcharset_chinese_cns11643_1;
|
|
3550 extern Lisp_Object Vcharset_chinese_cns11643_2;
|
|
3551 extern Lisp_Object Vcharset_chinese_big5_1;
|
|
3552 extern Lisp_Object Vcharset_chinese_big5_2;
|
|
3553 extern Lisp_Object Vcharset_composite;
|
|
3554
|
|
3555 Emchar Lstream_get_emchar_1 (Lstream *stream, int first_char);
|
|
3556 int Lstream_fput_emchar (Lstream *stream, Emchar ch);
|
|
3557 void Lstream_funget_emchar (Lstream *stream, Emchar ch);
|
|
3558
|
|
3559 DECLARE_INLINE_HEADER (Intbyte *qxestrdup (const Intbyte *s))
|
|
3560 {
|
|
3561 return (Intbyte *) xstrdup ((const char *) s);
|
|
3562 }
|
|
3563
|
|
3564 DECLARE_INLINE_HEADER (Bytecount qxestrlen (const Intbyte *s))
|
|
3565 {
|
|
3566 return strlen ((const char *) s);
|
|
3567 }
|
|
3568
|
|
3569 DECLARE_INLINE_HEADER (Charcount qxestrcharlen (const Intbyte *s))
|
|
3570 {
|
|
3571 return bytecount_to_charcount (s, qxestrlen (s));
|
|
3572 }
|
|
3573
|
|
3574 DECLARE_INLINE_HEADER (int qxestrcmp (const Intbyte *s1,
|
|
3575 const Intbyte *s2))
|
|
3576 {
|
|
3577 return strcmp ((const char *) s1, (const char *) s2);
|
|
3578 }
|
|
3579
|
|
3580 DECLARE_INLINE_HEADER (int qxestrcmp_c (const Intbyte *s1,
|
|
3581 const char *s2))
|
|
3582 {
|
|
3583 return strcmp ((const char *) s1, s2);
|
|
3584 }
|
|
3585
|
|
3586 DECLARE_INLINE_HEADER (int qxestrncmp (const Intbyte *string1,
|
|
3587 const Intbyte *string2,
|
|
3588 Bytecount count))
|
|
3589 {
|
|
3590 return strncmp ((const char *) string1, (const char *) string2,
|
|
3591 (size_t) count);
|
|
3592 }
|
|
3593
|
|
3594 DECLARE_INLINE_HEADER (int qxestrncmp_c (const Intbyte *string1,
|
|
3595 const char *string2,
|
|
3596 Bytecount count))
|
|
3597 {
|
|
3598 return strncmp ((const char *) string1, string2, (size_t) count);
|
|
3599 }
|
|
3600
|
|
3601 DECLARE_INLINE_HEADER (Intbyte *qxestrcpy (Intbyte *strDest,
|
|
3602 const Intbyte *strSource))
|
|
3603 {
|
|
3604 return (Intbyte *) strcpy ((char *) strDest, (const char *) strSource);
|
|
3605 }
|
|
3606
|
|
3607 DECLARE_INLINE_HEADER (Intbyte *qxestrcpy_c (Intbyte *strDest,
|
|
3608 const char *strSource))
|
|
3609 {
|
|
3610 return (Intbyte *) strcpy ((char *) strDest, strSource);
|
|
3611 }
|
|
3612
|
|
3613 DECLARE_INLINE_HEADER (Intbyte *qxestrncpy (Intbyte *strDest,
|
|
3614 const Intbyte *strSource,
|
|
3615 Bytecount count))
|
|
3616 {
|
|
3617 return (Intbyte *) strncpy ((char *) strDest, (const char *) strSource,
|
|
3618 (size_t) count);
|
|
3619 }
|
|
3620
|
|
3621 DECLARE_INLINE_HEADER (Intbyte *qxestrncpy_c (Intbyte *strDest,
|
|
3622 const char *strSource,
|
|
3623 Bytecount count))
|
|
3624 {
|
|
3625 return (Intbyte *) strncpy ((char *) strDest, strSource, (size_t) count);
|
|
3626 }
|
|
3627
|
|
3628 DECLARE_INLINE_HEADER (Intbyte *qxestrcat (Intbyte *strDest,
|
|
3629 const Intbyte *strSource))
|
|
3630 {
|
|
3631 return (Intbyte *) strcat ((char *) strDest, (const char *) strSource);
|
|
3632 }
|
|
3633
|
|
3634 DECLARE_INLINE_HEADER (Intbyte *qxestrcat_c (Intbyte *strDest,
|
|
3635 const char *strSource))
|
|
3636 {
|
|
3637 return (Intbyte *) strcat ((char *) strDest, strSource);
|
|
3638 }
|
|
3639
|
|
3640 DECLARE_INLINE_HEADER (Intbyte *qxestrncat (Intbyte *strDest,
|
|
3641 const Intbyte *strSource,
|
|
3642 Bytecount count))
|
|
3643 {
|
|
3644 return (Intbyte *) strncat ((char *) strDest, (const char *) strSource,
|
|
3645 (size_t) count);
|
|
3646 }
|
|
3647
|
|
3648 DECLARE_INLINE_HEADER (Intbyte *qxestrncat_c (Intbyte *strDest,
|
|
3649 const char *strSource,
|
|
3650 Bytecount count))
|
|
3651 {
|
|
3652 return (Intbyte *) strncat ((char *) strDest, strSource, (size_t) count);
|
|
3653 }
|
|
3654
|
|
3655 DECLARE_INLINE_HEADER (Intbyte *qxestrchr (const Intbyte *s, Emchar c))
|
|
3656 {
|
|
3657 assert (c >= 0 && c <= 255);
|
|
3658 return (Intbyte *) strchr ((const char *) s, c);
|
|
3659 }
|
|
3660
|
|
3661 DECLARE_INLINE_HEADER (Intbyte *qxestrrchr (const Intbyte *s, Emchar c))
|
|
3662 {
|
|
3663 assert (c >= 0 && c <= 255);
|
|
3664 return (Intbyte *) strrchr ((const char *) s, c);
|
|
3665 }
|
|
3666
|
|
3667 DECLARE_INLINE_HEADER (Intbyte *qxestrstr (const Intbyte *string1,
|
|
3668 const Intbyte *string2))
|
|
3669 {
|
|
3670 return (Intbyte *) strstr ((const char *) string1, (const char *) string2);
|
|
3671 }
|
|
3672
|
|
3673 DECLARE_INLINE_HEADER (Bytecount qxestrcspn (const Intbyte *string,
|
|
3674 const CIntbyte *strCharSet))
|
|
3675 {
|
|
3676 return (Bytecount) strcspn ((const char *) string, strCharSet);
|
|
3677 }
|
|
3678
|
|
3679 DECLARE_INLINE_HEADER (Bytecount qxestrspn (const Intbyte *string,
|
|
3680 const CIntbyte *strCharSet))
|
|
3681 {
|
|
3682 return (Bytecount) strspn ((const char *) string, strCharSet);
|
|
3683 }
|
|
3684
|
|
3685 DECLARE_INLINE_HEADER (Intbyte *qxestrpbrk (const Intbyte *string,
|
|
3686 const CIntbyte *strCharSet))
|
|
3687 {
|
|
3688 return (Intbyte *) strpbrk ((const char *) string, strCharSet);
|
|
3689 }
|
|
3690
|
|
3691 DECLARE_INLINE_HEADER (Intbyte *qxestrtok (Intbyte *strToken,
|
|
3692 const CIntbyte *strDelimit))
|
|
3693 {
|
|
3694 return (Intbyte *) strtok ((char *) strToken, strDelimit);
|
|
3695 }
|
|
3696
|
|
3697 DECLARE_INLINE_HEADER (double qxestrtod (const Intbyte *nptr,
|
|
3698 Intbyte **endptr))
|
|
3699 {
|
|
3700 return strtod ((const char *) nptr, (char **) endptr);
|
|
3701 }
|
|
3702
|
|
3703 DECLARE_INLINE_HEADER (long qxestrtol (const Intbyte *nptr, Intbyte **endptr,
|
|
3704 int base))
|
|
3705 {
|
|
3706 return strtol ((const char *) nptr, (char **) endptr, base);
|
|
3707 }
|
|
3708
|
|
3709 DECLARE_INLINE_HEADER (unsigned long qxestrtoul (const Intbyte *nptr,
|
|
3710 Intbyte **endptr,
|
|
3711 int base))
|
|
3712 {
|
|
3713 return strtoul ((const char *) nptr, (char **) endptr, base);
|
|
3714 }
|
|
3715
|
|
3716 DECLARE_INLINE_HEADER (int qxeatoi (const Intbyte *string))
|
|
3717 {
|
|
3718 return atoi ((const char *) string);
|
|
3719 }
|
|
3720
|
|
3721 int qxesprintf (Intbyte *buffer, const CIntbyte *format, ...)
|
|
3722 PRINTF_ARGS (2, 3);
|
|
3723
|
|
3724 /* Do not use POSIX locale routines. Not Mule-correct. */
|
|
3725 #define qxestrcoll DO NOT USE.
|
|
3726 #define qxestrxfrm DO NOT USE.
|
|
3727
|
|
3728 int qxestrcasecmp (const Intbyte *s1, const Intbyte *s2);
|
|
3729 int qxestrcasecmp_c (const Intbyte *s1, const Char_ASCII *s2);
|
|
3730 int qxestrcasecmp_i18n (const Intbyte *s1, const Intbyte *s2);
|
|
3731 int ascii_strcasecmp (const Char_ASCII *s1, const Char_ASCII *s2);
|
|
3732 int lisp_strcasecmp (Lisp_Object s1, Lisp_Object s2);
|
|
3733 int lisp_strcasecmp_i18n (Lisp_Object s1, Lisp_Object s2);
|
|
3734 int qxestrncasecmp (const Intbyte *s1, const Intbyte *s2, Bytecount len);
|
|
3735 int qxestrncasecmp_c (const Intbyte *s1, const Char_ASCII *s2, Bytecount len);
|
|
3736 int qxestrncasecmp_i18n (const Intbyte *s1, const Intbyte *s2, Bytecount len);
|
|
3737 int ascii_strncasecmp (const Char_ASCII *s1, const Char_ASCII *s2,
|
|
3738 Bytecount len);
|
|
3739 int qxememcmp (const Intbyte *s1, const Intbyte *s2, Bytecount len);
|
|
3740 int qxememcasecmp (const Intbyte *s1, const Intbyte *s2, Bytecount len);
|
|
3741 int qxememcasecmp_i18n (const Intbyte *s1, const Intbyte *s2, Bytecount len);
|
|
3742
|
|
3743 void buffer_mule_signal_inserted_region (struct buffer *buf, Charbpos start,
|
|
3744 Bytecount bytelength,
|
|
3745 Charcount charlength);
|
|
3746 void buffer_mule_signal_deleted_region (struct buffer *buf, Charbpos start,
|
|
3747 Charbpos end, Bytebpos bi_start,
|
|
3748 Bytebpos bi_end);
|
|
3749
|
|
3750 /* Defined in unicode.c */
|
|
3751 extern const struct struct_description to_unicode_description[];
|
|
3752 extern const struct struct_description from_unicode_description[];
|
|
3753 void init_charset_unicode_tables (Lisp_Object charset);
|
|
3754 void free_charset_unicode_tables (Lisp_Object charset);
|
|
3755 void recalculate_unicode_precedence (void);
|
|
3756 extern Lisp_Object Qunicode;
|
|
3757 extern Lisp_Object Qutf_16, Qutf_8, Qucs_4, Qutf_7;
|
|
3758 #ifdef MEMORY_USAGE_STATS
|
|
3759 Bytecount compute_from_unicode_table_size (Lisp_Object charset,
|
|
3760 struct overhead_stats *stats);
|
|
3761 Bytecount compute_to_unicode_table_size (Lisp_Object charset,
|
|
3762 struct overhead_stats *stats);
|
|
3763 #endif /* MEMORY_USAGE_STATS */
|
|
3764
|
428
|
3765 /* Defined in undo.c */
|
|
3766 Lisp_Object truncate_undo_list (Lisp_Object, int, int);
|
|
3767 void record_extent (Lisp_Object, int);
|
665
|
3768 void record_insert (struct buffer *, Charbpos, Charcount);
|
|
3769 void record_delete (struct buffer *, Charbpos, Charcount);
|
|
3770 void record_change (struct buffer *, Charbpos, Charcount);
|
428
|
3771
|
|
3772 /* Defined in unex*.c */
|
|
3773 int unexec (char *, char *, uintptr_t, uintptr_t, uintptr_t);
|
|
3774 #ifdef RUN_TIME_REMAP
|
|
3775 int run_time_remap (char *);
|
|
3776 #endif
|
|
3777
|
|
3778 /* Defined in vm-limit.c */
|
442
|
3779 void memory_warnings (void *, void (*) (const char *));
|
428
|
3780
|
|
3781 /* Defined in window.c */
|
|
3782 Lisp_Object save_window_excursion_unwind (Lisp_Object);
|
|
3783 Lisp_Object display_buffer (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3784
|
442
|
3785 /*--------------- prototypes for Lisp primitives in C ------------*/
|
|
3786
|
428
|
3787 /* The following were machine generated 19980312 */
|
|
3788
|
|
3789 EXFUN (Faccept_process_output, 3);
|
|
3790 EXFUN (Fadd1, 1);
|
|
3791 EXFUN (Fadd_spec_to_specifier, 5);
|
|
3792 EXFUN (Fadd_timeout, 4);
|
|
3793 EXFUN (Fappend, MANY);
|
|
3794 EXFUN (Fapply, MANY);
|
|
3795 EXFUN (Faref, 2);
|
|
3796 EXFUN (Faset, 3);
|
|
3797 EXFUN (Fassoc, 2);
|
|
3798 EXFUN (Fassq, 2);
|
|
3799 EXFUN (Fbacktrace, 2);
|
|
3800 EXFUN (Fbeginning_of_line, 2);
|
|
3801 EXFUN (Fbobp, 1);
|
|
3802 EXFUN (Fbolp, 1);
|
|
3803 EXFUN (Fboundp, 1);
|
|
3804 EXFUN (Fbuffer_substring, 3);
|
|
3805 EXFUN (Fbuilt_in_variable_type, 1);
|
|
3806 EXFUN (Fbyte_code, 3);
|
|
3807 EXFUN (Fcall_interactively, 3);
|
|
3808 EXFUN (Fcanonicalize_lax_plist, 2);
|
|
3809 EXFUN (Fcanonicalize_plist, 2);
|
|
3810 EXFUN (Fcar, 1);
|
|
3811 EXFUN (Fcar_safe, 1);
|
|
3812 EXFUN (Fcdr, 1);
|
|
3813 EXFUN (Fchar_after, 2);
|
|
3814 EXFUN (Fchar_to_string, 1);
|
|
3815 EXFUN (Fcheck_valid_plist, 1);
|
442
|
3816 EXFUN (Fvalid_plist_p, 1);
|
428
|
3817 EXFUN (Fclear_range_table, 1);
|
|
3818 EXFUN (Fcommand_execute, 3);
|
|
3819 EXFUN (Fcommandp, 1);
|
|
3820 EXFUN (Fconcat, MANY);
|
|
3821 EXFUN (Fcons, 2);
|
|
3822 EXFUN (Fcopy_alist, 1);
|
|
3823 EXFUN (Fcopy_event, 2);
|
|
3824 EXFUN (Fcopy_list, 1);
|
|
3825 EXFUN (Fcopy_marker, 2);
|
|
3826 EXFUN (Fcopy_sequence, 1);
|
|
3827 EXFUN (Fcopy_tree, 2);
|
|
3828 EXFUN (Fcurrent_window_configuration, 1);
|
|
3829 EXFUN (Fdefault_boundp, 1);
|
|
3830 EXFUN (Fdefault_value, 1);
|
|
3831 EXFUN (Fdefine_key, 3);
|
442
|
3832 EXFUN (Fdelete, 2);
|
428
|
3833 EXFUN (Fdelete_region, 3);
|
|
3834 EXFUN (Fdelete_process, 1);
|
|
3835 EXFUN (Fdelq, 2);
|
|
3836 EXFUN (Fdestructive_alist_to_plist, 1);
|
|
3837 EXFUN (Fdgettext, 2);
|
|
3838 EXFUN (Fding, 3);
|
|
3839 EXFUN (Fdirectory_file_name, 1);
|
|
3840 EXFUN (Fdisable_timeout, 1);
|
|
3841 EXFUN (Fdiscard_input, 0);
|
|
3842 EXFUN (Fdispatch_event, 1);
|
|
3843 EXFUN (Fdisplay_error, 2);
|
|
3844 EXFUN (Fdo_auto_save, 2);
|
|
3845 EXFUN (Fdowncase, 2);
|
|
3846 EXFUN (Felt, 2);
|
|
3847 EXFUN (Fend_of_line, 2);
|
|
3848 EXFUN (Fenqueue_eval_event, 2);
|
|
3849 EXFUN (Feobp, 1);
|
|
3850 EXFUN (Feolp, 1);
|
|
3851 EXFUN (Fequal, 2);
|
|
3852 EXFUN (Ferror_message_string, 1);
|
|
3853 EXFUN (Feval, 1);
|
|
3854 EXFUN (Fevent_to_character, 4);
|
|
3855 EXFUN (Fexecute_kbd_macro, 2);
|
|
3856 EXFUN (Fexpand_abbrev, 0);
|
|
3857 EXFUN (Fexpand_file_name, 2);
|
|
3858 EXFUN (Fextent_at, 5);
|
|
3859 EXFUN (Fextent_property, 3);
|
|
3860 EXFUN (Ffboundp, 1);
|
|
3861 EXFUN (Ffile_accessible_directory_p, 1);
|
|
3862 EXFUN (Ffile_directory_p, 1);
|
|
3863 EXFUN (Ffile_executable_p, 1);
|
|
3864 EXFUN (Ffile_exists_p, 1);
|
|
3865 EXFUN (Ffile_name_absolute_p, 1);
|
|
3866 EXFUN (Ffile_name_as_directory, 1);
|
|
3867 EXFUN (Ffile_name_directory, 1);
|
|
3868 EXFUN (Ffile_name_nondirectory, 1);
|
|
3869 EXFUN (Ffile_readable_p, 1);
|
|
3870 EXFUN (Ffile_symlink_p, 1);
|
|
3871 EXFUN (Ffile_truename, 2);
|
|
3872 EXFUN (Ffind_file_name_handler, 2);
|
|
3873 EXFUN (Ffollowing_char, 1);
|
|
3874 EXFUN (Fformat, MANY);
|
|
3875 EXFUN (Fforward_char, 2);
|
|
3876 EXFUN (Fforward_line, 2);
|
|
3877 EXFUN (Ffset, 2);
|
|
3878 EXFUN (Ffuncall, MANY);
|
442
|
3879 EXFUN (Ffunctionp, 1);
|
428
|
3880 EXFUN (Fgeq, MANY);
|
|
3881 EXFUN (Fget, 3);
|
|
3882 EXFUN (Fget_buffer_process, 1);
|
|
3883 EXFUN (Fget_process, 1);
|
|
3884 EXFUN (Fget_range_table, 3);
|
|
3885 EXFUN (Fgettext, 1);
|
|
3886 EXFUN (Fgoto_char, 2);
|
|
3887 EXFUN (Fgtr, MANY);
|
|
3888 EXFUN (Findent_to, 3);
|
|
3889 EXFUN (Findirect_function, 1);
|
|
3890 EXFUN (Finsert, MANY);
|
|
3891 EXFUN (Finsert_buffer_substring, 3);
|
|
3892 EXFUN (Finsert_char, 4);
|
|
3893 EXFUN (Finsert_file_contents_internal, 7);
|
|
3894 EXFUN (Finteractive_p, 0);
|
|
3895 EXFUN (Fintern, 2);
|
|
3896 EXFUN (Fintern_soft, 2);
|
|
3897 EXFUN (Fkey_description, 1);
|
|
3898 EXFUN (Fkill_emacs, 1);
|
|
3899 EXFUN (Fkill_local_variable, 1);
|
442
|
3900 EXFUN (Flast, 2);
|
428
|
3901 EXFUN (Flax_plist_get, 3);
|
|
3902 EXFUN (Flax_plist_remprop, 2);
|
|
3903 EXFUN (Flength, 1);
|
|
3904 EXFUN (Fleq, MANY);
|
|
3905 EXFUN (Flist, MANY);
|
|
3906 EXFUN (Flistp, 1);
|
|
3907 EXFUN (Flist_modules, 0);
|
|
3908 EXFUN (Fload_module, 3);
|
440
|
3909 EXFUN (Flookup_key, 3);
|
428
|
3910 EXFUN (Flss, MANY);
|
|
3911 EXFUN (Fmake_byte_code, MANY);
|
771
|
3912 EXFUN (Fmake_charset, 3);
|
428
|
3913 EXFUN (Fmake_glyph_internal, 1);
|
|
3914 EXFUN (Fmake_list, 2);
|
|
3915 EXFUN (Fmake_marker, 0);
|
|
3916 EXFUN (Fmake_range_table, 0);
|
771
|
3917 EXFUN (Fmake_temp_name, 1);
|
428
|
3918 EXFUN (Fmake_sparse_keymap, 1);
|
|
3919 EXFUN (Fmake_string, 2);
|
|
3920 EXFUN (Fmake_symbol, 1);
|
|
3921 EXFUN (Fmake_vector, 2);
|
|
3922 EXFUN (Fmapcar, 2);
|
|
3923 EXFUN (Fmarker_buffer, 1);
|
|
3924 EXFUN (Fmarker_position, 1);
|
|
3925 EXFUN (Fmatch_beginning, 1);
|
|
3926 EXFUN (Fmatch_end, 1);
|
|
3927 EXFUN (Fmax, MANY);
|
|
3928 EXFUN (Fmember, 2);
|
|
3929 EXFUN (Fmemq, 2);
|
|
3930 EXFUN (Fmin, MANY);
|
|
3931 EXFUN (Fminus, MANY);
|
|
3932 EXFUN (Fnarrow_to_region, 3);
|
|
3933 EXFUN (Fnconc, MANY);
|
|
3934 EXFUN (Fnext_event, 2);
|
|
3935 EXFUN (Fnreverse, 1);
|
|
3936 EXFUN (Fnthcdr, 2);
|
|
3937 EXFUN (Fnumber_to_string, 1);
|
|
3938 EXFUN (Fold_assq, 2);
|
|
3939 EXFUN (Fold_equal, 2);
|
|
3940 EXFUN (Fold_member, 2);
|
|
3941 EXFUN (Fold_memq, 2);
|
|
3942 EXFUN (Fplist_get, 3);
|
|
3943 EXFUN (Fplist_member, 2);
|
|
3944 EXFUN (Fplist_put, 3);
|
|
3945 EXFUN (Fplus, MANY);
|
|
3946 EXFUN (Fpoint, 1);
|
|
3947 EXFUN (Fpoint_marker, 2);
|
|
3948 EXFUN (Fpoint_max, 1);
|
|
3949 EXFUN (Fpoint_min, 1);
|
|
3950 EXFUN (Fpreceding_char, 1);
|
|
3951 EXFUN (Fprefix_numeric_value, 1);
|
|
3952 EXFUN (Fprin1, 2);
|
|
3953 EXFUN (Fprin1_to_string, 2);
|
|
3954 EXFUN (Fprinc, 2);
|
|
3955 EXFUN (Fprint, 2);
|
|
3956 EXFUN (Fprocess_status, 1);
|
|
3957 EXFUN (Fprogn, UNEVALLED);
|
|
3958 EXFUN (Fprovide, 1);
|
|
3959 EXFUN (Fput, 3);
|
|
3960 EXFUN (Fput_range_table, 4);
|
|
3961 EXFUN (Fput_text_property, 5);
|
|
3962 EXFUN (Fquo, MANY);
|
|
3963 EXFUN (Frassq, 2);
|
|
3964 EXFUN (Fread, 1);
|
|
3965 EXFUN (Fread_key_sequence, 3);
|
|
3966 EXFUN (Freally_free, 1);
|
|
3967 EXFUN (Frem, 2);
|
|
3968 EXFUN (Fremassq, 2);
|
442
|
3969 EXFUN (Freplace_list, 2);
|
771
|
3970 EXFUN (Frunning_temacs_p, 0);
|
428
|
3971 EXFUN (Fselected_frame, 1);
|
|
3972 EXFUN (Fset, 2);
|
|
3973 EXFUN (Fset_default, 2);
|
|
3974 EXFUN (Fset_marker, 3);
|
|
3975 EXFUN (Fset_standard_case_table, 1);
|
|
3976 EXFUN (Fsetcar, 2);
|
|
3977 EXFUN (Fsetcdr, 2);
|
|
3978 EXFUN (Fsignal, 2);
|
|
3979 EXFUN (Fsit_for, 2);
|
|
3980 EXFUN (Fskip_chars_backward, 3);
|
|
3981 EXFUN (Fskip_chars_forward, 3);
|
|
3982 EXFUN (Fsleep_for, 1);
|
|
3983 EXFUN (Fsort, 2);
|
|
3984 EXFUN (Fspecifier_spec_list, 4);
|
|
3985 EXFUN (Fstring_equal, 2);
|
|
3986 EXFUN (Fstring_lessp, 2);
|
|
3987 EXFUN (Fstring_match, 4);
|
|
3988 EXFUN (Fsub1, 1);
|
|
3989 EXFUN (Fsubr_max_args, 1);
|
|
3990 EXFUN (Fsubr_min_args, 1);
|
|
3991 EXFUN (Fsubstitute_command_keys, 1);
|
|
3992 EXFUN (Fsubstitute_in_file_name, 1);
|
|
3993 EXFUN (Fsubstring, 3);
|
|
3994 EXFUN (Fsymbol_function, 1);
|
|
3995 EXFUN (Fsymbol_name, 1);
|
|
3996 EXFUN (Fsymbol_plist, 1);
|
|
3997 EXFUN (Fsymbol_value, 1);
|
|
3998 EXFUN (Fsystem_name, 0);
|
|
3999 EXFUN (Fthrow, 2);
|
|
4000 EXFUN (Ftimes, MANY);
|
|
4001 EXFUN (Ftruncate, 1);
|
|
4002 EXFUN (Fundo_boundary, 0);
|
|
4003 EXFUN (Funhandled_file_name_directory, 1);
|
|
4004 EXFUN (Funlock_buffer, 0);
|
|
4005 EXFUN (Fupcase, 2);
|
|
4006 EXFUN (Fupcase_initials, 2);
|
|
4007 EXFUN (Fupcase_initials_region, 3);
|
|
4008 EXFUN (Fupcase_region, 3);
|
|
4009 EXFUN (Fuser_home_directory, 0);
|
|
4010 EXFUN (Fuser_login_name, 1);
|
|
4011 EXFUN (Fvector, MANY);
|
|
4012 EXFUN (Fverify_visited_file_modtime, 1);
|
|
4013 EXFUN (Fvertical_motion, 3);
|
|
4014 EXFUN (Fwiden, 1);
|
|
4015
|
442
|
4016 /*--------------- prototypes for constant symbols ------------*/
|
|
4017
|
771
|
4018 /* Use the following when you have to add a bunch of symbols. */
|
|
4019
|
|
4020 /*
|
|
4021
|
|
4022 (defun redo-symbols (beg end)
|
|
4023 "Snarf any symbols out of the region and print them into a temporary buffer,
|
|
4024 which is displayed when the function finishes. The symbols are laid out with
|
|
4025 `extern Lisp_Object ' before each one, with as many as can fit on one line
|
|
4026 \(the maximum line width is controlled by the constant `max-line-length' in the
|
|
4027 code)."
|
|
4028 (interactive "r")
|
|
4029 (save-excursion
|
|
4030 (goto-char beg)
|
|
4031 (let (syms)
|
|
4032 (while (re-search-forward "\\s-\\(Q[A-Za-z_0-9]+\\)" end t)
|
|
4033 (push (match-string 1) syms))
|
|
4034 (setq syms (sort syms #'string-lessp))
|
|
4035 (with-output-to-temp-buffer "*Symbols*"
|
|
4036 (let* ((col 0)
|
|
4037 (start "extern Lisp_Object ")
|
|
4038 (startlen (length start))
|
|
4039 ;; with a default-width frame of 80 chars, you can only fit
|
|
4040 ;; 79 before wrapping. you can see this to a lower value if
|
|
4041 ;; you don't want it right up against the right margin.
|
|
4042 (max-line-length 79))
|
|
4043 (dolist (sym syms)
|
|
4044 (cond (;; if something already on line (this will always be the
|
|
4045 ;; case except the very first iteration), see what
|
|
4046 ;; space we've got. (need to take into account 2
|
|
4047 ;; for the comma+space, 1 for the semicolon at the
|
|
4048 ;; end.) if enough space, do it.
|
|
4049 (and (> col 0) (< (+ col (length sym) 2)
|
|
4050 (1- max-line-length)))
|
|
4051 (princ ", ")
|
|
4052 (princ sym)
|
|
4053 (incf col 2)
|
|
4054 (incf col (length sym)))
|
|
4055 (t
|
|
4056 ;; either we're first iteration or we ran out of space.
|
|
4057 ;; if the latter, terminate the previous line. this
|
|
4058 ;; loop is written on purpose so that it always prints
|
|
4059 ;; at least one item, even if that would go over.
|
|
4060 (when (> col 0)
|
|
4061 (princ ";\n")
|
|
4062 (setq col 0))
|
|
4063 (princ start)
|
|
4064 (incf col startlen)
|
|
4065 (princ sym)
|
|
4066 (incf col (length sym)))))
|
|
4067 ;; finally terminate the last line.
|
|
4068 (princ ";\n"))))))
|
|
4069
|
|
4070 */
|
|
4071
|
|
4072 extern Lisp_Object Qactivate_menubar_hook, Qarith_error, Qarrayp, Qautoload;
|
|
4073 extern Lisp_Object Qbackground, Qbackground_pixmap, Qbeginning_of_buffer;
|
|
4074 extern Lisp_Object Qbitp, Qblinking, Qbuffer_glyph_p, Qbuffer_live_p;
|
|
4075 extern Lisp_Object Qbuffer_read_only, Qbyte_code, Qcall_interactively;
|
|
4076 extern Lisp_Object Qcategory_designator_p, Qcategory_table_value_p, Qcdr;
|
|
4077 extern Lisp_Object Qchar_or_string_p, Qcharacterp, Qcircular_list;
|
|
4078 extern Lisp_Object Qcircular_property_list, Qcolor_pixmap_image_instance_p;
|
|
4079 extern Lisp_Object Qcommandp, Qcompletion_ignore_case, Qconsole_live_p;
|
|
4080 extern Lisp_Object Qconst_specifier, Qconversion_error, Qcurrent_menubar;
|
|
4081 extern Lisp_Object Qcyclic_variable_indirection, Qdefun, Qdevice_live_p, Qdim;
|
|
4082 extern Lisp_Object Qdirection, Qdisabled, Qdisabled_command_hook;
|
|
4083 extern Lisp_Object Qdisplay_table, Qdomain_error, Qediting_error;
|
|
4084 extern Lisp_Object Qend_of_buffer, Qend_of_file, Qend_open, Qerror;
|
|
4085 extern Lisp_Object Qerror_conditions, Qerror_lacks_explanatory_string;
|
|
4086 extern Lisp_Object Qerror_message, Qevent_live_p, Qexit, Qextent_live_p;
|
|
4087 extern Lisp_Object Qexternal_debugging_output, Qfeaturep, Qfile_error, Qfinal;
|
|
4088 extern Lisp_Object Qforeground, Qformat, Qframe_live_p, Qgraphic, Qgtk;
|
|
4089 extern Lisp_Object Qgui_error, Qicon_glyph_p, Qidentity, Qinhibit_quit;
|
|
4090 extern Lisp_Object Qinhibit_read_only, Qinteger_char_or_marker_p;
|
|
4091 extern Lisp_Object Qinteger_or_char_p, Qinteger_or_marker_p, Qintegerp;
|
|
4092 extern Lisp_Object Qinteractive, Qinternal_error, Qinvalid_argument;
|
|
4093 extern Lisp_Object Qinvalid_byte_code, Qinvalid_change, Qinvalid_constant;
|
|
4094 extern Lisp_Object Qinvalid_function, Qinvalid_operation;
|
|
4095 extern Lisp_Object Qinvalid_read_syntax, Qinvalid_state, Qio_error, Qlambda;
|
|
4096 extern Lisp_Object Qlayout, Qlist_formation_error, Qlistp, Qload, Qlock_shift;
|
|
4097 extern Lisp_Object Qlong_name, Qmacro, Qmakunbound, Qmalformed_list;
|
|
4098 extern Lisp_Object Qmalformed_property_list, Qmark;
|
|
4099 extern Lisp_Object Qmono_pixmap_image_instance_p, Qmouse_leave_buffer_hook;
|
|
4100 extern Lisp_Object Qnative_layout, Qnatnump, Qnetwork_error, Qno_catch;
|
|
4101 extern Lisp_Object Qnothing_image_instance_p, Qnumber_char_or_marker_p;
|
|
4102 extern Lisp_Object Qnumberp, Qout_of_memory, Qoutput_charset_conversion;
|
442
|
4103 extern Lisp_Object Qoverflow_error, Qpoint, Qpointer_glyph_p;
|
771
|
4104 extern Lisp_Object Qpointer_image_instance_p, Qprint_length;
|
563
|
4105 extern Lisp_Object Qprint_string_length, Qprinting_unreadable_object;
|
771
|
4106 extern Lisp_Object Qprocess_error, Qprogn, Qquit, Qquote, Qrange_error;
|
|
4107 extern Lisp_Object Qread_char, Qread_from_minibuffer;
|
|
4108 extern Lisp_Object Qreally_early_error_handler, Qregion_beginning;
|
|
4109 extern Lisp_Object Qregion_end, Qregistry, Qreverse_direction_charset;
|
|
4110 extern Lisp_Object Qrun_hooks, Qsans_modifiers, Qsave_buffers_kill_emacs;
|
|
4111 extern Lisp_Object Qself_insert_command, Qself_insert_defer_undo, Qsequencep;
|
|
4112 extern Lisp_Object Qset, Qsetting_constant, Qshort_name, Qsingularity_error;
|
|
4113 extern Lisp_Object Qsound_error, Qstack_overflow, Qstandard_input;
|
|
4114 extern Lisp_Object Qstandard_output, Qstart_open, Qstring_lessp;
|
|
4115 extern Lisp_Object Qstructure_formation_error, Qsubwindow;
|
|
4116 extern Lisp_Object Qsubwindow_image_instance_p, Qsyntax_error, Qt;
|
|
4117 extern Lisp_Object Qtext_conversion_error, Qtext_image_instance_p, Qtop_level;
|
|
4118 extern Lisp_Object Qtrue_list_p, Qunbound, Qunderflow_error, Qunderline;
|
|
4119 extern Lisp_Object Quser_files_and_directories, Qvalues;
|
|
4120 extern Lisp_Object Qvariable_documentation, Qvariable_domain, Qvoid_function;
|
|
4121 extern Lisp_Object Qvoid_variable, Qwindow_live_p, Qwrong_number_of_arguments;
|
442
|
4122 extern Lisp_Object Qwrong_type_argument, Qyes_or_no_p;
|
|
4123
|
|
4124 #define SYMBOL(fou) extern Lisp_Object fou
|
|
4125 #define SYMBOL_KEYWORD(la_cle_est_fou) extern Lisp_Object la_cle_est_fou
|
|
4126 #define SYMBOL_GENERAL(tout_le_monde, est_fou) \
|
|
4127 extern Lisp_Object tout_le_monde
|
|
4128
|
|
4129 #include "general-slots.h"
|
|
4130
|
|
4131 #undef SYMBOL
|
|
4132 #undef SYMBOL_KEYWORD
|
|
4133 #undef SYMBOL_GENERAL
|
|
4134
|
|
4135 /*--------------- prototypes for variables of type Lisp_Object ------------*/
|
|
4136
|
446
|
4137 extern Lisp_Object Vactivate_menubar_hook;
|
|
4138 extern Lisp_Object Vautoload_queue, Vblank_menubar;
|
771
|
4139 extern Lisp_Object Vcommand_history;
|
428
|
4140 extern Lisp_Object Vcommand_line_args, Vconfigure_info_directory;
|
|
4141 extern Lisp_Object Vconfigure_site_directory, Vconfigure_site_module_directory;
|
|
4142 extern Lisp_Object Vconsole_list, Vcontrolling_terminal;
|
|
4143 extern Lisp_Object Vcurrent_compiled_function_annotation, Vcurrent_load_list;
|
|
4144 extern Lisp_Object Vcurrent_mouse_event, Vcurrent_prefix_arg, Vdata_directory;
|
434
|
4145 extern Lisp_Object Vdirectory_sep_char, Vdisabled_command_hook;
|
|
4146 extern Lisp_Object Vdoc_directory, Vinternal_doc_file_name;
|
428
|
4147 extern Lisp_Object Vecho_area_buffer, Vemacs_major_version;
|
|
4148 extern Lisp_Object Vemacs_minor_version, Vexec_directory, Vexec_path;
|
|
4149 extern Lisp_Object Vexecuting_macro, Vfeatures, Vfile_domain;
|
771
|
4150 extern Lisp_Object Vinhibit_quit, Vinvocation_directory, Vinvocation_name;
|
|
4151 extern Lisp_Object Vlast_command, Vlast_command_char;
|
428
|
4152 extern Lisp_Object Vlast_command_event, Vlast_input_event;
|
|
4153 extern Lisp_Object Vload_file_name_internal;
|
|
4154 extern Lisp_Object Vload_file_name_internal_the_purecopy, Vload_history;
|
|
4155 extern Lisp_Object Vload_path, Vmark_even_if_inactive, Vmenubar_configuration;
|
|
4156 extern Lisp_Object Vminibuf_preprompt, Vminibuf_prompt, Vminibuffer_zero;
|
|
4157 extern Lisp_Object Vmodule_directory, Vmswindows_downcase_file_names;
|
|
4158 extern Lisp_Object Vmswindows_get_true_file_attributes, Vobarray;
|
|
4159 extern Lisp_Object Vprint_length, Vprint_level, Vprocess_environment;
|
|
4160 extern Lisp_Object Vquit_flag;
|
|
4161 extern Lisp_Object Vrecent_keys_ring, Vshell_file_name, Vsite_directory;
|
|
4162 extern Lisp_Object Vsite_module_directory;
|
|
4163 extern Lisp_Object Vstandard_input, Vstandard_output, Vstdio_str;
|
771
|
4164 extern Lisp_Object Vsynchronous_sounds, Vsystem_name;
|
428
|
4165 extern Lisp_Object Vthis_command_keys, Vunread_command_event;
|
|
4166 extern Lisp_Object Vx_initial_argv_list;
|
|
4167
|
440
|
4168 #endif /* INCLUDED_lisp_h_ */
|