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.
|
442
|
4 Copyright (C) 1995, 1996, 2000 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
|
|
48 /* ------------------------ dynamic arrays ------------------- */
|
428
|
49
|
|
50 #define Dynarr_declare(type) \
|
|
51 type *base; \
|
|
52 int elsize; \
|
|
53 int cur; \
|
|
54 int largest; \
|
|
55 int max
|
|
56
|
|
57 typedef struct dynarr
|
|
58 {
|
|
59 Dynarr_declare (void);
|
|
60 } Dynarr;
|
|
61
|
|
62 void *Dynarr_newf (int elsize);
|
|
63 void Dynarr_resize (void *dy, int size);
|
442
|
64 void Dynarr_insert_many (void *d, const void *el, int len, int start);
|
428
|
65 void Dynarr_delete_many (void *d, int start, int len);
|
|
66 void Dynarr_free (void *d);
|
|
67
|
440
|
68 #define Dynarr_new(type) ((type##_dynarr *) Dynarr_newf (sizeof (type)))
|
442
|
69 #define Dynarr_new2(dynarr_type, type) \
|
|
70 ((dynarr_type *) Dynarr_newf (sizeof (type)))
|
428
|
71 #define Dynarr_at(d, pos) ((d)->base[pos])
|
|
72 #define Dynarr_atp(d, pos) (&Dynarr_at (d, pos))
|
452
|
73 #define Dynarr_begin(d) Dynarr_atp (d, 0)
|
|
74 #define Dynarr_end(d) Dynarr_atp (d, Dynarr_length (d))
|
|
75 #define Dynarr_sizeof(d) ((d)->cur * (d)->elsize)
|
428
|
76 #define Dynarr_length(d) ((d)->cur)
|
|
77 #define Dynarr_largest(d) ((d)->largest)
|
|
78 #define Dynarr_reset(d) ((d)->cur = 0)
|
|
79 #define Dynarr_add_many(d, el, len) Dynarr_insert_many (d, el, len, (d)->cur)
|
|
80 #define Dynarr_insert_many_at_start(d, el, len) \
|
|
81 Dynarr_insert_many (d, el, len, 0)
|
440
|
82 #define Dynarr_add_literal_string(d, s) Dynarr_add_many (d, s, sizeof (s) - 1)
|
428
|
83 #define Dynarr_add_lisp_string(d, s) do { \
|
440
|
84 Lisp_String *dyna_ls_s = XSTRING (s); \
|
428
|
85 Dynarr_add_many (d, (char *) string_data (dyna_ls_s), \
|
|
86 string_length (dyna_ls_s)); \
|
|
87 } while (0)
|
|
88
|
|
89 #define Dynarr_add(d, el) ( \
|
|
90 (d)->cur >= (d)->max ? Dynarr_resize ((d), (d)->cur+1) : (void) 0, \
|
|
91 ((d)->base)[(d)->cur++] = (el), \
|
|
92 (d)->cur > (d)->largest ? (d)->largest = (d)->cur : (int) 0)
|
|
93
|
|
94 /* The following defines will get you into real trouble if you aren't
|
|
95 careful. But they can save a lot of execution time when used wisely. */
|
|
96 #define Dynarr_increment(d) ((d)->cur++)
|
|
97 #define Dynarr_set_size(d, n) ((d)->cur = n)
|
|
98
|
|
99 #ifdef MEMORY_USAGE_STATS
|
|
100 struct overhead_stats;
|
|
101 size_t Dynarr_memory_usage (void *d, struct overhead_stats *stats);
|
|
102 #endif
|
|
103
|
|
104 /* Also define min() and max(). (Some compilers put them in strange
|
|
105 places that won't be referenced by the above include files, such
|
|
106 as 'macros.h' under Solaris.) */
|
|
107
|
|
108 #ifndef min
|
|
109 #define min(a,b) (((a) <= (b)) ? (a) : (b))
|
|
110 #endif
|
|
111 #ifndef max
|
|
112 #define max(a,b) (((a) > (b)) ? (a) : (b))
|
|
113 #endif
|
|
114
|
|
115 /* Memory allocation */
|
442
|
116 void malloc_warning (const char *);
|
428
|
117 void *xmalloc (size_t size);
|
|
118 void *xmalloc_and_zero (size_t size);
|
|
119 void *xrealloc (void *, size_t size);
|
442
|
120 char *xstrdup (const char *);
|
428
|
121 /* generally useful */
|
438
|
122 #define countof(x) ((int) (sizeof(x)/sizeof((x)[0])))
|
428
|
123 #define xnew(type) ((type *) xmalloc (sizeof (type)))
|
|
124 #define xnew_array(type, len) ((type *) xmalloc ((len) * sizeof (type)))
|
|
125 #define xnew_and_zero(type) ((type *) xmalloc_and_zero (sizeof (type)))
|
438
|
126 #define xzero(lvalue) ((void) memset (&(lvalue), '\0', sizeof (lvalue)))
|
428
|
127 #define xnew_array_and_zero(type, len) ((type *) xmalloc_and_zero ((len) * sizeof (type)))
|
|
128 #define XREALLOC_ARRAY(ptr, type, len) ((void) (ptr = (type *) xrealloc (ptr, (len) * sizeof (type))))
|
|
129 #define alloca_array(type, len) ((type *) alloca ((len) * sizeof (type)))
|
|
130
|
|
131 /* also generally useful if you want to avoid arbitrary size limits
|
|
132 but don't need a full dynamic array. Assumes that BASEVAR points
|
|
133 to a malloced array of TYPE objects (or possibly a NULL pointer,
|
|
134 if SIZEVAR is 0), with the total size stored in SIZEVAR. This
|
|
135 macro will realloc BASEVAR as necessary so that it can hold at
|
|
136 least NEEDED_SIZE objects. The reallocing is done by doubling,
|
|
137 which ensures constant amortized time per element. */
|
430
|
138 #define DO_REALLOC(basevar, sizevar, needed_size, type) do { \
|
428
|
139 size_t do_realloc_needed_size = (needed_size); \
|
430
|
140 if ((sizevar) < do_realloc_needed_size) \
|
|
141 { \
|
|
142 if ((sizevar) < 32) \
|
|
143 (sizevar) = 32; \
|
|
144 while ((sizevar) < do_realloc_needed_size) \
|
|
145 (sizevar) *= 2; \
|
|
146 XREALLOC_ARRAY (basevar, type, (sizevar)); \
|
|
147 } \
|
428
|
148 } while (0)
|
|
149
|
|
150 #ifdef ERROR_CHECK_MALLOC
|
|
151 void xfree_1 (void *);
|
|
152 #define xfree(lvalue) do \
|
|
153 { \
|
|
154 void **xfree_ptr = (void **) &(lvalue); \
|
|
155 xfree_1 (*xfree_ptr); \
|
|
156 *xfree_ptr = (void *) 0xDEADBEEF; \
|
|
157 } while (0)
|
|
158 #else
|
|
159 void xfree (void *);
|
|
160 #endif /* ERROR_CHECK_MALLOC */
|
|
161
|
|
162 #ifndef PRINTF_ARGS
|
|
163 # if defined (__GNUC__) && (__GNUC__ >= 2)
|
|
164 # define PRINTF_ARGS(string_index,first_to_check) \
|
|
165 __attribute__ ((format (printf, string_index, first_to_check)))
|
|
166 # else
|
|
167 # define PRINTF_ARGS(string_index,first_to_check)
|
|
168 # endif /* GNUC */
|
|
169 #endif
|
|
170
|
|
171 #ifndef DOESNT_RETURN
|
|
172 # if defined __GNUC__
|
|
173 # if ((__GNUC__ > 2) || (__GNUC__ == 2) && (__GNUC_MINOR__ >= 5))
|
442
|
174 # define DOESNT_RETURN void
|
428
|
175 # define DECLARE_DOESNT_RETURN(decl) \
|
442
|
176 extern void decl __attribute__ ((noreturn))
|
428
|
177 # define DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS(decl,str,idx) \
|
|
178 /* Should be able to state multiple independent __attribute__s, but \
|
|
179 the losing syntax doesn't work that way, and screws losing cpp */ \
|
442
|
180 extern void decl \
|
428
|
181 __attribute__ ((noreturn, format (printf, str, idx)))
|
|
182 # else
|
|
183 # define DOESNT_RETURN void volatile
|
|
184 # define DECLARE_DOESNT_RETURN(decl) extern void volatile decl
|
|
185 # define DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS(decl,str,idx) \
|
|
186 extern void volatile decl PRINTF_ARGS(str,idx)
|
|
187 # endif /* GNUC 2.5 */
|
|
188 # else
|
|
189 # define DOESNT_RETURN void
|
|
190 # define DECLARE_DOESNT_RETURN(decl) extern void decl
|
|
191 # define DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS(decl,str,idx) \
|
|
192 extern void decl PRINTF_ARGS(str,idx)
|
|
193 # endif /* GNUC */
|
|
194 #endif
|
|
195
|
454
|
196 /* No type has a greater alignment requirement than max_align_t.
|
|
197 (except perhaps for types we don't use, like long double) */
|
|
198 typedef union
|
|
199 {
|
|
200 struct { long l; } l;
|
|
201 struct { void *p; } p;
|
|
202 struct { void (*f)(void); } f;
|
|
203 struct { double d; } d;
|
|
204 } max_align_t;
|
|
205
|
428
|
206 #ifndef ALIGNOF
|
|
207 # if defined (__GNUC__) && (__GNUC__ >= 2)
|
454
|
208 /* gcc has an extension that gives us exactly what we want. */
|
|
209 # define ALIGNOF(type) __alignof__ (type)
|
|
210 # elif ! defined (__cplusplus)
|
|
211 /* The following is mostly portable, except that:
|
|
212 - it doesn't work for inside out declarations like void (*) (void).
|
|
213 (so just call ALIGNOF with a typedef'ed name)
|
|
214 - it doesn't work with C++. The C++ committee has decided,
|
|
215 in its infinite wisdom, that:
|
|
216 "Types must be declared in declarations, not in expressions." */
|
|
217 # define ALIGNOF(type) offsetof (struct { char c; type member; }, member)
|
428
|
218 # else
|
456
|
219 /* C++ is annoying, but it has a big bag of tricks.
|
|
220 The following doesn't have the "inside out" declaration bug C does. */
|
458
|
221 template<typename T> struct alignment_trick { char c; T member; };
|
456
|
222 # define ALIGNOF(type) offsetof (alignment_trick<type>, member)
|
428
|
223 # endif
|
454
|
224 #endif /* ALIGNOF */
|
428
|
225
|
|
226 #define ALIGN_SIZE(len, unit) \
|
|
227 ((((len) + (unit) - 1) / (unit)) * (unit))
|
|
228
|
|
229 /* #### Yuck, this is kind of evil */
|
|
230 #define ALIGN_PTR(ptr, unit) \
|
454
|
231 ((void *) ALIGN_SIZE ((size_t) (ptr), unit))
|
428
|
232
|
|
233 #ifndef DO_NOTHING
|
|
234 #define DO_NOTHING do {} while (0)
|
|
235 #endif
|
|
236
|
|
237 #ifndef DECLARE_NOTHING
|
|
238 #define DECLARE_NOTHING struct nosuchstruct
|
|
239 #endif
|
|
240
|
|
241 /* We define assert iff USE_ASSERTIONS or DEBUG_XEMACS is defined.
|
|
242 Otherwise we define it to be empty. Quantify has shown that the
|
|
243 time the assert checks take is measurable so let's not include them
|
|
244 in production binaries. */
|
|
245
|
|
246 #ifdef USE_ASSERTIONS
|
|
247 /* Highly dubious kludge */
|
|
248 /* (thanks, Jamie, I feel better now -- ben) */
|
442
|
249 void assert_failed (const char *, int, const char *);
|
428
|
250 # define abort() (assert_failed (__FILE__, __LINE__, "abort()"))
|
|
251 # define assert(x) ((x) ? (void) 0 : assert_failed (__FILE__, __LINE__, #x))
|
|
252 #else
|
|
253 # ifdef DEBUG_XEMACS
|
|
254 # define assert(x) ((x) ? (void) 0 : (void) abort ())
|
|
255 # else
|
|
256 # define assert(x)
|
|
257 # endif
|
|
258 #endif
|
|
259
|
|
260 /*#ifdef DEBUG_XEMACS*/
|
|
261 #define REGISTER
|
|
262 #define register
|
|
263 /*#else*/
|
|
264 /*#define REGISTER register*/
|
|
265 /*#endif*/
|
|
266
|
|
267
|
|
268 /* EMACS_INT is the underlying integral type into which a Lisp_Object must fit.
|
|
269 In particular, it must be large enough to contain a pointer.
|
462
|
270 config.h can override this, e.g. to use `long long' for bigger lisp ints.
|
|
271
|
|
272 #### In point of fact, it would NOT be a good idea for config.h to mess
|
|
273 with EMACS_INT. A lot of code makes the basic assumption that EMACS_INT
|
|
274 is the size of a pointer. */
|
428
|
275
|
|
276 #ifndef SIZEOF_EMACS_INT
|
|
277 # define SIZEOF_EMACS_INT SIZEOF_VOID_P
|
|
278 #endif
|
|
279
|
|
280 #ifndef EMACS_INT
|
|
281 # if SIZEOF_EMACS_INT == SIZEOF_LONG
|
|
282 # define EMACS_INT long
|
|
283 # elif SIZEOF_EMACS_INT == SIZEOF_INT
|
|
284 # define EMACS_INT int
|
|
285 # elif SIZEOF_EMACS_INT == SIZEOF_LONG_LONG
|
|
286 # define EMACS_INT long long
|
|
287 # else
|
|
288 # error Unable to determine suitable type for EMACS_INT
|
|
289 # endif
|
|
290 #endif
|
|
291
|
|
292 #ifndef EMACS_UINT
|
|
293 # define EMACS_UINT unsigned EMACS_INT
|
|
294 #endif
|
|
295
|
|
296 #define BITS_PER_EMACS_INT (SIZEOF_EMACS_INT * BITS_PER_CHAR)
|
|
297
|
|
298
|
|
299 /************************************************************************/
|
|
300 /* typedefs */
|
|
301 /************************************************************************/
|
|
302
|
|
303 /* We put typedefs here so that prototype declarations don't choke.
|
|
304 Note that we don't actually declare the structures here (except
|
|
305 maybe for simple structures like Dynarrs); that keeps them private
|
|
306 to the routines that actually use them. */
|
|
307
|
442
|
308 /* ------------------------------- */
|
|
309 /* basic char/int typedefs */
|
|
310 /* ------------------------------- */
|
|
311
|
446
|
312 /* The definitions we put here use typedefs to attribute specific meaning
|
|
313 to types that by themselves are pretty general. Stuff pointed to by a
|
442
|
314 char * or unsigned char * will nearly always be one of four types:
|
|
315 a) pointer to internally-formatted text; b) pointer to text in some
|
|
316 external format, which can be defined as all formats other than the
|
|
317 internal one; c) pure ASCII text; d) binary data that is not meant to
|
|
318 be interpreted as text. [A fifth possible type "e) a general pointer
|
446
|
319 to memory" should be replaced with void *.] Using these more specific
|
|
320 types rather than the general ones helps avoid the confusions that
|
593
|
321 occur when the semantics of a char * argument being studied are unclear.
|
|
322
|
|
323 Note that these typedefs are purely for documentation purposes; from
|
|
324 the C code's perspective, they are exactly equivalent to `char *',
|
|
325 `unsigned char *', etc., so you can freely use them with library
|
|
326 functions declared as such. */
|
442
|
327
|
428
|
328 /* The data representing the text in a buffer is logically a set
|
|
329 of Bufbytes, declared as follows. */
|
|
330
|
593
|
331 typedef unsigned char Bufbyte;
|
|
332 /* The following should only be used when you have to apply a stdlib
|
|
333 string function to internal data */
|
|
334 typedef char CBufbyte;
|
442
|
335
|
|
336 /* The data representing a string in "external" format (binary or any
|
444
|
337 external encoding) is logically a set of Extbytes, declared as
|
|
338 follows. Extbyte is guaranteed to be just a char, so for example
|
|
339 strlen (Extbyte *) is OK. Extbyte is only a documentation device
|
|
340 for referring to external text. */
|
|
341
|
|
342 typedef char Extbyte;
|
442
|
343
|
|
344 /* A byte in a string in binary format: */
|
|
345 typedef char Char_Binary;
|
593
|
346 typedef signed char SChar_Binary;
|
|
347 typedef unsigned char UChar_Binary;
|
442
|
348
|
|
349 /* A byte in a string in entirely US-ASCII format: (Nothing outside
|
|
350 the range 00 - 7F) */
|
|
351
|
|
352 typedef char Char_ASCII;
|
593
|
353 typedef unsigned char UChar_ASCII;
|
442
|
354
|
428
|
355
|
|
356 /* To the user, a buffer is made up of characters, declared as follows.
|
|
357 In the non-Mule world, characters and Bufbytes are equivalent.
|
|
358 In the Mule world, a character requires (typically) 1 to 4
|
|
359 Bufbytes for its representation in a buffer. */
|
|
360
|
|
361 typedef int Emchar;
|
|
362
|
|
363 /* Different ways of referring to a position in a buffer. We use
|
462
|
364 the typedefs in preference to 'EMACS_INT' to make it clearer what
|
428
|
365 sort of position is being used. See extents.c for a description
|
|
366 of the different positions. We put them here instead of in
|
|
367 buffer.h (where they rightfully belong) to avoid syntax errors
|
|
368 in function prototypes. */
|
|
369
|
|
370 typedef EMACS_INT Bufpos;
|
|
371 typedef EMACS_INT Bytind;
|
|
372 typedef EMACS_INT Memind;
|
|
373
|
|
374 /* Counts of bytes or chars */
|
|
375
|
|
376 typedef EMACS_INT Bytecount;
|
|
377 typedef EMACS_INT Charcount;
|
|
378
|
|
379 /* Length in bytes of a string in external format */
|
|
380 typedef EMACS_INT Extcount;
|
|
381
|
442
|
382 /* ------------------------------- */
|
|
383 /* structure/other typedefs */
|
|
384 /* ------------------------------- */
|
|
385
|
428
|
386 typedef struct lstream Lstream;
|
|
387
|
|
388 typedef unsigned int face_index;
|
|
389
|
|
390 typedef struct
|
|
391 {
|
|
392 Dynarr_declare (struct face_cachel);
|
|
393 } face_cachel_dynarr;
|
|
394
|
|
395 typedef unsigned int glyph_index;
|
|
396
|
|
397 /* This is shared by process.h, events.h and others in future.
|
|
398 See events.h for description */
|
|
399 typedef unsigned int USID;
|
|
400
|
|
401 typedef struct
|
|
402 {
|
|
403 Dynarr_declare (struct glyph_cachel);
|
|
404 } glyph_cachel_dynarr;
|
|
405
|
|
406 struct buffer; /* "buffer.h" */
|
|
407 struct console; /* "console.h" */
|
|
408 struct device; /* "device.h" */
|
|
409 struct extent_fragment;
|
|
410 struct extent;
|
|
411 typedef struct extent *EXTENT;
|
|
412 struct frame; /* "frame.h" */
|
|
413 struct window; /* "window.h" */
|
440
|
414 typedef struct Lisp_Event Lisp_Event; /* "events.h" */
|
|
415 typedef struct Lisp_Face Lisp_Face; /* "faces.h" */
|
|
416 typedef struct Lisp_Process Lisp_Process; /* "procimpl.h" */
|
428
|
417 struct stat; /* <sys/stat.h> */
|
|
418 typedef struct Lisp_Color_Instance Lisp_Color_Instance;
|
|
419 typedef struct Lisp_Font_Instance Lisp_Font_Instance;
|
|
420 typedef struct Lisp_Image_Instance Lisp_Image_Instance;
|
|
421 typedef struct Lisp_Gui_Item Lisp_Gui_Item;
|
|
422 struct display_line;
|
|
423 struct display_glyph_area;
|
|
424 struct display_box;
|
|
425 struct redisplay_info;
|
|
426 struct window_mirror;
|
|
427 struct scrollbar_instance;
|
|
428 struct font_metric_info;
|
|
429 struct face_cachel;
|
|
430 struct console_type_entry;
|
|
431
|
|
432 typedef struct
|
|
433 {
|
|
434 Dynarr_declare (Bufbyte);
|
|
435 } Bufbyte_dynarr;
|
|
436
|
|
437 typedef struct
|
|
438 {
|
|
439 Dynarr_declare (Extbyte);
|
|
440 } Extbyte_dynarr;
|
|
441
|
|
442 typedef struct
|
|
443 {
|
|
444 Dynarr_declare (Emchar);
|
|
445 } Emchar_dynarr;
|
|
446
|
|
447 typedef struct
|
|
448 {
|
|
449 Dynarr_declare (char);
|
|
450 } char_dynarr;
|
|
451
|
|
452 typedef unsigned char unsigned_char;
|
|
453 typedef struct
|
|
454 {
|
|
455 Dynarr_declare (unsigned char);
|
|
456 } unsigned_char_dynarr;
|
|
457
|
|
458 typedef unsigned long unsigned_long;
|
|
459 typedef struct
|
|
460 {
|
|
461 Dynarr_declare (unsigned long);
|
|
462 } unsigned_long_dynarr;
|
|
463
|
|
464 typedef struct
|
|
465 {
|
|
466 Dynarr_declare (int);
|
|
467 } int_dynarr;
|
|
468
|
|
469 typedef struct
|
|
470 {
|
|
471 Dynarr_declare (Bufpos);
|
|
472 } Bufpos_dynarr;
|
|
473
|
|
474 typedef struct
|
|
475 {
|
|
476 Dynarr_declare (Bytind);
|
|
477 } Bytind_dynarr;
|
|
478
|
|
479 typedef struct
|
|
480 {
|
|
481 Dynarr_declare (Charcount);
|
|
482 } Charcount_dynarr;
|
|
483
|
|
484 typedef struct
|
|
485 {
|
|
486 Dynarr_declare (Bytecount);
|
|
487 } Bytecount_dynarr;
|
|
488
|
|
489 typedef struct
|
|
490 {
|
|
491 Dynarr_declare (struct console_type_entry);
|
|
492 } console_type_entry_dynarr;
|
|
493
|
|
494 enum run_hooks_condition
|
|
495 {
|
|
496 RUN_HOOKS_TO_COMPLETION,
|
|
497 RUN_HOOKS_UNTIL_SUCCESS,
|
|
498 RUN_HOOKS_UNTIL_FAILURE
|
|
499 };
|
|
500
|
|
501 #ifdef HAVE_TOOLBARS
|
|
502 enum toolbar_pos
|
|
503 {
|
|
504 TOP_TOOLBAR,
|
|
505 BOTTOM_TOOLBAR,
|
|
506 LEFT_TOOLBAR,
|
|
507 RIGHT_TOOLBAR
|
|
508 };
|
|
509 #endif
|
|
510
|
|
511 enum edge_style
|
|
512 {
|
|
513 EDGE_ETCHED_IN,
|
|
514 EDGE_ETCHED_OUT,
|
|
515 EDGE_BEVEL_IN,
|
|
516 EDGE_BEVEL_OUT
|
|
517 };
|
|
518
|
|
519 #ifndef ERROR_CHECK_TYPECHECK
|
|
520
|
|
521 typedef enum error_behavior
|
|
522 {
|
|
523 ERROR_ME,
|
|
524 ERROR_ME_NOT,
|
|
525 ERROR_ME_WARN
|
578
|
526 } Error_Behavior;
|
428
|
527
|
|
528 #define ERRB_EQ(a, b) ((a) == (b))
|
|
529
|
|
530 #else
|
|
531
|
|
532 /* By defining it like this, we provide strict type-checking
|
|
533 for code that lazily uses ints. */
|
|
534
|
|
535 typedef struct _error_behavior_struct_
|
|
536 {
|
|
537 int really_unlikely_name_to_have_accidentally_in_a_non_errb_structure;
|
578
|
538 } Error_Behavior;
|
|
539
|
|
540 extern Error_Behavior ERROR_ME;
|
|
541 extern Error_Behavior ERROR_ME_NOT;
|
|
542 extern Error_Behavior ERROR_ME_WARN;
|
428
|
543
|
|
544 #define ERRB_EQ(a, b) \
|
|
545 ((a).really_unlikely_name_to_have_accidentally_in_a_non_errb_structure == \
|
|
546 (b).really_unlikely_name_to_have_accidentally_in_a_non_errb_structure)
|
|
547
|
|
548 #endif
|
|
549
|
|
550 enum munge_me_out_the_door
|
|
551 {
|
|
552 MUNGE_ME_FUNCTION_KEY,
|
|
553 MUNGE_ME_KEY_TRANSLATION
|
|
554 };
|
|
555
|
|
556
|
|
557 /************************************************************************/
|
|
558 /* Definition of Lisp_Object data type */
|
|
559 /************************************************************************/
|
|
560
|
|
561 /* Define the fundamental Lisp data structures */
|
|
562
|
|
563 /* This is the set of Lisp data types */
|
|
564
|
|
565 enum Lisp_Type
|
|
566 {
|
|
567 Lisp_Type_Record,
|
|
568 Lisp_Type_Int_Even,
|
|
569 Lisp_Type_Char,
|
|
570 Lisp_Type_Int_Odd
|
|
571 };
|
|
572
|
|
573 #define POINTER_TYPE_P(type) ((type) == Lisp_Type_Record)
|
|
574
|
|
575 /* Overridden by m/next.h */
|
|
576 #ifndef ASSERT_VALID_POINTER
|
|
577 # define ASSERT_VALID_POINTER(pnt) (assert ((((EMACS_UINT) pnt) & 3) == 0))
|
|
578 #endif
|
|
579
|
|
580 #define GCMARKBITS 0
|
|
581 #define GCTYPEBITS 2
|
|
582 #define GCBITS 2
|
|
583 #define INT_GCBITS 1
|
|
584
|
|
585 #define INT_VALBITS (BITS_PER_EMACS_INT - INT_GCBITS)
|
|
586 #define VALBITS (BITS_PER_EMACS_INT - GCBITS)
|
542
|
587 #define EMACS_INT_MAX ((EMACS_INT) ((1UL << (INT_VALBITS - 1)) -1UL))
|
442
|
588 #define EMACS_INT_MIN (-(EMACS_INT_MAX) - 1)
|
428
|
589
|
|
590 #ifdef USE_UNION_TYPE
|
|
591 # include "lisp-union.h"
|
|
592 #else /* !USE_UNION_TYPE */
|
|
593 # include "lisp-disunion.h"
|
|
594 #endif /* !USE_UNION_TYPE */
|
|
595
|
|
596 #define XPNTR(x) ((void *) XPNTRVAL(x))
|
|
597
|
|
598 /* WARNING WARNING WARNING. You must ensure on your own that proper
|
|
599 GC protection is provided for the elements in this array. */
|
|
600 typedef struct
|
|
601 {
|
|
602 Dynarr_declare (Lisp_Object);
|
|
603 } Lisp_Object_dynarr;
|
|
604
|
452
|
605 typedef struct
|
|
606 {
|
|
607 Dynarr_declare (Lisp_Object *);
|
|
608 } Lisp_Object_ptr_dynarr;
|
|
609
|
428
|
610 /* Close your eyes now lest you vomit or spontaneously combust ... */
|
|
611
|
|
612 #define HACKEQ_UNSAFE(obj1, obj2) \
|
|
613 (EQ (obj1, obj2) || (!POINTER_TYPE_P (XTYPE (obj1)) \
|
|
614 && !POINTER_TYPE_P (XTYPE (obj2)) \
|
|
615 && XCHAR_OR_INT (obj1) == XCHAR_OR_INT (obj2)))
|
|
616
|
|
617 #ifdef DEBUG_XEMACS
|
|
618 extern int debug_issue_ebola_notices;
|
|
619 int eq_with_ebola_notice (Lisp_Object, Lisp_Object);
|
|
620 #define EQ_WITH_EBOLA_NOTICE(obj1, obj2) \
|
|
621 (debug_issue_ebola_notices ? eq_with_ebola_notice (obj1, obj2) \
|
|
622 : EQ (obj1, obj2))
|
|
623 #else
|
|
624 #define EQ_WITH_EBOLA_NOTICE(obj1, obj2) EQ (obj1, obj2)
|
|
625 #endif
|
|
626
|
|
627 /* OK, you can open them again */
|
|
628
|
|
629
|
|
630 /************************************************************************/
|
442
|
631 /** Definitions of basic Lisp objects **/
|
428
|
632 /************************************************************************/
|
|
633
|
|
634 #include "lrecord.h"
|
|
635
|
442
|
636 /*------------------------------ unbound -------------------------------*/
|
428
|
637
|
|
638 /* Qunbound is a special Lisp_Object (actually of type
|
|
639 symbol-value-forward), that can never be visible to
|
|
640 the Lisp caller and thus can be used in the C code
|
|
641 to mean "no such value". */
|
|
642
|
|
643 #define UNBOUNDP(val) EQ (val, Qunbound)
|
|
644
|
442
|
645 /*------------------------------- cons ---------------------------------*/
|
428
|
646
|
|
647 /* In a cons, the markbit of the car is the gc mark bit */
|
|
648
|
|
649 struct Lisp_Cons
|
|
650 {
|
|
651 struct lrecord_header lheader;
|
|
652 Lisp_Object car, cdr;
|
|
653 };
|
|
654 typedef struct Lisp_Cons Lisp_Cons;
|
|
655
|
|
656 #if 0 /* FSFmacs */
|
|
657 /* Like a cons, but records info on where the text lives that it was read from */
|
|
658 /* This is not really in use now */
|
|
659
|
|
660 struct Lisp_Buffer_Cons
|
|
661 {
|
|
662 Lisp_Object car, cdr;
|
|
663 struct buffer *buffer;
|
|
664 int bufpos;
|
|
665 };
|
|
666 #endif
|
|
667
|
|
668 DECLARE_LRECORD (cons, Lisp_Cons);
|
|
669 #define XCONS(x) XRECORD (x, cons, Lisp_Cons)
|
|
670 #define XSETCONS(x, p) XSETRECORD (x, p, cons)
|
|
671 #define CONSP(x) RECORDP (x, cons)
|
|
672 #define CHECK_CONS(x) CHECK_RECORD (x, cons)
|
|
673 #define CONCHECK_CONS(x) CONCHECK_RECORD (x, cons)
|
|
674
|
|
675 #define CONS_MARKED_P(c) MARKED_RECORD_HEADER_P(&((c)->lheader))
|
|
676 #define MARK_CONS(c) MARK_RECORD_HEADER (&((c)->lheader))
|
|
677
|
|
678 extern Lisp_Object Qnil;
|
|
679
|
|
680 #define NILP(x) EQ (x, Qnil)
|
|
681 #define XCAR(a) (XCONS (a)->car)
|
|
682 #define XCDR(a) (XCONS (a)->cdr)
|
|
683 #define LISTP(x) (CONSP(x) || NILP(x))
|
|
684
|
|
685 #define CHECK_LIST(x) do { \
|
|
686 if (!LISTP (x)) \
|
|
687 dead_wrong_type_argument (Qlistp, x); \
|
|
688 } while (0)
|
|
689
|
|
690 #define CONCHECK_LIST(x) do { \
|
|
691 if (!LISTP (x)) \
|
|
692 x = wrong_type_argument (Qlistp, x); \
|
|
693 } while (0)
|
|
694
|
442
|
695 /*---------------------- list traversal macros -------------------------*/
|
|
696
|
|
697 /* Note: These macros are for traversing through a list in some format,
|
|
698 and executing code that you specify on each member of the list.
|
|
699
|
|
700 There are two kinds of macros, those requiring surrounding braces, and
|
|
701 those not requiring this. Which type of macro will be indicated.
|
|
702 The general format for using a brace-requiring macro is
|
|
703
|
|
704 {
|
|
705 LIST_LOOP_3 (elt, list, tail)
|
|
706 execute_code_here;
|
|
707 }
|
|
708
|
|
709 or
|
|
710
|
|
711 {
|
|
712 LIST_LOOP_3 (elt, list, tail)
|
|
713 {
|
|
714 execute_code_here;
|
|
715 }
|
|
716 }
|
|
717
|
|
718 You can put variable declarations between the brace and beginning of
|
|
719 macro, but NOTHING ELSE.
|
|
720
|
|
721 The brace-requiring macros typically declare themselves any arguments
|
|
722 that are initialized and iterated by the macros. If for some reason
|
|
723 you need to declare these arguments yourself (e.g. to do something on
|
|
724 them before the iteration starts, use the _NO_DECLARE versions of the
|
|
725 macros.)
|
|
726 */
|
|
727
|
|
728 /* There are two basic kinds of macros: those that handle "internal" lists
|
|
729 that are known to be correctly structured (i.e. first element is a cons
|
|
730 or nil, and the car of each cons is also a cons or nil, and there are
|
|
731 no circularities), and those that handle "external" lists, where the
|
|
732 list may have any sort of invalid formation. This is reflected in
|
|
733 the names: those with "EXTERNAL_" work with external lists, and those
|
|
734 without this prefix work with internal lists. The internal-list
|
|
735 macros will hit an assertion failure if the structure is ill-formed;
|
|
736 the external-list macros will signal an error in this case, either a
|
|
737 malformed-list error or a circular-list error.
|
|
738
|
|
739 Note also that the simplest external list iterator, EXTERNAL_LIST_LOOP,
|
|
740 does *NOT* check for circularities. Therefore, make sure you call
|
|
741 QUIT each iteration or so. However, it's probably easier just to use
|
|
742 EXTERNAL_LIST_LOOP_2, which is easier to use in any case.
|
|
743 */
|
|
744
|
|
745 /* LIST_LOOP and EXTERNAL_LIST_LOOP are the simplest macros. They don't
|
|
746 require brace surrounding, and iterate through a list, which may or may
|
|
747 not known to be syntactically correct. EXTERNAL_LIST_LOOP is for those
|
|
748 not known to be correct, and it detects and signals a malformed list
|
|
749 error when encountering a problem. Circularities, however, are not
|
|
750 handled, and cause looping forever, so make sure to include a QUIT.
|
|
751 These functions also accept two args, TAIL (set progressively to each
|
|
752 cons starting with the first), and LIST, the list to iterate over.
|
|
753 TAIL needs to be defined by the program.
|
|
754
|
|
755 In each iteration, you can retrieve the current list item using XCAR
|
|
756 (tail), or destructively modify the list using XSETCAR (tail,
|
|
757 ...). */
|
|
758
|
428
|
759 #define LIST_LOOP(tail, list) \
|
|
760 for (tail = list; \
|
|
761 !NILP (tail); \
|
|
762 tail = XCDR (tail))
|
|
763
|
|
764 #define EXTERNAL_LIST_LOOP(tail, list) \
|
|
765 for (tail = list; !NILP (tail); tail = XCDR (tail)) \
|
|
766 if (!CONSP (tail)) \
|
|
767 signal_malformed_list_error (list); \
|
|
768 else
|
|
769
|
442
|
770 /* The following macros are the "core" macros for list traversal.
|
|
771
|
|
772 *** ALL OF THESE MACROS MUST BE DECLARED INSIDE BRACES -- SEE ABOVE. ***
|
|
773
|
|
774 LIST_LOOP_2 and EXTERNAL_LIST_LOOP_2 are the standard, most-often used
|
|
775 macros. They take two arguments, an element variable ELT and the list
|
|
776 LIST. ELT is automatically declared, and set to each element in turn
|
|
777 from LIST.
|
|
778
|
|
779 LIST_LOOP_3 and EXTERNAL_LIST_LOOP_3 are the same, but they have a third
|
|
780 argument TAIL, another automatically-declared variable. At each iteration,
|
|
781 this one points to the cons cell for which ELT is the car.
|
|
782
|
|
783 EXTERNAL_LIST_LOOP_4 is like EXTERNAL_LIST_LOOP_3 but takes an additional
|
|
784 LEN argument, again automatically declared, which counts the number of
|
|
785 iterations gone by. It is 0 during the first iteration.
|
|
786
|
|
787 EXTERNAL_LIST_LOOP_4_NO_DECLARE is like EXTERNAL_LIST_LOOP_4 but none
|
|
788 of the variables are automatically declared, and so you need to declare
|
|
789 them yourself. (ELT and TAIL are Lisp_Objects, and LEN is an EMACS_INT.)
|
|
790 */
|
|
791
|
|
792 #define LIST_LOOP_2(elt, list) \
|
|
793 LIST_LOOP_3(elt, list, unused_tail_##elt)
|
|
794
|
|
795 #define LIST_LOOP_3(elt, list, tail) \
|
|
796 Lisp_Object elt, tail; \
|
|
797 for (tail = list; \
|
|
798 NILP (tail) ? \
|
|
799 0 : (elt = XCAR (tail), 1); \
|
|
800 tail = XCDR (tail))
|
428
|
801
|
|
802 /* The following macros are for traversing lisp lists.
|
|
803 Signal an error if LIST is not properly acyclic and nil-terminated.
|
|
804
|
|
805 Use tortoise/hare algorithm to check for cycles, but only if it
|
|
806 looks like the list is getting too long. Not only is the hare
|
|
807 faster than the tortoise; it even gets a head start! */
|
|
808
|
|
809 /* Optimized and safe macros for looping over external lists. */
|
|
810 #define CIRCULAR_LIST_SUSPICION_LENGTH 1024
|
|
811
|
|
812 #define EXTERNAL_LIST_LOOP_1(list) \
|
|
813 Lisp_Object ELL1_elt, ELL1_hare, ELL1_tortoise; \
|
442
|
814 EMACS_INT ELL1_len; \
|
|
815 PRIVATE_EXTERNAL_LIST_LOOP_6 (ELL1_elt, list, ELL1_len, ELL1_hare, \
|
428
|
816 ELL1_tortoise, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
817
|
|
818 #define EXTERNAL_LIST_LOOP_2(elt, list) \
|
442
|
819 Lisp_Object elt, hare_##elt, tortoise_##elt; \
|
|
820 EMACS_INT len_##elt; \
|
|
821 PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len_##elt, hare_##elt, \
|
428
|
822 tortoise_##elt, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
823
|
|
824 #define EXTERNAL_LIST_LOOP_3(elt, list, tail) \
|
442
|
825 Lisp_Object elt, tail, tortoise_##elt; \
|
|
826 EMACS_INT len_##elt; \
|
|
827 PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len_##elt, tail, \
|
|
828 tortoise_##elt, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
829
|
|
830 #define EXTERNAL_LIST_LOOP_4_NO_DECLARE(elt, list, tail, len) \
|
428
|
831 Lisp_Object tortoise_##elt; \
|
442
|
832 PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len, tail, \
|
428
|
833 tortoise_##elt, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
834
|
|
835 #define EXTERNAL_LIST_LOOP_4(elt, list, tail, len) \
|
442
|
836 Lisp_Object elt, tail, tortoise_##elt; \
|
|
837 EMACS_INT len; \
|
|
838 PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len, tail, \
|
428
|
839 tortoise_##elt, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
840
|
|
841
|
444
|
842 #define PRIVATE_EXTERNAL_LIST_LOOP_6(elt, list, len, hare, \
|
|
843 tortoise, suspicion_length) \
|
|
844 for (tortoise = hare = list, len = 0; \
|
|
845 \
|
|
846 (CONSP (hare) ? ((elt = XCAR (hare)), 1) : \
|
|
847 (NILP (hare) ? 0 : \
|
|
848 (signal_malformed_list_error (list), 0))); \
|
|
849 \
|
|
850 hare = XCDR (hare), \
|
|
851 (void) \
|
|
852 ((++len > suspicion_length) \
|
|
853 && \
|
|
854 ((((len & 1) != 0) && (tortoise = XCDR (tortoise), 0)), \
|
|
855 (EQ (hare, tortoise) && (signal_circular_list_error (list), 0)))))
|
428
|
856
|
442
|
857 /* GET_LIST_LENGTH and GET_EXTERNAL_LIST_LENGTH:
|
|
858
|
|
859 These two macros return the length of LIST (either an internal or external
|
|
860 list, according to which macro is used), stored into LEN (which must
|
|
861 be declared by the caller). Circularities are trapped in external lists
|
|
862 (and cause errors). Neither macro need be declared inside brackets. */
|
|
863
|
|
864 #define GET_LIST_LENGTH(list, len) do { \
|
|
865 Lisp_Object GLL_tail; \
|
|
866 for (GLL_tail = list, len = 0; \
|
|
867 !NILP (GLL_tail); \
|
|
868 GLL_tail = XCDR (GLL_tail), ++len) \
|
|
869 DO_NOTHING; \
|
|
870 } while (0)
|
|
871
|
|
872 #define GET_EXTERNAL_LIST_LENGTH(list, len) \
|
|
873 do { \
|
|
874 Lisp_Object GELL_elt, GELL_tail; \
|
|
875 EXTERNAL_LIST_LOOP_4_NO_DECLARE (GELL_elt, list, GELL_tail, len) \
|
|
876 ; \
|
|
877 } while (0)
|
|
878
|
|
879 /* For a list that's known to be in valid list format, where we may
|
|
880 be deleting the current element out of the list --
|
|
881 will abort() if the list is not in valid format */
|
|
882 #define LIST_LOOP_DELETING(consvar, nextconsvar, list) \
|
|
883 for (consvar = list; \
|
|
884 !NILP (consvar) ? (nextconsvar = XCDR (consvar), 1) :0; \
|
|
885 consvar = nextconsvar)
|
|
886
|
|
887 /* LIST_LOOP_DELETE_IF and EXTERNAL_LIST_LOOP_DELETE_IF:
|
|
888
|
|
889 These two macros delete all elements of LIST (either an internal or
|
|
890 external list, according to which macro is used) satisfying
|
|
891 CONDITION, a C expression referring to variable ELT. ELT is
|
|
892 automatically declared. Circularities are trapped in external
|
|
893 lists (and cause errors). Neither macro need be declared inside
|
|
894 brackets. */
|
|
895
|
|
896 #define LIST_LOOP_DELETE_IF(elt, list, condition) do { \
|
|
897 /* Do not use ##list when creating new variables because \
|
|
898 that may not be just a variable name. */ \
|
|
899 Lisp_Object prev_tail_##elt = Qnil; \
|
|
900 LIST_LOOP_3 (elt, list, tail_##elt) \
|
|
901 { \
|
|
902 if (condition) \
|
|
903 { \
|
|
904 if (NILP (prev_tail_##elt)) \
|
|
905 list = XCDR (tail_##elt); \
|
|
906 else \
|
|
907 XCDR (prev_tail_##elt) = XCDR (tail_##elt); \
|
|
908 } \
|
|
909 else \
|
|
910 prev_tail_##elt = tail_##elt; \
|
|
911 } \
|
|
912 } while (0)
|
|
913
|
|
914 #define EXTERNAL_LIST_LOOP_DELETE_IF(elt, list, condition) do { \
|
|
915 Lisp_Object prev_tail_##elt = Qnil; \
|
|
916 EXTERNAL_LIST_LOOP_4 (elt, list, tail_##elt, len_##elt) \
|
|
917 { \
|
|
918 if (condition) \
|
|
919 { \
|
|
920 if (NILP (prev_tail_##elt)) \
|
|
921 list = XCDR (tail_##elt); \
|
|
922 else \
|
|
923 XCDR (prev_tail_##elt) = XCDR (tail_##elt); \
|
|
924 /* Keep tortoise from ever passing hare. */ \
|
|
925 len_##elt = 0; \
|
|
926 } \
|
|
927 else \
|
|
928 prev_tail_##elt = tail_##elt; \
|
|
929 } \
|
|
930 } while (0)
|
|
931
|
|
932
|
|
933 /* Macros for looping over external alists.
|
|
934
|
|
935 *** ALL OF THESE MACROS MUST BE DECLARED INSIDE BRACES -- SEE ABOVE. ***
|
|
936
|
|
937 EXTERNAL_ALIST_LOOP_4 is similar to EXTERNAL_LIST_LOOP_2, but it
|
|
938 assumes the elements are aconses (the elements in an alist) and
|
|
939 sets two additional argument variables ELT_CAR and ELT_CDR to the
|
|
940 car and cdr of the acons. All of the variables ELT, ELT_CAR and
|
|
941 ELT_CDR are automatically declared.
|
|
942
|
|
943 EXTERNAL_ALIST_LOOP_5 adds a TAIL argument to EXTERNAL_ALIST_LOOP_4,
|
|
944 just like EXTERNAL_LIST_LOOP_3 does, and again TAIL is automatically
|
|
945 declared.
|
|
946
|
|
947 EXTERNAL_ALIST_LOOP_6 adds a LEN argument to EXTERNAL_ALIST_LOOP_5,
|
|
948 just like EXTERNAL_LIST_LOOP_4 does, and again LEN is automatically
|
|
949 declared.
|
|
950
|
|
951 EXTERNAL_ALIST_LOOP_6_NO_DECLARE does not declare any of its arguments,
|
|
952 just like EXTERNAL_LIST_LOOP_4_NO_DECLARE, and so these must be declared
|
|
953 manually.
|
|
954 */
|
428
|
955
|
|
956 /* Optimized and safe macros for looping over external alists. */
|
|
957 #define EXTERNAL_ALIST_LOOP_4(elt, elt_car, elt_cdr, list) \
|
442
|
958 Lisp_Object elt, elt_car, elt_cdr; \
|
428
|
959 Lisp_Object hare_##elt, tortoise_##elt; \
|
|
960 EMACS_INT len_##elt; \
|
442
|
961 PRIVATE_EXTERNAL_ALIST_LOOP_8 (elt, elt_car, elt_cdr, list, \
|
428
|
962 len_##elt, hare_##elt, tortoise_##elt, \
|
|
963 CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
964
|
|
965 #define EXTERNAL_ALIST_LOOP_5(elt, elt_car, elt_cdr, list, tail) \
|
442
|
966 Lisp_Object elt, elt_car, elt_cdr, tail; \
|
428
|
967 Lisp_Object tortoise_##elt; \
|
|
968 EMACS_INT len_##elt; \
|
442
|
969 PRIVATE_EXTERNAL_ALIST_LOOP_8 (elt, elt_car, elt_cdr, list, \
|
428
|
970 len_##elt, tail, tortoise_##elt, \
|
|
971 CIRCULAR_LIST_SUSPICION_LENGTH) \
|
|
972
|
|
973 #define EXTERNAL_ALIST_LOOP_6(elt, elt_car, elt_cdr, list, tail, len) \
|
442
|
974 Lisp_Object elt, elt_car, elt_cdr, tail; \
|
|
975 EMACS_INT len; \
|
428
|
976 Lisp_Object tortoise_##elt; \
|
442
|
977 PRIVATE_EXTERNAL_ALIST_LOOP_8 (elt, elt_car, elt_cdr, list, \
|
428
|
978 len, tail, tortoise_##elt, \
|
|
979 CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
980
|
442
|
981 #define EXTERNAL_ALIST_LOOP_6_NO_DECLARE(elt, elt_car, elt_cdr, list, \
|
|
982 tail, len) \
|
|
983 Lisp_Object tortoise_##elt; \
|
|
984 PRIVATE_EXTERNAL_ALIST_LOOP_8 (elt, elt_car, elt_cdr, list, \
|
|
985 len, tail, tortoise_##elt, \
|
|
986 CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
987
|
|
988
|
|
989 #define PRIVATE_EXTERNAL_ALIST_LOOP_8(elt, elt_car, elt_cdr, list, len, \
|
|
990 hare, tortoise, suspicion_length) \
|
|
991 PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len, hare, tortoise, \
|
|
992 suspicion_length) \
|
428
|
993 if (CONSP (elt) ? (elt_car = XCAR (elt), elt_cdr = XCDR (elt), 0) :1) \
|
|
994 continue; \
|
|
995 else
|
|
996
|
442
|
997 /* Macros for looping over external property lists.
|
|
998
|
|
999 *** ALL OF THESE MACROS MUST BE DECLARED INSIDE BRACES -- SEE ABOVE. ***
|
|
1000
|
|
1001 EXTERNAL_PROPERTY_LIST_LOOP_3 maps over an external list assumed to
|
|
1002 be a property list, consisting of alternating pairs of keys
|
|
1003 (typically symbols or keywords) and values. Each iteration
|
|
1004 processes one such pair out of LIST, assigning the two elements to
|
|
1005 KEY and VALUE respectively. Malformed lists and circularities are
|
|
1006 trapped as usual, and in addition, property lists with an odd number
|
|
1007 of elements also signal an error.
|
|
1008
|
|
1009 EXTERNAL_PROPERTY_LIST_LOOP_4 adds a TAIL argument to
|
|
1010 EXTERNAL_PROPERTY_LIST_LOOP_3, just like EXTERNAL_LIST_LOOP_3 does,
|
|
1011 and again TAIL is automatically declared.
|
|
1012
|
|
1013 EXTERNAL_PROPERTY_LIST_LOOP_5 adds a LEN argument to
|
|
1014 EXTERNAL_PROPERTY_LIST_LOOP_4, just like EXTERNAL_LIST_LOOP_4 does,
|
|
1015 and again LEN is automatically declared. Note that in this case,
|
|
1016 LEN counts the iterations, NOT the total number of list elements
|
|
1017 processed, which is 2 * LEN.
|
|
1018
|
|
1019 EXTERNAL_PROPERTY_LIST_LOOP_5_NO_DECLARE does not declare any of its
|
|
1020 arguments, just like EXTERNAL_LIST_LOOP_4_NO_DECLARE, and so these
|
|
1021 must be declared manually. */
|
428
|
1022
|
|
1023 /* Optimized and safe macros for looping over external property lists. */
|
|
1024 #define EXTERNAL_PROPERTY_LIST_LOOP_3(key, value, list) \
|
|
1025 Lisp_Object key, value, hare_##key, tortoise_##key; \
|
442
|
1026 EMACS_INT len_##key; \
|
428
|
1027 EXTERNAL_PROPERTY_LIST_LOOP_7 (key, value, list, len_##key, hare_##key, \
|
|
1028 tortoise_##key, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1029
|
|
1030 #define EXTERNAL_PROPERTY_LIST_LOOP_4(key, value, list, tail) \
|
|
1031 Lisp_Object key, value, tail, tortoise_##key; \
|
442
|
1032 EMACS_INT len_##key; \
|
428
|
1033 EXTERNAL_PROPERTY_LIST_LOOP_7 (key, value, list, len_##key, tail, \
|
|
1034 tortoise_##key, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1035
|
|
1036 #define EXTERNAL_PROPERTY_LIST_LOOP_5(key, value, list, tail, len) \
|
|
1037 Lisp_Object key, value, tail, tortoise_##key; \
|
|
1038 EMACS_INT len; \
|
|
1039 EXTERNAL_PROPERTY_LIST_LOOP_7 (key, value, list, len, tail, \
|
|
1040 tortoise_##key, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1041
|
442
|
1042 #define EXTERNAL_PROPERTY_LIST_LOOP_5_NO_DECLARE(key, value, list, \
|
|
1043 tail, len) \
|
|
1044 Lisp_Object tortoise_##key; \
|
|
1045 EXTERNAL_PROPERTY_LIST_LOOP_7 (key, value, list, len, tail, \
|
|
1046 tortoise_##key, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1047
|
428
|
1048
|
|
1049 #define EXTERNAL_PROPERTY_LIST_LOOP_7(key, value, list, len, hare, \
|
|
1050 tortoise, suspicion_length) \
|
|
1051 for (tortoise = hare = list, len = 0; \
|
|
1052 \
|
|
1053 ((CONSP (hare) && \
|
|
1054 (key = XCAR (hare), \
|
|
1055 hare = XCDR (hare), \
|
442
|
1056 (CONSP (hare) ? 1 : \
|
|
1057 (signal_malformed_property_list_error (list), 0)))) ? \
|
428
|
1058 (value = XCAR (hare), 1) : \
|
|
1059 (NILP (hare) ? 0 : \
|
|
1060 (signal_malformed_property_list_error (list), 0))); \
|
|
1061 \
|
|
1062 hare = XCDR (hare), \
|
|
1063 ((++len < suspicion_length) ? \
|
|
1064 ((void) 0) : \
|
|
1065 (((len & 1) ? \
|
|
1066 ((void) (tortoise = XCDR (XCDR (tortoise)))) : \
|
|
1067 ((void) 0)) \
|
|
1068 , \
|
|
1069 (EQ (hare, tortoise) ? \
|
|
1070 ((void) signal_circular_property_list_error (list)) : \
|
|
1071 ((void) 0)))))
|
|
1072
|
|
1073 /* For a property list (alternating keywords/values) that may not be
|
|
1074 in valid list format -- will signal an error if the list is not in
|
|
1075 valid format. CONSVAR is used to keep track of the iterations
|
|
1076 without modifying PLIST.
|
|
1077
|
|
1078 We have to be tricky to still keep the same C format.*/
|
|
1079 #define EXTERNAL_PROPERTY_LIST_LOOP(tail, key, value, plist) \
|
|
1080 for (tail = plist; \
|
|
1081 (CONSP (tail) && CONSP (XCDR (tail)) ? \
|
|
1082 (key = XCAR (tail), value = XCAR (XCDR (tail))) : \
|
|
1083 (key = Qunbound, value = Qunbound)), \
|
|
1084 !NILP (tail); \
|
|
1085 tail = XCDR (XCDR (tail))) \
|
|
1086 if (UNBOUNDP (key)) \
|
|
1087 Fsignal (Qmalformed_property_list, list1 (plist)); \
|
|
1088 else
|
|
1089
|
|
1090 #define PROPERTY_LIST_LOOP(tail, key, value, plist) \
|
|
1091 for (tail = plist; \
|
|
1092 NILP (tail) ? 0 : \
|
|
1093 (key = XCAR (tail), tail = XCDR (tail), \
|
|
1094 value = XCAR (tail), tail = XCDR (tail), 1); \
|
|
1095 )
|
|
1096
|
|
1097 /* Return 1 if LIST is properly acyclic and nil-terminated, else 0. */
|
442
|
1098 INLINE_HEADER int TRUE_LIST_P (Lisp_Object object);
|
|
1099 INLINE_HEADER int
|
428
|
1100 TRUE_LIST_P (Lisp_Object object)
|
|
1101 {
|
|
1102 Lisp_Object hare, tortoise;
|
|
1103 EMACS_INT len;
|
|
1104
|
|
1105 for (hare = tortoise = object, len = 0;
|
|
1106 CONSP (hare);
|
|
1107 hare = XCDR (hare), len++)
|
|
1108 {
|
|
1109 if (len < CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1110 continue;
|
|
1111
|
|
1112 if (len & 1)
|
|
1113 tortoise = XCDR (tortoise);
|
|
1114 else if (EQ (hare, tortoise))
|
|
1115 return 0;
|
|
1116 }
|
|
1117
|
|
1118 return NILP (hare);
|
|
1119 }
|
|
1120
|
|
1121 /* Signal an error if LIST is not properly acyclic and nil-terminated. */
|
|
1122 #define CHECK_TRUE_LIST(list) do { \
|
|
1123 Lisp_Object CTL_list = (list); \
|
|
1124 Lisp_Object CTL_hare, CTL_tortoise; \
|
436
|
1125 EMACS_INT CTL_len; \
|
428
|
1126 \
|
|
1127 for (CTL_hare = CTL_tortoise = CTL_list, CTL_len = 0; \
|
|
1128 CONSP (CTL_hare); \
|
|
1129 CTL_hare = XCDR (CTL_hare), CTL_len++) \
|
|
1130 { \
|
|
1131 if (CTL_len < CIRCULAR_LIST_SUSPICION_LENGTH) \
|
|
1132 continue; \
|
|
1133 \
|
|
1134 if (CTL_len & 1) \
|
|
1135 CTL_tortoise = XCDR (CTL_tortoise); \
|
|
1136 else if (EQ (CTL_hare, CTL_tortoise)) \
|
|
1137 Fsignal (Qcircular_list, list1 (CTL_list)); \
|
|
1138 } \
|
|
1139 \
|
|
1140 if (! NILP (CTL_hare)) \
|
|
1141 signal_malformed_list_error (CTL_list); \
|
|
1142 } while (0)
|
|
1143
|
442
|
1144 /*------------------------------ string --------------------------------*/
|
428
|
1145
|
|
1146 struct Lisp_String
|
|
1147 {
|
|
1148 struct lrecord_header lheader;
|
|
1149 Bytecount size;
|
|
1150 Bufbyte *data;
|
|
1151 Lisp_Object plist;
|
|
1152 };
|
|
1153 typedef struct Lisp_String Lisp_String;
|
|
1154
|
|
1155 DECLARE_LRECORD (string, Lisp_String);
|
|
1156 #define XSTRING(x) XRECORD (x, string, Lisp_String)
|
|
1157 #define XSETSTRING(x, p) XSETRECORD (x, p, string)
|
|
1158 #define STRINGP(x) RECORDP (x, string)
|
|
1159 #define CHECK_STRING(x) CHECK_RECORD (x, string)
|
|
1160 #define CONCHECK_STRING(x) CONCHECK_RECORD (x, string)
|
|
1161
|
|
1162 #ifdef MULE
|
|
1163
|
442
|
1164 Charcount bytecount_to_charcount (const Bufbyte *ptr, Bytecount len);
|
|
1165 Bytecount charcount_to_bytecount (const Bufbyte *ptr, Charcount len);
|
428
|
1166
|
|
1167 #else /* not MULE */
|
|
1168
|
|
1169 # define bytecount_to_charcount(ptr, len) (len)
|
|
1170 # define charcount_to_bytecount(ptr, len) (len)
|
|
1171
|
|
1172 #endif /* not MULE */
|
|
1173
|
|
1174 #define string_length(s) ((s)->size)
|
|
1175 #define XSTRING_LENGTH(s) string_length (XSTRING (s))
|
|
1176 #define XSTRING_CHAR_LENGTH(s) string_char_length (XSTRING (s))
|
|
1177 #define string_data(s) ((s)->data + 0)
|
|
1178 #define XSTRING_DATA(s) string_data (XSTRING (s))
|
|
1179 #define string_byte(s, i) ((s)->data[i] + 0)
|
|
1180 #define XSTRING_BYTE(s, i) string_byte (XSTRING (s), i)
|
|
1181 #define string_byte_addr(s, i) (&((s)->data[i]))
|
|
1182 #define set_string_length(s, len) ((void) ((s)->size = (len)))
|
|
1183 #define set_string_data(s, ptr) ((void) ((s)->data = (ptr)))
|
442
|
1184 #define set_string_byte(s, i, b) ((void) ((s)->data[i] = (b)))
|
428
|
1185
|
|
1186 void resize_string (Lisp_String *s, Bytecount pos, Bytecount delta);
|
|
1187
|
|
1188 #ifdef MULE
|
|
1189
|
442
|
1190 INLINE_HEADER Charcount string_char_length (Lisp_String *s);
|
|
1191 INLINE_HEADER Charcount
|
428
|
1192 string_char_length (Lisp_String *s)
|
|
1193 {
|
|
1194 return bytecount_to_charcount (string_data (s), string_length (s));
|
|
1195 }
|
|
1196
|
|
1197 # define string_char(s, i) charptr_emchar_n (string_data (s), i)
|
|
1198 # define string_char_addr(s, i) charptr_n_addr (string_data (s), i)
|
|
1199 void set_string_char (Lisp_String *s, Charcount i, Emchar c);
|
|
1200
|
|
1201 #else /* not MULE */
|
|
1202
|
|
1203 # define string_char_length(s) string_length (s)
|
|
1204 # define string_char(s, i) ((Emchar) string_byte (s, i))
|
|
1205 # define string_char_addr(s, i) string_byte_addr (s, i)
|
442
|
1206 # define set_string_char(s, i, c) set_string_byte (s, i, (Bufbyte)c)
|
428
|
1207
|
|
1208 #endif /* not MULE */
|
|
1209
|
456
|
1210 /* Return the true aligned size of a struct whose last member is a
|
|
1211 variable-length array field. (this is known as the "struct hack") */
|
|
1212 /* Implementation: in practice, structtype and fieldtype usually have
|
|
1213 the same alignment, but we can't be sure. We need to use
|
|
1214 ALIGN_SIZE to be absolutely sure of getting the correct alignment.
|
|
1215 To help the compiler's optimizer, we use a ternary expression that
|
|
1216 only a very stupid compiler would fail to correctly simplify. */
|
|
1217 #define FLEXIBLE_ARRAY_STRUCT_SIZEOF(structtype, \
|
|
1218 fieldtype, \
|
|
1219 fieldname, \
|
|
1220 array_length) \
|
|
1221 (ALIGNOF (structtype) == ALIGNOF (fieldtype) \
|
|
1222 ? (offsetof (structtype, fieldname) + \
|
|
1223 (offsetof (structtype, fieldname[1]) - \
|
|
1224 offsetof (structtype, fieldname[0])) * \
|
|
1225 (array_length)) \
|
|
1226 : (ALIGN_SIZE \
|
|
1227 ((offsetof (structtype, fieldname) + \
|
|
1228 (offsetof (structtype, fieldname[1]) - \
|
|
1229 offsetof (structtype, fieldname[0])) * \
|
|
1230 (array_length)), \
|
|
1231 ALIGNOF (structtype))))
|
442
|
1232
|
|
1233 /*------------------------------ vector --------------------------------*/
|
428
|
1234
|
|
1235 struct Lisp_Vector
|
|
1236 {
|
|
1237 struct lcrecord_header header;
|
|
1238 long size;
|
|
1239 /* next is now chained through v->contents[size], terminated by Qzero.
|
|
1240 This means that pure vectors don't need a "next" */
|
|
1241 /* struct Lisp_Vector *next; */
|
|
1242 Lisp_Object contents[1];
|
|
1243 };
|
|
1244 typedef struct Lisp_Vector Lisp_Vector;
|
|
1245
|
|
1246 DECLARE_LRECORD (vector, Lisp_Vector);
|
|
1247 #define XVECTOR(x) XRECORD (x, vector, Lisp_Vector)
|
|
1248 #define XSETVECTOR(x, p) XSETRECORD (x, p, vector)
|
|
1249 #define VECTORP(x) RECORDP (x, vector)
|
|
1250 #define CHECK_VECTOR(x) CHECK_RECORD (x, vector)
|
|
1251 #define CONCHECK_VECTOR(x) CONCHECK_RECORD (x, vector)
|
|
1252
|
|
1253 #define vector_length(v) ((v)->size)
|
|
1254 #define XVECTOR_LENGTH(s) vector_length (XVECTOR (s))
|
|
1255 #define vector_data(v) ((v)->contents)
|
|
1256 #define XVECTOR_DATA(s) vector_data (XVECTOR (s))
|
|
1257
|
442
|
1258 /*---------------------------- bit vectors -----------------------------*/
|
428
|
1259
|
|
1260 #if (LONGBITS < 16)
|
|
1261 #error What the hell?!
|
|
1262 #elif (LONGBITS < 32)
|
|
1263 # define LONGBITS_LOG2 4
|
|
1264 # define LONGBITS_POWER_OF_2 16
|
|
1265 #elif (LONGBITS < 64)
|
|
1266 # define LONGBITS_LOG2 5
|
|
1267 # define LONGBITS_POWER_OF_2 32
|
|
1268 #elif (LONGBITS < 128)
|
|
1269 # define LONGBITS_LOG2 6
|
|
1270 # define LONGBITS_POWER_OF_2 64
|
|
1271 #else
|
|
1272 #error You really have 128-bit integers?!
|
|
1273 #endif
|
|
1274
|
|
1275 struct Lisp_Bit_Vector
|
|
1276 {
|
|
1277 struct lrecord_header lheader;
|
|
1278 Lisp_Object next;
|
|
1279 size_t size;
|
|
1280 unsigned long bits[1];
|
|
1281 };
|
|
1282 typedef struct Lisp_Bit_Vector Lisp_Bit_Vector;
|
|
1283
|
|
1284 DECLARE_LRECORD (bit_vector, Lisp_Bit_Vector);
|
|
1285 #define XBIT_VECTOR(x) XRECORD (x, bit_vector, Lisp_Bit_Vector)
|
|
1286 #define XSETBIT_VECTOR(x, p) XSETRECORD (x, p, bit_vector)
|
|
1287 #define BIT_VECTORP(x) RECORDP (x, bit_vector)
|
|
1288 #define CHECK_BIT_VECTOR(x) CHECK_RECORD (x, bit_vector)
|
|
1289 #define CONCHECK_BIT_VECTOR(x) CONCHECK_RECORD (x, bit_vector)
|
|
1290
|
|
1291 #define BITP(x) (INTP (x) && (XINT (x) == 0 || XINT (x) == 1))
|
|
1292
|
|
1293 #define CHECK_BIT(x) do { \
|
|
1294 if (!BITP (x)) \
|
|
1295 dead_wrong_type_argument (Qbitp, x);\
|
|
1296 } while (0)
|
|
1297
|
|
1298 #define CONCHECK_BIT(x) do { \
|
|
1299 if (!BITP (x)) \
|
|
1300 x = wrong_type_argument (Qbitp, x); \
|
|
1301 } while (0)
|
|
1302
|
|
1303 #define bit_vector_length(v) ((v)->size)
|
|
1304 #define bit_vector_next(v) ((v)->next)
|
|
1305
|
442
|
1306 INLINE_HEADER int bit_vector_bit (Lisp_Bit_Vector *v, size_t n);
|
|
1307 INLINE_HEADER int
|
428
|
1308 bit_vector_bit (Lisp_Bit_Vector *v, size_t n)
|
|
1309 {
|
|
1310 return ((v->bits[n >> LONGBITS_LOG2] >> (n & (LONGBITS_POWER_OF_2 - 1)))
|
|
1311 & 1);
|
|
1312 }
|
|
1313
|
442
|
1314 INLINE_HEADER void set_bit_vector_bit (Lisp_Bit_Vector *v, size_t n, int value);
|
|
1315 INLINE_HEADER void
|
428
|
1316 set_bit_vector_bit (Lisp_Bit_Vector *v, size_t n, int value)
|
|
1317 {
|
|
1318 if (value)
|
|
1319 v->bits[n >> LONGBITS_LOG2] |= (1UL << (n & (LONGBITS_POWER_OF_2 - 1)));
|
|
1320 else
|
|
1321 v->bits[n >> LONGBITS_LOG2] &= ~(1UL << (n & (LONGBITS_POWER_OF_2 - 1)));
|
|
1322 }
|
|
1323
|
|
1324 /* Number of longs required to hold LEN bits */
|
|
1325 #define BIT_VECTOR_LONG_STORAGE(len) \
|
|
1326 (((len) + LONGBITS_POWER_OF_2 - 1) >> LONGBITS_LOG2)
|
|
1327
|
442
|
1328 /*------------------------------ symbol --------------------------------*/
|
428
|
1329
|
440
|
1330 typedef struct Lisp_Symbol Lisp_Symbol;
|
428
|
1331 struct Lisp_Symbol
|
|
1332 {
|
|
1333 struct lrecord_header lheader;
|
|
1334 /* next symbol in this obarray bucket */
|
440
|
1335 Lisp_Symbol *next;
|
|
1336 Lisp_String *name;
|
428
|
1337 Lisp_Object value;
|
|
1338 Lisp_Object function;
|
|
1339 Lisp_Object plist;
|
|
1340 };
|
|
1341
|
|
1342 #define SYMBOL_IS_KEYWORD(sym) \
|
|
1343 ((string_byte (symbol_name (XSYMBOL (sym)), 0) == ':') \
|
|
1344 && EQ (sym, oblookup (Vobarray, \
|
|
1345 string_data (symbol_name (XSYMBOL (sym))), \
|
|
1346 string_length (symbol_name (XSYMBOL (sym))))))
|
|
1347 #define KEYWORDP(obj) (SYMBOLP (obj) && SYMBOL_IS_KEYWORD (obj))
|
|
1348
|
|
1349 DECLARE_LRECORD (symbol, Lisp_Symbol);
|
|
1350 #define XSYMBOL(x) XRECORD (x, symbol, Lisp_Symbol)
|
|
1351 #define XSETSYMBOL(x, p) XSETRECORD (x, p, symbol)
|
|
1352 #define SYMBOLP(x) RECORDP (x, symbol)
|
|
1353 #define CHECK_SYMBOL(x) CHECK_RECORD (x, symbol)
|
|
1354 #define CONCHECK_SYMBOL(x) CONCHECK_RECORD (x, symbol)
|
|
1355
|
|
1356 #define symbol_next(s) ((s)->next)
|
|
1357 #define symbol_name(s) ((s)->name)
|
|
1358 #define symbol_value(s) ((s)->value)
|
|
1359 #define symbol_function(s) ((s)->function)
|
|
1360 #define symbol_plist(s) ((s)->plist)
|
|
1361
|
442
|
1362 /*------------------------------- subr ---------------------------------*/
|
428
|
1363
|
|
1364 typedef Lisp_Object (*lisp_fn_t) (void);
|
|
1365
|
|
1366 struct Lisp_Subr
|
|
1367 {
|
|
1368 struct lrecord_header lheader;
|
442
|
1369 short min_args;
|
|
1370 short max_args;
|
|
1371 const char *prompt;
|
|
1372 const char *doc;
|
|
1373 const char *name;
|
428
|
1374 lisp_fn_t subr_fn;
|
|
1375 };
|
|
1376 typedef struct Lisp_Subr Lisp_Subr;
|
|
1377
|
|
1378 DECLARE_LRECORD (subr, Lisp_Subr);
|
|
1379 #define XSUBR(x) XRECORD (x, subr, Lisp_Subr)
|
|
1380 #define XSETSUBR(x, p) XSETRECORD (x, p, subr)
|
|
1381 #define SUBRP(x) RECORDP (x, subr)
|
|
1382 #define CHECK_SUBR(x) CHECK_RECORD (x, subr)
|
|
1383 #define CONCHECK_SUBR(x) CONCHECK_RECORD (x, subr)
|
|
1384
|
436
|
1385 #define subr_function(subr) ((subr)->subr_fn)
|
|
1386 #define SUBR_FUNCTION(subr,max_args) \
|
|
1387 ((Lisp_Object (*) (EXFUN_##max_args)) (subr)->subr_fn)
|
|
1388 #define subr_name(subr) ((subr)->name)
|
428
|
1389
|
442
|
1390 /*------------------------------ marker --------------------------------*/
|
|
1391
|
428
|
1392
|
440
|
1393 typedef struct Lisp_Marker Lisp_Marker;
|
428
|
1394 struct Lisp_Marker
|
|
1395 {
|
|
1396 struct lrecord_header lheader;
|
440
|
1397 Lisp_Marker *next;
|
|
1398 Lisp_Marker *prev;
|
428
|
1399 struct buffer *buffer;
|
|
1400 Memind memind;
|
|
1401 char insertion_type;
|
|
1402 };
|
|
1403
|
|
1404 DECLARE_LRECORD (marker, Lisp_Marker);
|
|
1405 #define XMARKER(x) XRECORD (x, marker, Lisp_Marker)
|
|
1406 #define XSETMARKER(x, p) XSETRECORD (x, p, marker)
|
|
1407 #define MARKERP(x) RECORDP (x, marker)
|
|
1408 #define CHECK_MARKER(x) CHECK_RECORD (x, marker)
|
|
1409 #define CONCHECK_MARKER(x) CONCHECK_RECORD (x, marker)
|
|
1410
|
|
1411 /* The second check was looking for GCed markers still in use */
|
|
1412 /* if (INTP (XMARKER (x)->lheader.next.v)) abort (); */
|
|
1413
|
|
1414 #define marker_next(m) ((m)->next)
|
|
1415 #define marker_prev(m) ((m)->prev)
|
|
1416
|
442
|
1417 /*------------------------------- char ---------------------------------*/
|
428
|
1418
|
|
1419 #define CHARP(x) (XTYPE (x) == Lisp_Type_Char)
|
|
1420
|
|
1421 #ifdef ERROR_CHECK_TYPECHECK
|
|
1422
|
442
|
1423 INLINE_HEADER Emchar XCHAR (Lisp_Object obj);
|
|
1424 INLINE_HEADER Emchar
|
428
|
1425 XCHAR (Lisp_Object obj)
|
|
1426 {
|
|
1427 assert (CHARP (obj));
|
|
1428 return XCHARVAL (obj);
|
|
1429 }
|
|
1430
|
|
1431 #else
|
|
1432
|
442
|
1433 #define XCHAR(x) ((Emchar)XCHARVAL (x))
|
428
|
1434
|
|
1435 #endif
|
|
1436
|
|
1437 #define CHECK_CHAR(x) CHECK_NONRECORD (x, Lisp_Type_Char, Qcharacterp)
|
|
1438 #define CONCHECK_CHAR(x) CONCHECK_NONRECORD (x, Lisp_Type_Char, Qcharacterp)
|
|
1439
|
|
1440
|
442
|
1441 /*------------------------------ float ---------------------------------*/
|
428
|
1442
|
|
1443 #ifdef LISP_FLOAT_TYPE
|
|
1444
|
|
1445 /* Note: the 'unused_next_' field exists only to ensure that the
|
|
1446 `next' pointer fits within the structure, for the purposes of the
|
|
1447 free list. This makes a difference in the unlikely case of
|
|
1448 sizeof(double) being smaller than sizeof(void *). */
|
|
1449
|
|
1450 struct Lisp_Float
|
|
1451 {
|
|
1452 struct lrecord_header lheader;
|
|
1453 union { double d; struct Lisp_Float *unused_next_; } data;
|
|
1454 };
|
|
1455 typedef struct Lisp_Float Lisp_Float;
|
|
1456
|
|
1457 DECLARE_LRECORD (float, Lisp_Float);
|
|
1458 #define XFLOAT(x) XRECORD (x, float, Lisp_Float)
|
|
1459 #define XSETFLOAT(x, p) XSETRECORD (x, p, float)
|
|
1460 #define FLOATP(x) RECORDP (x, float)
|
|
1461 #define CHECK_FLOAT(x) CHECK_RECORD (x, float)
|
|
1462 #define CONCHECK_FLOAT(x) CONCHECK_RECORD (x, float)
|
|
1463
|
|
1464 #define float_data(f) ((f)->data.d)
|
|
1465 #define XFLOAT_DATA(x) float_data (XFLOAT (x))
|
|
1466
|
|
1467 #define XFLOATINT(n) extract_float (n)
|
|
1468
|
|
1469 #define CHECK_INT_OR_FLOAT(x) do { \
|
|
1470 if (!INT_OR_FLOATP (x)) \
|
|
1471 dead_wrong_type_argument (Qnumberp, x); \
|
|
1472 } while (0)
|
|
1473
|
|
1474 #define CONCHECK_INT_OR_FLOAT(x) do { \
|
|
1475 if (!INT_OR_FLOATP (x)) \
|
|
1476 x = wrong_type_argument (Qnumberp, x); \
|
|
1477 } while (0)
|
|
1478
|
|
1479 # define INT_OR_FLOATP(x) (INTP (x) || FLOATP (x))
|
|
1480
|
|
1481 #else /* not LISP_FLOAT_TYPE */
|
|
1482
|
|
1483 #define XFLOAT(x) --- error! No float support. ---
|
|
1484 #define XSETFLOAT(x, p) --- error! No float support. ---
|
|
1485 #define FLOATP(x) 0
|
|
1486 #define CHECK_FLOAT(x) --- error! No float support. ---
|
|
1487 #define CONCHECK_FLOAT(x) --- error! No float support. ---
|
|
1488
|
|
1489 #define XFLOATINT(n) XINT(n)
|
|
1490 #define CHECK_INT_OR_FLOAT CHECK_INT
|
|
1491 #define CONCHECK_INT_OR_FLOAT CONCHECK_INT
|
|
1492 #define INT_OR_FLOATP(x) INTP (x)
|
|
1493
|
|
1494 #endif /* not LISP_FLOAT_TYPE */
|
|
1495
|
442
|
1496 /*-------------------------------- int ---------------------------------*/
|
428
|
1497
|
|
1498 #define ZEROP(x) EQ (x, Qzero)
|
|
1499
|
|
1500 #ifdef ERROR_CHECK_TYPECHECK
|
|
1501
|
442
|
1502 INLINE_HEADER EMACS_INT XINT (Lisp_Object obj);
|
|
1503 INLINE_HEADER EMACS_INT
|
428
|
1504 XINT (Lisp_Object obj)
|
|
1505 {
|
|
1506 assert (INTP (obj));
|
|
1507 return XREALINT (obj);
|
|
1508 }
|
|
1509
|
442
|
1510 INLINE_HEADER EMACS_INT XCHAR_OR_INT (Lisp_Object obj);
|
|
1511 INLINE_HEADER EMACS_INT
|
428
|
1512 XCHAR_OR_INT (Lisp_Object obj)
|
|
1513 {
|
|
1514 assert (INTP (obj) || CHARP (obj));
|
|
1515 return CHARP (obj) ? XCHAR (obj) : XINT (obj);
|
|
1516 }
|
|
1517
|
|
1518 #else /* no error checking */
|
|
1519
|
|
1520 #define XINT(obj) XREALINT (obj)
|
|
1521 #define XCHAR_OR_INT(obj) (CHARP (obj) ? XCHAR (obj) : XINT (obj))
|
|
1522
|
|
1523 #endif /* no error checking */
|
|
1524
|
|
1525 #define CHECK_INT(x) do { \
|
|
1526 if (!INTP (x)) \
|
|
1527 dead_wrong_type_argument (Qintegerp, x); \
|
|
1528 } while (0)
|
|
1529
|
|
1530 #define CONCHECK_INT(x) do { \
|
|
1531 if (!INTP (x)) \
|
|
1532 x = wrong_type_argument (Qintegerp, x); \
|
|
1533 } while (0)
|
|
1534
|
|
1535 #define NATNUMP(x) (INTP (x) && XINT (x) >= 0)
|
|
1536
|
|
1537 #define CHECK_NATNUM(x) do { \
|
|
1538 if (!NATNUMP (x)) \
|
|
1539 dead_wrong_type_argument (Qnatnump, x); \
|
|
1540 } while (0)
|
|
1541
|
|
1542 #define CONCHECK_NATNUM(x) do { \
|
|
1543 if (!NATNUMP (x)) \
|
|
1544 x = wrong_type_argument (Qnatnump, x); \
|
|
1545 } while (0)
|
|
1546
|
|
1547 /* next three always continuable because they coerce their arguments. */
|
|
1548 #define CHECK_INT_COERCE_CHAR(x) do { \
|
|
1549 if (INTP (x)) \
|
|
1550 ; \
|
|
1551 else if (CHARP (x)) \
|
|
1552 x = make_int (XCHAR (x)); \
|
|
1553 else \
|
|
1554 x = wrong_type_argument (Qinteger_or_char_p, x); \
|
|
1555 } while (0)
|
|
1556
|
|
1557 #define CHECK_INT_COERCE_MARKER(x) do { \
|
|
1558 if (INTP (x)) \
|
|
1559 ; \
|
|
1560 else if (MARKERP (x)) \
|
|
1561 x = make_int (marker_position (x)); \
|
|
1562 else \
|
|
1563 x = wrong_type_argument (Qinteger_or_marker_p, x); \
|
|
1564 } while (0)
|
|
1565
|
|
1566 #define CHECK_INT_COERCE_CHAR_OR_MARKER(x) do { \
|
|
1567 if (INTP (x)) \
|
|
1568 ; \
|
|
1569 else if (CHARP (x)) \
|
|
1570 x = make_int (XCHAR (x)); \
|
|
1571 else if (MARKERP (x)) \
|
|
1572 x = make_int (marker_position (x)); \
|
|
1573 else \
|
|
1574 x = wrong_type_argument (Qinteger_char_or_marker_p, x); \
|
|
1575 } while (0)
|
|
1576
|
|
1577
|
442
|
1578 /*--------------------------- readonly objects -------------------------*/
|
440
|
1579
|
428
|
1580 #define CHECK_C_WRITEABLE(obj) \
|
|
1581 do { if (c_readonly (obj)) c_write_error (obj); } while (0)
|
|
1582
|
|
1583 #define CHECK_LISP_WRITEABLE(obj) \
|
|
1584 do { if (lisp_readonly (obj)) lisp_write_error (obj); } while (0)
|
|
1585
|
|
1586 #define C_READONLY(obj) (C_READONLY_RECORD_HEADER_P(XRECORD_LHEADER (obj)))
|
|
1587 #define LISP_READONLY(obj) (LISP_READONLY_RECORD_HEADER_P(XRECORD_LHEADER (obj)))
|
|
1588
|
442
|
1589 /*----------------------------- structrures ----------------------------*/
|
428
|
1590
|
|
1591 typedef struct structure_keyword_entry structure_keyword_entry;
|
|
1592 struct structure_keyword_entry
|
|
1593 {
|
|
1594 Lisp_Object keyword;
|
|
1595 int (*validate) (Lisp_Object keyword, Lisp_Object value,
|
578
|
1596 Error_Behavior errb);
|
428
|
1597 };
|
|
1598
|
|
1599 typedef struct
|
|
1600 {
|
|
1601 Dynarr_declare (structure_keyword_entry);
|
|
1602 } structure_keyword_entry_dynarr;
|
|
1603
|
|
1604 typedef struct structure_type structure_type;
|
|
1605 struct structure_type
|
|
1606 {
|
|
1607 Lisp_Object type;
|
|
1608 structure_keyword_entry_dynarr *keywords;
|
578
|
1609 int (*validate) (Lisp_Object data, Error_Behavior errb);
|
428
|
1610 Lisp_Object (*instantiate) (Lisp_Object data);
|
|
1611 };
|
|
1612
|
|
1613 typedef struct
|
|
1614 {
|
|
1615 Dynarr_declare (structure_type);
|
|
1616 } structure_type_dynarr;
|
|
1617
|
|
1618 struct structure_type *define_structure_type (Lisp_Object type,
|
|
1619 int (*validate)
|
|
1620 (Lisp_Object data,
|
578
|
1621 Error_Behavior errb),
|
428
|
1622 Lisp_Object (*instantiate)
|
|
1623 (Lisp_Object data));
|
|
1624 void define_structure_type_keyword (struct structure_type *st,
|
|
1625 Lisp_Object keyword,
|
|
1626 int (*validate) (Lisp_Object keyword,
|
|
1627 Lisp_Object value,
|
578
|
1628 Error_Behavior errb));
|
428
|
1629
|
442
|
1630 /*---------------------------- weak lists ------------------------------*/
|
428
|
1631
|
|
1632 enum weak_list_type
|
|
1633 {
|
|
1634 /* element disappears if it's unmarked. */
|
|
1635 WEAK_LIST_SIMPLE,
|
|
1636 /* element disappears if it's a cons and either its car or
|
|
1637 cdr is unmarked. */
|
|
1638 WEAK_LIST_ASSOC,
|
|
1639 /* element disappears if it's a cons and its car is unmarked. */
|
|
1640 WEAK_LIST_KEY_ASSOC,
|
|
1641 /* element disappears if it's a cons and its cdr is unmarked. */
|
442
|
1642 WEAK_LIST_VALUE_ASSOC,
|
|
1643 /* element disappears if it's a cons and neither its car nor
|
|
1644 its cdr is marked. */
|
|
1645 WEAK_LIST_FULL_ASSOC
|
428
|
1646 };
|
|
1647
|
|
1648 struct weak_list
|
|
1649 {
|
|
1650 struct lcrecord_header header;
|
|
1651 Lisp_Object list; /* don't mark through this! */
|
|
1652 enum weak_list_type type;
|
|
1653 Lisp_Object next_weak; /* don't mark through this! */
|
|
1654 };
|
|
1655
|
|
1656 DECLARE_LRECORD (weak_list, struct weak_list);
|
|
1657 #define XWEAK_LIST(x) XRECORD (x, weak_list, struct weak_list)
|
|
1658 #define XSETWEAK_LIST(x, p) XSETRECORD (x, p, weak_list)
|
|
1659 #define WEAK_LISTP(x) RECORDP (x, weak_list)
|
|
1660 #define CHECK_WEAK_LIST(x) CHECK_RECORD (x, weak_list)
|
|
1661 #define CONCHECK_WEAK_LIST(x) CONCHECK_RECORD (x, weak_list)
|
|
1662
|
|
1663 #define weak_list_list(w) ((w)->list)
|
|
1664 #define XWEAK_LIST_LIST(w) (XWEAK_LIST (w)->list)
|
|
1665
|
|
1666 Lisp_Object make_weak_list (enum weak_list_type type);
|
|
1667 /* The following two are only called by the garbage collector */
|
|
1668 int finish_marking_weak_lists (void);
|
|
1669 void prune_weak_lists (void);
|
|
1670
|
442
|
1671 /*-------------------------- lcrecord-list -----------------------------*/
|
428
|
1672
|
|
1673 struct lcrecord_list
|
|
1674 {
|
|
1675 struct lcrecord_header header;
|
|
1676 Lisp_Object free;
|
|
1677 size_t size;
|
442
|
1678 const struct lrecord_implementation *implementation;
|
428
|
1679 };
|
|
1680
|
|
1681 DECLARE_LRECORD (lcrecord_list, struct lcrecord_list);
|
|
1682 #define XLCRECORD_LIST(x) XRECORD (x, lcrecord_list, struct lcrecord_list)
|
|
1683 #define XSETLCRECORD_LIST(x, p) XSETRECORD (x, p, lcrecord_list)
|
|
1684 #define LCRECORD_LISTP(x) RECORDP (x, lcrecord_list)
|
|
1685 /* #define CHECK_LCRECORD_LIST(x) CHECK_RECORD (x, lcrecord_list)
|
|
1686 Lcrecord lists should never escape to the Lisp level, so
|
|
1687 functions should not be doing this. */
|
|
1688
|
|
1689 Lisp_Object make_lcrecord_list (size_t size,
|
442
|
1690 const struct lrecord_implementation
|
428
|
1691 *implementation);
|
|
1692 Lisp_Object allocate_managed_lcrecord (Lisp_Object lcrecord_list);
|
|
1693 void free_managed_lcrecord (Lisp_Object lcrecord_list, Lisp_Object lcrecord);
|
|
1694
|
|
1695
|
|
1696 /************************************************************************/
|
|
1697 /* Definitions of primitive Lisp functions and variables */
|
|
1698 /************************************************************************/
|
|
1699
|
|
1700
|
|
1701 /* DEFUN - Define a built-in Lisp-visible C function or `subr'.
|
|
1702 `lname' should be the name to give the function in Lisp,
|
|
1703 as a null-terminated C string.
|
|
1704 `Fname' should be the C equivalent of `lname', using only characters
|
|
1705 valid in a C identifier, with an "F" prepended.
|
|
1706 The name of the C constant structure that records information
|
|
1707 on this function for internal use is "S" concatenated with Fname.
|
|
1708 `min_args' should be a number, the minimum number of arguments allowed.
|
|
1709 `max_args' should be a number, the maximum number of arguments allowed,
|
|
1710 or else MANY or UNEVALLED.
|
|
1711 MANY means pass a vector of evaluated arguments,
|
|
1712 in the form of an integer number-of-arguments
|
|
1713 followed by the address of a vector of Lisp_Objects
|
|
1714 which contains the argument values.
|
|
1715 UNEVALLED means pass the list of unevaluated arguments.
|
|
1716 `prompt' says how to read arguments for an interactive call.
|
|
1717 See the doc string for `interactive'.
|
|
1718 A null string means call interactively with no arguments.
|
|
1719 `arglist' are the comma-separated arguments (always Lisp_Objects) for
|
|
1720 the function.
|
|
1721 The docstring for the function is placed as a "C" comment between
|
|
1722 the prompt and the `args' argument. make-docfile reads the
|
|
1723 comment and creates the DOC file from it.
|
|
1724 */
|
|
1725
|
|
1726 #define EXFUN_0 void
|
|
1727 #define EXFUN_1 Lisp_Object
|
|
1728 #define EXFUN_2 Lisp_Object,Lisp_Object
|
|
1729 #define EXFUN_3 Lisp_Object,Lisp_Object,Lisp_Object
|
|
1730 #define EXFUN_4 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object
|
|
1731 #define EXFUN_5 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object
|
|
1732 #define EXFUN_6 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object, \
|
|
1733 Lisp_Object
|
|
1734 #define EXFUN_7 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object, \
|
|
1735 Lisp_Object,Lisp_Object
|
|
1736 #define EXFUN_8 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object, \
|
|
1737 Lisp_Object,Lisp_Object,Lisp_Object
|
|
1738 #define EXFUN_MANY int, Lisp_Object*
|
|
1739 #define EXFUN_UNEVALLED Lisp_Object
|
|
1740 #define EXFUN(sym, max_args) Lisp_Object sym (EXFUN_##max_args)
|
|
1741
|
|
1742 #define SUBR_MAX_ARGS 8
|
|
1743 #define MANY -2
|
|
1744 #define UNEVALLED -1
|
|
1745
|
|
1746 /* Can't be const, because then subr->doc is read-only and
|
|
1747 Snarf_documentation chokes */
|
|
1748
|
|
1749 #define DEFUN(lname, Fname, min_args, max_args, prompt, arglist) \
|
|
1750 Lisp_Object Fname (EXFUN_##max_args); \
|
442
|
1751 static struct Lisp_Subr S##Fname = \
|
|
1752 { \
|
|
1753 { /* struct lrecord_header */ \
|
|
1754 lrecord_type_subr, /* lrecord_type_index */ \
|
|
1755 1, /* mark bit */ \
|
|
1756 1, /* c_readonly bit */ \
|
|
1757 1 /* lisp_readonly bit */ \
|
|
1758 }, \
|
|
1759 min_args, \
|
|
1760 max_args, \
|
|
1761 prompt, \
|
|
1762 0, /* doc string */ \
|
|
1763 lname, \
|
|
1764 (lisp_fn_t) Fname \
|
|
1765 }; \
|
428
|
1766 Lisp_Object Fname (DEFUN_##max_args arglist)
|
|
1767
|
|
1768 /* Heavy ANSI C preprocessor hackery to get DEFUN to declare a
|
|
1769 prototype that matches max_args, and add the obligatory
|
|
1770 `Lisp_Object' type declaration to the formal C arguments. */
|
|
1771
|
|
1772 #define DEFUN_MANY(named_int, named_Lisp_Object) named_int, named_Lisp_Object
|
|
1773 #define DEFUN_UNEVALLED(args) Lisp_Object args
|
|
1774 #define DEFUN_0() void
|
|
1775 #define DEFUN_1(a) Lisp_Object a
|
|
1776 #define DEFUN_2(a,b) DEFUN_1(a), Lisp_Object b
|
|
1777 #define DEFUN_3(a,b,c) DEFUN_2(a,b), Lisp_Object c
|
|
1778 #define DEFUN_4(a,b,c,d) DEFUN_3(a,b,c), Lisp_Object d
|
|
1779 #define DEFUN_5(a,b,c,d,e) DEFUN_4(a,b,c,d), Lisp_Object e
|
|
1780 #define DEFUN_6(a,b,c,d,e,f) DEFUN_5(a,b,c,d,e), Lisp_Object f
|
|
1781 #define DEFUN_7(a,b,c,d,e,f,g) DEFUN_6(a,b,c,d,e,f), Lisp_Object g
|
|
1782 #define DEFUN_8(a,b,c,d,e,f,g,h) DEFUN_7(a,b,c,d,e,f,g),Lisp_Object h
|
|
1783
|
|
1784 /* WARNING: If you add defines here for higher values of max_args,
|
|
1785 make sure to also fix the clauses in PRIMITIVE_FUNCALL(),
|
|
1786 and change the define of SUBR_MAX_ARGS above. */
|
|
1787
|
|
1788 #include "symeval.h"
|
|
1789
|
|
1790 /* `specpdl' is the special binding/unwind-protect stack.
|
|
1791
|
|
1792 Knuth says (see the Jargon File):
|
|
1793 At MIT, `pdl' [abbreviation for `Push Down List'] used to
|
|
1794 be a more common synonym for `stack'.
|
|
1795 Everywhere else `stack' seems to be the preferred term.
|
|
1796
|
|
1797 specpdl_depth is the current depth of `specpdl'.
|
|
1798 Save this for use later as arg to `unbind_to'. */
|
|
1799 extern int specpdl_depth_counter;
|
|
1800 #define specpdl_depth() specpdl_depth_counter
|
|
1801
|
442
|
1802
|
|
1803 #define CHECK_FUNCTION(fun) do { \
|
|
1804 while (NILP (Ffunctionp (fun))) \
|
|
1805 signal_invalid_function_error (fun); \
|
|
1806 } while (0)
|
|
1807
|
428
|
1808
|
|
1809 /************************************************************************/
|
|
1810 /* Checking for QUIT */
|
|
1811 /************************************************************************/
|
|
1812
|
|
1813 /* Asynchronous events set something_happened, and then are processed
|
|
1814 within the QUIT macro. At this point, we are guaranteed to not be in
|
|
1815 any sensitive code. */
|
|
1816
|
|
1817 extern volatile int something_happened;
|
|
1818 int check_what_happened (void);
|
|
1819
|
|
1820 extern volatile int quit_check_signal_happened;
|
|
1821 extern volatile int quit_check_signal_tick_count;
|
|
1822 int check_quit (void);
|
|
1823
|
|
1824 void signal_quit (void);
|
|
1825
|
|
1826 /* Nonzero if ought to quit now. */
|
|
1827 #define QUITP \
|
|
1828 ((quit_check_signal_happened ? check_quit () : 0), \
|
|
1829 (!NILP (Vquit_flag) && (NILP (Vinhibit_quit) \
|
|
1830 || EQ (Vquit_flag, Qcritical))))
|
|
1831
|
|
1832 /* QUIT used to call QUITP, but there are some places where QUITP
|
|
1833 is called directly, and check_what_happened() should only be called
|
|
1834 when Emacs is actually ready to quit because it could do things
|
|
1835 like switch threads. */
|
|
1836 #define INTERNAL_QUITP \
|
|
1837 ((something_happened ? check_what_happened () : 0), \
|
|
1838 (!NILP (Vquit_flag) && \
|
|
1839 (NILP (Vinhibit_quit) || EQ (Vquit_flag, Qcritical))))
|
|
1840
|
|
1841 #define INTERNAL_REALLY_QUITP \
|
|
1842 (check_what_happened (), \
|
|
1843 (!NILP (Vquit_flag) && \
|
|
1844 (NILP (Vinhibit_quit) || EQ (Vquit_flag, Qcritical))))
|
|
1845
|
|
1846 /* Check quit-flag and quit if it is non-nil. Also do any other things
|
|
1847 that might have gotten queued until it was safe. */
|
|
1848 #define QUIT do { if (INTERNAL_QUITP) signal_quit (); } while (0)
|
|
1849
|
|
1850 #define REALLY_QUIT do { if (INTERNAL_REALLY_QUITP) signal_quit (); } while (0)
|
|
1851
|
|
1852
|
|
1853 /************************************************************************/
|
|
1854 /* hashing */
|
|
1855 /************************************************************************/
|
|
1856
|
|
1857 /* #### for a 64-bit machine, we should substitute a prime just over 2^32 */
|
|
1858 #define GOOD_HASH 65599 /* prime number just over 2^16; Dragon book, p. 435 */
|
|
1859 #define HASH2(a,b) (GOOD_HASH * (a) + (b))
|
|
1860 #define HASH3(a,b,c) (GOOD_HASH * HASH2 (a,b) + (c))
|
|
1861 #define HASH4(a,b,c,d) (GOOD_HASH * HASH3 (a,b,c) + (d))
|
|
1862 #define HASH5(a,b,c,d,e) (GOOD_HASH * HASH4 (a,b,c,d) + (e))
|
|
1863 #define HASH6(a,b,c,d,e,f) (GOOD_HASH * HASH5 (a,b,c,d,e) + (f))
|
|
1864 #define HASH7(a,b,c,d,e,f,g) (GOOD_HASH * HASH6 (a,b,c,d,e,f) + (g))
|
|
1865 #define HASH8(a,b,c,d,e,f,g,h) (GOOD_HASH * HASH7 (a,b,c,d,e,f,g) + (h))
|
|
1866 #define HASH9(a,b,c,d,e,f,g,h,i) (GOOD_HASH * HASH8 (a,b,c,d,e,f,g,h) + (i))
|
|
1867
|
|
1868 #define LISP_HASH(obj) ((unsigned long) LISP_TO_VOID (obj))
|
442
|
1869 unsigned long string_hash (const char *xv);
|
|
1870 unsigned long memory_hash (const void *xv, size_t size);
|
428
|
1871 unsigned long internal_hash (Lisp_Object obj, int depth);
|
|
1872 unsigned long internal_array_hash (Lisp_Object *arr, int size, int depth);
|
|
1873
|
|
1874
|
|
1875 /************************************************************************/
|
|
1876 /* String translation */
|
|
1877 /************************************************************************/
|
|
1878
|
|
1879 #ifdef I18N3
|
|
1880 #ifdef HAVE_LIBINTL_H
|
|
1881 #include <libintl.h>
|
|
1882 #else
|
442
|
1883 char *dgettext (const char *, const char *);
|
|
1884 char *gettext (const char *);
|
|
1885 char *textdomain (const char *);
|
|
1886 char *bindtextdomain (const char *, const char *);
|
428
|
1887 #endif /* HAVE_LIBINTL_H */
|
|
1888
|
|
1889 #define GETTEXT(x) gettext(x)
|
|
1890 #define LISP_GETTEXT(x) Fgettext (x)
|
|
1891 #else /* !I18N3 */
|
|
1892 #define GETTEXT(x) (x)
|
|
1893 #define LISP_GETTEXT(x) (x)
|
|
1894 #endif /* !I18N3 */
|
|
1895
|
|
1896 /* DEFER_GETTEXT is used to identify strings which are translated when
|
|
1897 they are referenced instead of when they are defined.
|
|
1898 These include Qerror_messages and initialized arrays of strings.
|
|
1899 */
|
|
1900 #define DEFER_GETTEXT(x) (x)
|
|
1901
|
|
1902
|
|
1903 /************************************************************************/
|
|
1904 /* Garbage collection / GC-protection */
|
|
1905 /************************************************************************/
|
|
1906
|
|
1907 /* number of bytes of structure consed since last GC */
|
|
1908
|
|
1909 extern EMACS_INT consing_since_gc;
|
|
1910
|
|
1911 /* threshold for doing another gc */
|
|
1912
|
458
|
1913 extern Fixnum gc_cons_threshold;
|
428
|
1914
|
|
1915 /* Structure for recording stack slots that need marking */
|
|
1916
|
|
1917 /* This is a chain of structures, each of which points at a Lisp_Object
|
|
1918 variable whose value should be marked in garbage collection.
|
|
1919 Normally every link of the chain is an automatic variable of a function,
|
|
1920 and its `val' points to some argument or local variable of the function.
|
|
1921 On exit to the function, the chain is set back to the value it had on
|
|
1922 entry. This way, no link remains in the chain when the stack frame
|
|
1923 containing the link disappears.
|
|
1924
|
|
1925 Every function that can call Feval must protect in this fashion all
|
|
1926 Lisp_Object variables whose contents will be used again. */
|
|
1927
|
|
1928 extern struct gcpro *gcprolist;
|
|
1929
|
|
1930 struct gcpro
|
|
1931 {
|
|
1932 struct gcpro *next;
|
|
1933 Lisp_Object *var; /* Address of first protected variable */
|
|
1934 int nvars; /* Number of consecutive protected variables */
|
|
1935 };
|
|
1936
|
|
1937 /* Normally, you declare variables gcpro1, gcpro2, ... and use the
|
|
1938 GCPROn() macros. However, if you need to have nested gcpro's,
|
|
1939 declare ngcpro1, ngcpro2, ... and use NGCPROn(). If you need
|
|
1940 to nest another level, use nngcpro1, nngcpro2, ... and use
|
|
1941 NNGCPROn(). If you need to nest yet another level, create
|
|
1942 the appropriate macros. */
|
|
1943
|
|
1944 #ifdef DEBUG_GCPRO
|
|
1945
|
|
1946 void debug_gcpro1 (char *, int, struct gcpro *, Lisp_Object *);
|
|
1947 void debug_gcpro2 (char *, int, struct gcpro *, struct gcpro *,
|
|
1948 Lisp_Object *, Lisp_Object *);
|
|
1949 void debug_gcpro3 (char *, int, struct gcpro *, struct gcpro *, struct gcpro *,
|
|
1950 Lisp_Object *, Lisp_Object *, Lisp_Object *);
|
|
1951 void debug_gcpro4 (char *, int, struct gcpro *, struct gcpro *, struct gcpro *,
|
|
1952 struct gcpro *, Lisp_Object *, Lisp_Object *, Lisp_Object *,
|
|
1953 Lisp_Object *);
|
|
1954 void debug_gcpro5 (char *, int, struct gcpro *, struct gcpro *, struct gcpro *,
|
|
1955 struct gcpro *, struct gcpro *, Lisp_Object *, Lisp_Object *,
|
|
1956 Lisp_Object *, Lisp_Object *, Lisp_Object *);
|
|
1957 void debug_ungcpro(char *, int, struct gcpro *);
|
|
1958
|
|
1959 #define GCPRO1(v) \
|
|
1960 debug_gcpro1 (__FILE__, __LINE__,&gcpro1,&v)
|
|
1961 #define GCPRO2(v1,v2) \
|
|
1962 debug_gcpro2 (__FILE__, __LINE__,&gcpro1,&gcpro2,&v1,&v2)
|
|
1963 #define GCPRO3(v1,v2,v3) \
|
|
1964 debug_gcpro3 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&v1,&v2,&v3)
|
|
1965 #define GCPRO4(v1,v2,v3,v4) \
|
|
1966 debug_gcpro4 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&gcpro4,\
|
|
1967 &v1,&v2,&v3,&v4)
|
|
1968 #define GCPRO5(v1,v2,v3,v4,v5) \
|
|
1969 debug_gcpro5 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&gcpro4,&gcpro5,\
|
|
1970 &v1,&v2,&v3,&v4,&v5)
|
|
1971 #define UNGCPRO \
|
|
1972 debug_ungcpro(__FILE__, __LINE__,&gcpro1)
|
|
1973
|
|
1974 #define NGCPRO1(v) \
|
|
1975 debug_gcpro1 (__FILE__, __LINE__,&ngcpro1,&v)
|
|
1976 #define NGCPRO2(v1,v2) \
|
|
1977 debug_gcpro2 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&v1,&v2)
|
|
1978 #define NGCPRO3(v1,v2,v3) \
|
|
1979 debug_gcpro3 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&v1,&v2,&v3)
|
|
1980 #define NGCPRO4(v1,v2,v3,v4) \
|
|
1981 debug_gcpro4 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&ngcpro4,\
|
|
1982 &v1,&v2,&v3,&v4)
|
|
1983 #define NGCPRO5(v1,v2,v3,v4,v5) \
|
|
1984 debug_gcpro5 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&ngcpro4,\
|
|
1985 &ngcpro5,&v1,&v2,&v3,&v4,&v5)
|
|
1986 #define NUNGCPRO \
|
|
1987 debug_ungcpro(__FILE__, __LINE__,&ngcpro1)
|
|
1988
|
|
1989 #define NNGCPRO1(v) \
|
|
1990 debug_gcpro1 (__FILE__, __LINE__,&nngcpro1,&v)
|
|
1991 #define NNGCPRO2(v1,v2) \
|
|
1992 debug_gcpro2 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&v1,&v2)
|
|
1993 #define NNGCPRO3(v1,v2,v3) \
|
|
1994 debug_gcpro3 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&v1,&v2,&v3)
|
|
1995 #define NNGCPRO4(v1,v2,v3,v4) \
|
|
1996 debug_gcpro4 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&nngcpro4,\
|
|
1997 &v1,&v2,&v3,&v4)
|
|
1998 #define NNGCPRO5(v1,v2,v3,v4,v5) \
|
|
1999 debug_gcpro5 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&nngcpro4,\
|
|
2000 &nngcpro5,&v1,&v2,&v3,&v4,&v5)
|
|
2001 #define NNUNGCPRO \
|
|
2002 debug_ungcpro(__FILE__, __LINE__,&nngcpro1)
|
|
2003
|
|
2004 #else /* ! DEBUG_GCPRO */
|
|
2005
|
|
2006 #define GCPRO1(var1) ((void) ( \
|
|
2007 gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \
|
|
2008 gcprolist = &gcpro1 ))
|
|
2009
|
|
2010 #define GCPRO2(var1, var2) ((void) ( \
|
|
2011 gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \
|
|
2012 gcpro2.next = &gcpro1, gcpro2.var = &var2, gcpro2.nvars = 1, \
|
|
2013 gcprolist = &gcpro2 ))
|
|
2014
|
|
2015 #define GCPRO3(var1, var2, var3) ((void) ( \
|
|
2016 gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \
|
|
2017 gcpro2.next = &gcpro1, gcpro2.var = &var2, gcpro2.nvars = 1, \
|
|
2018 gcpro3.next = &gcpro2, gcpro3.var = &var3, gcpro3.nvars = 1, \
|
|
2019 gcprolist = &gcpro3 ))
|
|
2020
|
|
2021 #define GCPRO4(var1, var2, var3, var4) ((void) ( \
|
|
2022 gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \
|
|
2023 gcpro2.next = &gcpro1, gcpro2.var = &var2, gcpro2.nvars = 1, \
|
|
2024 gcpro3.next = &gcpro2, gcpro3.var = &var3, gcpro3.nvars = 1, \
|
|
2025 gcpro4.next = &gcpro3, gcpro4.var = &var4, gcpro4.nvars = 1, \
|
|
2026 gcprolist = &gcpro4 ))
|
|
2027
|
|
2028 #define GCPRO5(var1, var2, var3, var4, var5) ((void) ( \
|
|
2029 gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \
|
|
2030 gcpro2.next = &gcpro1, gcpro2.var = &var2, gcpro2.nvars = 1, \
|
|
2031 gcpro3.next = &gcpro2, gcpro3.var = &var3, gcpro3.nvars = 1, \
|
|
2032 gcpro4.next = &gcpro3, gcpro4.var = &var4, gcpro4.nvars = 1, \
|
|
2033 gcpro5.next = &gcpro4, gcpro5.var = &var5, gcpro5.nvars = 1, \
|
|
2034 gcprolist = &gcpro5 ))
|
|
2035
|
|
2036 #define UNGCPRO ((void) (gcprolist = gcpro1.next))
|
|
2037
|
|
2038 #define NGCPRO1(var1) ((void) ( \
|
|
2039 ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \
|
|
2040 gcprolist = &ngcpro1 ))
|
|
2041
|
|
2042 #define NGCPRO2(var1, var2) ((void) ( \
|
|
2043 ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \
|
|
2044 ngcpro2.next = &ngcpro1, ngcpro2.var = &var2, ngcpro2.nvars = 1, \
|
|
2045 gcprolist = &ngcpro2 ))
|
|
2046
|
|
2047 #define NGCPRO3(var1, var2, var3) ((void) ( \
|
|
2048 ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \
|
|
2049 ngcpro2.next = &ngcpro1, ngcpro2.var = &var2, ngcpro2.nvars = 1, \
|
|
2050 ngcpro3.next = &ngcpro2, ngcpro3.var = &var3, ngcpro3.nvars = 1, \
|
|
2051 gcprolist = &ngcpro3 ))
|
|
2052
|
|
2053 #define NGCPRO4(var1, var2, var3, var4) ((void) ( \
|
|
2054 ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \
|
|
2055 ngcpro2.next = &ngcpro1, ngcpro2.var = &var2, ngcpro2.nvars = 1, \
|
|
2056 ngcpro3.next = &ngcpro2, ngcpro3.var = &var3, ngcpro3.nvars = 1, \
|
|
2057 ngcpro4.next = &ngcpro3, ngcpro4.var = &var4, ngcpro4.nvars = 1, \
|
|
2058 gcprolist = &ngcpro4 ))
|
|
2059
|
|
2060 #define NGCPRO5(var1, var2, var3, var4, var5) ((void) ( \
|
|
2061 ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \
|
|
2062 ngcpro2.next = &ngcpro1, ngcpro2.var = &var2, ngcpro2.nvars = 1, \
|
|
2063 ngcpro3.next = &ngcpro2, ngcpro3.var = &var3, ngcpro3.nvars = 1, \
|
|
2064 ngcpro4.next = &ngcpro3, ngcpro4.var = &var4, ngcpro4.nvars = 1, \
|
|
2065 ngcpro5.next = &ngcpro4, ngcpro5.var = &var5, ngcpro5.nvars = 1, \
|
|
2066 gcprolist = &ngcpro5 ))
|
|
2067
|
|
2068 #define NUNGCPRO ((void) (gcprolist = ngcpro1.next))
|
|
2069
|
|
2070 #define NNGCPRO1(var1) ((void) ( \
|
|
2071 nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \
|
|
2072 gcprolist = &nngcpro1 ))
|
|
2073
|
|
2074 #define NNGCPRO2(var1, var2) ((void) ( \
|
|
2075 nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \
|
|
2076 nngcpro2.next = &nngcpro1, nngcpro2.var = &var2, nngcpro2.nvars = 1, \
|
|
2077 gcprolist = &nngcpro2 ))
|
|
2078
|
|
2079 #define NNGCPRO3(var1, var2, var3) ((void) ( \
|
|
2080 nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \
|
|
2081 nngcpro2.next = &nngcpro1, nngcpro2.var = &var2, nngcpro2.nvars = 1, \
|
|
2082 nngcpro3.next = &nngcpro2, nngcpro3.var = &var3, nngcpro3.nvars = 1, \
|
|
2083 gcprolist = &nngcpro3 ))
|
|
2084
|
|
2085 #define NNGCPRO4(var1, var2, var3, var4) ((void) ( \
|
|
2086 nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \
|
|
2087 nngcpro2.next = &nngcpro1, nngcpro2.var = &var2, nngcpro2.nvars = 1, \
|
|
2088 nngcpro3.next = &nngcpro2, nngcpro3.var = &var3, nngcpro3.nvars = 1, \
|
|
2089 nngcpro4.next = &nngcpro3, nngcpro4.var = &var4, nngcpro4.nvars = 1, \
|
|
2090 gcprolist = &nngcpro4 ))
|
|
2091
|
|
2092 #define NNGCPRO5(var1, var2, var3, var4, var5) ((void) ( \
|
|
2093 nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \
|
|
2094 nngcpro2.next = &nngcpro1, nngcpro2.var = &var2, nngcpro2.nvars = 1, \
|
|
2095 nngcpro3.next = &nngcpro2, nngcpro3.var = &var3, nngcpro3.nvars = 1, \
|
|
2096 nngcpro4.next = &nngcpro3, nngcpro4.var = &var4, nngcpro4.nvars = 1, \
|
|
2097 nngcpro5.next = &nngcpro4, nngcpro5.var = &var5, nngcpro5.nvars = 1, \
|
|
2098 gcprolist = &nngcpro5 ))
|
|
2099
|
|
2100 #define NNUNGCPRO ((void) (gcprolist = nngcpro1.next))
|
|
2101
|
|
2102 #endif /* ! DEBUG_GCPRO */
|
|
2103
|
|
2104 /* Another try to fix SunPro C compiler warnings */
|
|
2105 /* "end-of-loop code not reached" */
|
|
2106 /* "statement not reached */
|
442
|
2107 #if defined __SUNPRO_C || defined __USLC__
|
428
|
2108 #define RETURN_SANS_WARNINGS if (1) return
|
|
2109 #define RETURN_NOT_REACHED(value)
|
|
2110 #else
|
|
2111 #define RETURN_SANS_WARNINGS return
|
|
2112 #define RETURN_NOT_REACHED(value) return value;
|
|
2113 #endif
|
|
2114
|
|
2115 /* Evaluate expr, UNGCPRO, and then return the value of expr. */
|
|
2116 #define RETURN_UNGCPRO(expr) do \
|
|
2117 { \
|
|
2118 Lisp_Object ret_ungc_val = (expr); \
|
|
2119 UNGCPRO; \
|
|
2120 RETURN_SANS_WARNINGS ret_ungc_val; \
|
|
2121 } while (0)
|
|
2122
|
|
2123 /* Evaluate expr, NUNGCPRO, UNGCPRO, and then return the value of expr. */
|
|
2124 #define RETURN_NUNGCPRO(expr) do \
|
|
2125 { \
|
|
2126 Lisp_Object ret_ungc_val = (expr); \
|
|
2127 NUNGCPRO; \
|
|
2128 UNGCPRO; \
|
|
2129 RETURN_SANS_WARNINGS ret_ungc_val; \
|
|
2130 } while (0)
|
|
2131
|
|
2132 /* Evaluate expr, NNUNGCPRO, NUNGCPRO, UNGCPRO, and then return the
|
|
2133 value of expr. */
|
|
2134 #define RETURN_NNUNGCPRO(expr) do \
|
|
2135 { \
|
|
2136 Lisp_Object ret_ungc_val = (expr); \
|
|
2137 NNUNGCPRO; \
|
|
2138 NUNGCPRO; \
|
|
2139 UNGCPRO; \
|
|
2140 RETURN_SANS_WARNINGS ret_ungc_val; \
|
|
2141 } while (0)
|
|
2142
|
|
2143 /* Evaluate expr, return it if it's not Qunbound. */
|
|
2144 #define RETURN_IF_NOT_UNBOUND(expr) do \
|
|
2145 { \
|
|
2146 Lisp_Object ret_nunb_val = (expr); \
|
|
2147 if (!UNBOUNDP (ret_nunb_val)) \
|
|
2148 RETURN_SANS_WARNINGS ret_nunb_val; \
|
|
2149 } while (0)
|
|
2150
|
452
|
2151 extern Lisp_Object_ptr_dynarr *staticpros;
|
|
2152
|
428
|
2153 /* Call staticpro (&var) to protect static variable `var'. */
|
|
2154 void staticpro (Lisp_Object *);
|
|
2155
|
|
2156 /* Call staticpro_nodump (&var) to protect static variable `var'. */
|
|
2157 /* var will not be saved at dump time */
|
|
2158 void staticpro_nodump (Lisp_Object *);
|
|
2159
|
458
|
2160 /* dump_add_root_struct_ptr (&var, &desc) dumps the structure pointed to by `var'. */
|
452
|
2161 #ifdef PDUMP
|
|
2162 void dump_add_root_struct_ptr (void *, const struct struct_description *);
|
|
2163 #else
|
|
2164 #define dump_add_root_struct_ptr(varaddr,descaddr) DO_NOTHING
|
|
2165 #endif
|
|
2166
|
458
|
2167 /* dump_add_opaque (&var, size) dumps the opaque static structure `var'. */
|
452
|
2168 #ifdef PDUMP
|
545
|
2169 void dump_add_opaque (const void *, size_t);
|
452
|
2170 #else
|
|
2171 #define dump_add_opaque(varaddr,size) DO_NOTHING
|
|
2172 #endif
|
|
2173
|
458
|
2174 /* Call dump_add_opaque_int (&int_var) to dump `int_var', of type `int'. */
|
|
2175 #ifdef PDUMP
|
|
2176 #define dump_add_opaque_int(int_varaddr) do { \
|
|
2177 int *dao_ = (int_varaddr); /* type check */ \
|
|
2178 dump_add_opaque (dao_, sizeof (*dao_)); \
|
|
2179 } while (0)
|
|
2180 #else
|
|
2181 #define dump_add_opaque_int(int_varaddr) DO_NOTHING
|
|
2182 #endif
|
|
2183
|
|
2184 /* Call dump_add_opaque_fixnum (&fixnum_var) to dump `fixnum_var', of type `Fixnum'. */
|
|
2185 #ifdef PDUMP
|
|
2186 #define dump_add_opaque_fixnum(fixnum_varaddr) do { \
|
|
2187 Fixnum *dao_ = (fixnum_varaddr); /* type check */ \
|
|
2188 dump_add_opaque (dao_, sizeof (*dao_)); \
|
|
2189 } while (0)
|
|
2190 #else
|
|
2191 #define dump_add_opaque_fixnum(fixnum_varaddr) DO_NOTHING
|
|
2192 #endif
|
|
2193
|
452
|
2194 /* Call dump_add_root_object (&var) to ensure that var is properly updated after pdump. */
|
|
2195 #ifdef PDUMP
|
|
2196 void dump_add_root_object (Lisp_Object *);
|
|
2197 #else
|
|
2198 #define dump_add_root_object(varaddr) DO_NOTHING
|
|
2199 #endif
|
|
2200
|
|
2201 /* Call dump_add_root_object (&var) to ensure that var is properly updated after
|
|
2202 pdump. var must point to a linked list of objects out of which
|
428
|
2203 some may not be dumped */
|
452
|
2204 #ifdef PDUMP
|
|
2205 void dump_add_weak_object_chain (Lisp_Object *);
|
|
2206 #else
|
|
2207 #define dump_add_weak_object_chain(varaddr) DO_NOTHING
|
|
2208 #endif
|
428
|
2209
|
|
2210 /* Nonzero means Emacs has already been initialized.
|
|
2211 Used during startup to detect startup of dumped Emacs. */
|
|
2212 extern int initialized;
|
|
2213
|
|
2214 #ifdef MEMORY_USAGE_STATS
|
|
2215
|
|
2216 /* This structure is used to keep statistics on the amount of memory
|
|
2217 in use.
|
|
2218
|
|
2219 WAS_REQUESTED stores the actual amount of memory that was requested
|
|
2220 of the allocation function. The *_OVERHEAD fields store the
|
|
2221 additional amount of memory that was grabbed by the functions to
|
|
2222 facilitate allocation, reallocation, etc. MALLOC_OVERHEAD is for
|
|
2223 memory allocated with malloc(); DYNARR_OVERHEAD is for dynamic
|
|
2224 arrays; GAP_OVERHEAD is for gap arrays. Note that for (e.g.)
|
|
2225 dynamic arrays, there is both MALLOC_OVERHEAD and DYNARR_OVERHEAD
|
|
2226 memory: The dynamic array allocates memory above and beyond what
|
|
2227 was asked of it, and when it in turns allocates memory using
|
|
2228 malloc(), malloc() allocates memory beyond what it was asked
|
|
2229 to allocate.
|
|
2230
|
|
2231 Functions that accept a structure of this sort do not initialize
|
|
2232 the fields to 0, and add any existing values to whatever was there
|
|
2233 before; this way, you can get a cumulative effect. */
|
|
2234
|
|
2235 struct overhead_stats
|
|
2236 {
|
|
2237 int was_requested;
|
|
2238 int malloc_overhead;
|
|
2239 int dynarr_overhead;
|
|
2240 int gap_overhead;
|
|
2241 };
|
|
2242
|
|
2243 #endif /* MEMORY_USAGE_STATS */
|
|
2244
|
|
2245 #ifndef DIRECTORY_SEP
|
|
2246 #define DIRECTORY_SEP '/'
|
|
2247 #endif
|
|
2248 #ifndef IS_DIRECTORY_SEP
|
|
2249 #define IS_DIRECTORY_SEP(c) ((c) == DIRECTORY_SEP)
|
|
2250 #endif
|
|
2251 #ifndef IS_DEVICE_SEP
|
|
2252 #ifndef DEVICE_SEP
|
|
2253 #define IS_DEVICE_SEP(c) 0
|
|
2254 #else
|
|
2255 #define IS_DEVICE_SEP(c) ((c) == DEVICE_SEP)
|
|
2256 #endif
|
|
2257 #endif
|
|
2258 #ifndef IS_ANY_SEP
|
|
2259 #define IS_ANY_SEP(c) IS_DIRECTORY_SEP (c)
|
|
2260 #endif
|
|
2261
|
|
2262 #ifdef HAVE_INTTYPES_H
|
|
2263 #include <inttypes.h>
|
|
2264 #elif SIZEOF_VOID_P == SIZEOF_INT
|
|
2265 typedef int intptr_t;
|
|
2266 typedef unsigned int uintptr_t;
|
|
2267 #elif SIZEOF_VOID_P == SIZEOF_LONG
|
|
2268 typedef long intptr_t;
|
|
2269 typedef unsigned long uintptr_t;
|
|
2270 #elif defined(SIZEOF_LONG_LONG) && SIZEOF_VOID_P == SIZEOF_LONG_LONG
|
|
2271 typedef long long intptr_t;
|
|
2272 typedef unsigned long long uintptr_t;
|
|
2273 #else
|
|
2274 /* Just pray. May break, may not. */
|
|
2275 typedef long intptr_t;
|
|
2276 typedef unsigned long uintptr_t;
|
|
2277 #endif
|
|
2278
|
442
|
2279
|
|
2280 /************************************************************************/
|
|
2281 /* prototypes */
|
|
2282 /************************************************************************/
|
|
2283
|
|
2284 /* NOTE: Prototypes should go HERE, not in various header files, unless
|
|
2285 they specifically reference a type that's not defined in lisp.h.
|
|
2286 (And even then, you might consider adding the type to lisp.h.)
|
|
2287
|
|
2288 The idea is that header files typically contain the innards of objects,
|
|
2289 and we want to minimize the number of "dependencies" of one file on
|
|
2290 the specifics of such objects. Putting prototypes here minimizes the
|
|
2291 number of header files that need to be included -- good for a number
|
|
2292 of reasons. --ben */
|
|
2293
|
|
2294 /*--------------- prototypes for various public c functions ------------*/
|
|
2295
|
|
2296 /* Prototypes for all init/syms_of/vars_of initialization functions. */
|
|
2297 #include "symsinit.h"
|
|
2298
|
428
|
2299 /* Defined in alloc.c */
|
|
2300 void release_breathing_space (void);
|
|
2301 Lisp_Object noseeum_cons (Lisp_Object, Lisp_Object);
|
|
2302 Lisp_Object make_vector (size_t, Lisp_Object);
|
|
2303 Lisp_Object vector1 (Lisp_Object);
|
|
2304 Lisp_Object vector2 (Lisp_Object, Lisp_Object);
|
|
2305 Lisp_Object vector3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2306 Lisp_Object make_bit_vector (size_t, Lisp_Object);
|
|
2307 Lisp_Object make_bit_vector_from_byte_vector (unsigned char *, size_t);
|
|
2308 Lisp_Object noseeum_make_marker (void);
|
|
2309 void garbage_collect_1 (void);
|
|
2310 Lisp_Object acons (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2311 Lisp_Object cons3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2312 Lisp_Object list1 (Lisp_Object);
|
|
2313 Lisp_Object list2 (Lisp_Object, Lisp_Object);
|
|
2314 Lisp_Object list3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2315 Lisp_Object list4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2316 Lisp_Object list5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2317 Lisp_Object);
|
|
2318 Lisp_Object list6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2319 Lisp_Object, Lisp_Object);
|
|
2320 DECLARE_DOESNT_RETURN (memory_full (void));
|
|
2321 void disksave_object_finalization (void);
|
|
2322 extern int purify_flag;
|
|
2323 extern int gc_currently_forbidden;
|
|
2324 Lisp_Object restore_gc_inhibit (Lisp_Object);
|
|
2325 extern EMACS_INT gc_generation_number[1];
|
|
2326 int c_readonly (Lisp_Object);
|
|
2327 int lisp_readonly (Lisp_Object);
|
442
|
2328 Lisp_Object build_string (const char *);
|
|
2329 Lisp_Object build_ext_string (const char *, Lisp_Object);
|
|
2330 Lisp_Object build_translated_string (const char *);
|
|
2331 Lisp_Object make_string (const Bufbyte *, Bytecount);
|
|
2332 Lisp_Object make_ext_string (const Extbyte *, EMACS_INT, Lisp_Object);
|
428
|
2333 Lisp_Object make_uninit_string (Bytecount);
|
|
2334 Lisp_Object make_float (double);
|
442
|
2335 Lisp_Object make_string_nocopy (const Bufbyte *, Bytecount);
|
428
|
2336 void free_cons (Lisp_Cons *);
|
|
2337 void free_list (Lisp_Object);
|
|
2338 void free_alist (Lisp_Object);
|
|
2339 void mark_conses_in_list (Lisp_Object);
|
|
2340 void free_marker (Lisp_Marker *);
|
|
2341 int object_dead_p (Lisp_Object);
|
|
2342 void mark_object (Lisp_Object obj);
|
|
2343 int marked_p (Lisp_Object obj);
|
|
2344
|
|
2345 #ifdef MEMORY_USAGE_STATS
|
|
2346 size_t malloced_storage_size (void *, size_t, struct overhead_stats *);
|
|
2347 size_t fixed_type_block_overhead (size_t);
|
|
2348 #endif
|
|
2349 #ifdef PDUMP
|
|
2350 void pdump (void);
|
442
|
2351 int pdump_load (const char *);
|
428
|
2352
|
|
2353 extern char *pdump_start, *pdump_end;
|
|
2354 #define DUMPEDP(adr) ((((char *)(adr)) < pdump_end) && (((char *)(adr)) >= pdump_start))
|
|
2355 #else
|
|
2356 #define DUMPEDP(adr) 0
|
|
2357 #endif
|
|
2358
|
|
2359 /* Defined in buffer.c */
|
|
2360 Lisp_Object make_buffer (struct buffer *);
|
|
2361 Lisp_Object get_truename_buffer (Lisp_Object);
|
|
2362 void switch_to_buffer (Lisp_Object, Lisp_Object);
|
|
2363 extern int find_file_compare_truenames;
|
|
2364 extern int find_file_use_truenames;
|
|
2365
|
563
|
2366 /* Defined in bytecode.c */
|
593
|
2367 DECLARE_DOESNT_RETURN (invalid_byte_code
|
|
2368 (const char *reason, Lisp_Object frob));
|
563
|
2369
|
428
|
2370 /* Defined in callproc.c */
|
442
|
2371 char *egetenv (const char *);
|
428
|
2372
|
|
2373 /* Defined in console.c */
|
|
2374 void stuff_buffered_input (Lisp_Object);
|
|
2375
|
442
|
2376 /* Defined in console-msw.c */
|
|
2377 EXFUN (Fmswindows_message_box, 3);
|
|
2378 extern int mswindows_message_outputted;
|
|
2379
|
428
|
2380 /* Defined in data.c */
|
|
2381 DECLARE_DOESNT_RETURN (c_write_error (Lisp_Object));
|
|
2382 DECLARE_DOESNT_RETURN (lisp_write_error (Lisp_Object));
|
|
2383 DECLARE_DOESNT_RETURN (args_out_of_range (Lisp_Object, Lisp_Object));
|
|
2384 DECLARE_DOESNT_RETURN (args_out_of_range_3 (Lisp_Object, Lisp_Object,
|
|
2385 Lisp_Object));
|
|
2386 Lisp_Object wrong_type_argument (Lisp_Object, Lisp_Object);
|
|
2387 DECLARE_DOESNT_RETURN (dead_wrong_type_argument (Lisp_Object, Lisp_Object));
|
|
2388 void check_int_range (EMACS_INT, EMACS_INT, EMACS_INT);
|
|
2389
|
|
2390 enum arith_comparison {
|
|
2391 arith_equal,
|
|
2392 arith_notequal,
|
|
2393 arith_less,
|
|
2394 arith_grtr,
|
|
2395 arith_less_or_equal,
|
|
2396 arith_grtr_or_equal };
|
|
2397 Lisp_Object arithcompare (Lisp_Object, Lisp_Object, enum arith_comparison);
|
|
2398
|
|
2399 Lisp_Object word_to_lisp (unsigned int);
|
|
2400 unsigned int lisp_to_word (Lisp_Object);
|
|
2401
|
|
2402 /* Defined in dired.c */
|
442
|
2403 Lisp_Object make_directory_hash_table (const char *);
|
428
|
2404 Lisp_Object wasteful_word_to_lisp (unsigned int);
|
|
2405
|
|
2406 /* Defined in doc.c */
|
|
2407 Lisp_Object unparesseuxify_doc_string (int, EMACS_INT, char *, Lisp_Object);
|
|
2408 Lisp_Object read_doc_string (Lisp_Object);
|
|
2409
|
|
2410 /* Defined in doprnt.c */
|
442
|
2411 Bytecount emacs_doprnt_c (Lisp_Object, const Bufbyte *, Lisp_Object,
|
428
|
2412 Bytecount, ...);
|
442
|
2413 Bytecount emacs_doprnt_va (Lisp_Object, const Bufbyte *, Lisp_Object,
|
428
|
2414 Bytecount, va_list);
|
442
|
2415 Bytecount emacs_doprnt_lisp (Lisp_Object, const Bufbyte *, Lisp_Object,
|
|
2416 Bytecount, int, const Lisp_Object *);
|
|
2417 Bytecount emacs_doprnt_lisp_2 (Lisp_Object, const Bufbyte *, Lisp_Object,
|
428
|
2418 Bytecount, int, ...);
|
442
|
2419 Lisp_Object emacs_doprnt_string_c (const Bufbyte *, Lisp_Object,
|
428
|
2420 Bytecount, ...);
|
442
|
2421 Lisp_Object emacs_doprnt_string_va (const Bufbyte *, Lisp_Object,
|
428
|
2422 Bytecount, va_list);
|
442
|
2423 Lisp_Object emacs_doprnt_string_lisp (const Bufbyte *, Lisp_Object,
|
|
2424 Bytecount, int, const Lisp_Object *);
|
|
2425 Lisp_Object emacs_doprnt_string_lisp_2 (const Bufbyte *, Lisp_Object,
|
428
|
2426 Bytecount, int, ...);
|
|
2427
|
|
2428 /* Defined in editfns.c */
|
|
2429 void uncache_home_directory (void);
|
440
|
2430 Extbyte *get_home_directory (void);
|
428
|
2431 char *user_login_name (uid_t *);
|
|
2432 Bufpos bufpos_clip_to_bounds (Bufpos, Bufpos, Bufpos);
|
|
2433 Bytind bytind_clip_to_bounds (Bytind, Bytind, Bytind);
|
|
2434 void buffer_insert1 (struct buffer *, Lisp_Object);
|
|
2435 Lisp_Object make_string_from_buffer (struct buffer *, Bufpos, Charcount);
|
|
2436 Lisp_Object make_string_from_buffer_no_extents (struct buffer *, Bufpos, Charcount);
|
|
2437 Lisp_Object save_excursion_save (void);
|
|
2438 Lisp_Object save_restriction_save (void);
|
|
2439 Lisp_Object save_excursion_restore (Lisp_Object);
|
|
2440 Lisp_Object save_restriction_restore (Lisp_Object);
|
|
2441
|
|
2442 /* Defined in emacsfns.c */
|
|
2443 Lisp_Object save_current_buffer_restore (Lisp_Object);
|
|
2444
|
|
2445 /* Defined in emacs.c */
|
442
|
2446 DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS (fatal (const char *,
|
428
|
2447 ...), 1, 2);
|
442
|
2448 int stderr_out (const char *, ...) PRINTF_ARGS (1, 2);
|
|
2449 int stdout_out (const char *, ...) PRINTF_ARGS (1, 2);
|
428
|
2450 SIGTYPE fatal_error_signal (int);
|
442
|
2451 Lisp_Object make_arg_list (int, Extbyte **);
|
|
2452 void make_argc_argv (Lisp_Object, int *, Extbyte ***);
|
|
2453 void free_argc_argv (Extbyte **);
|
|
2454 Lisp_Object decode_env_path (const char *, const char *);
|
|
2455 Lisp_Object decode_path (const char *);
|
428
|
2456 /* Nonzero means don't do interactive redisplay and don't change tty modes */
|
442
|
2457 extern int noninteractive, noninteractive1;
|
|
2458 extern int fatal_error_in_progress;
|
428
|
2459 extern int preparing_for_armageddon;
|
458
|
2460 extern Fixnum emacs_priority;
|
428
|
2461 extern int running_asynch_code;
|
|
2462 extern int suppress_early_error_handler_backtrace;
|
|
2463
|
|
2464 /* Defined in eval.c */
|
563
|
2465 DECLARE_DOESNT_RETURN (signal_error_1 (Lisp_Object, Lisp_Object));
|
|
2466 void maybe_signal_error_1 (Lisp_Object, Lisp_Object, Lisp_Object,
|
578
|
2467 Error_Behavior);
|
563
|
2468 Lisp_Object maybe_signal_continuable_error_1 (Lisp_Object, Lisp_Object,
|
578
|
2469 Lisp_Object, Error_Behavior);
|
563
|
2470 DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS (signal_ferror (Lisp_Object,
|
|
2471 const char *,
|
|
2472 ...), 2, 3);
|
578
|
2473 void maybe_signal_ferror (Lisp_Object, Lisp_Object, Error_Behavior,
|
563
|
2474 const char *, ...) PRINTF_ARGS (4, 5);
|
|
2475 Lisp_Object signal_continuable_ferror (Lisp_Object, const char *, ...)
|
442
|
2476 PRINTF_ARGS (2, 3);
|
563
|
2477 Lisp_Object maybe_signal_continuable_ferror (Lisp_Object, Lisp_Object,
|
578
|
2478 Error_Behavior,
|
563
|
2479 const char *, ...)
|
442
|
2480 PRINTF_ARGS (4, 5);
|
563
|
2481
|
|
2482 Lisp_Object build_error_data (const char *reason, Lisp_Object frob);
|
|
2483 DECLARE_DOESNT_RETURN (signal_error (Lisp_Object, const char *,
|
|
2484 Lisp_Object));
|
|
2485 void maybe_signal_error (Lisp_Object, const char *, Lisp_Object,
|
578
|
2486 Lisp_Object, Error_Behavior);
|
563
|
2487 Lisp_Object signal_continuable_error (Lisp_Object, const char *,
|
|
2488 Lisp_Object);
|
|
2489 Lisp_Object maybe_signal_continuable_error (Lisp_Object, const char *,
|
|
2490 Lisp_Object,
|
578
|
2491 Lisp_Object, Error_Behavior);
|
563
|
2492 DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS (signal_ferror_with_frob
|
442
|
2493 (Lisp_Object, Lisp_Object,
|
|
2494 const char *,
|
|
2495 ...), 3, 4);
|
563
|
2496 void maybe_signal_ferror_with_frob (Lisp_Object, Lisp_Object, Lisp_Object,
|
578
|
2497 Error_Behavior,
|
563
|
2498 const char *, ...) PRINTF_ARGS (5, 6);
|
|
2499 Lisp_Object signal_continuable_ferror_with_frob (Lisp_Object, Lisp_Object,
|
|
2500 const char *,
|
|
2501 ...) PRINTF_ARGS (3, 4);
|
|
2502 Lisp_Object maybe_signal_continuable_ferror_with_frob (Lisp_Object,
|
|
2503 Lisp_Object,
|
|
2504 Lisp_Object,
|
578
|
2505 Error_Behavior,
|
563
|
2506 const char *, ...)
|
442
|
2507 PRINTF_ARGS (5, 6);
|
563
|
2508 DECLARE_DOESNT_RETURN (signal_error_2 (Lisp_Object, const char *,
|
|
2509 Lisp_Object, Lisp_Object));
|
|
2510 void maybe_signal_error_2 (Lisp_Object, const char *, Lisp_Object,
|
578
|
2511 Lisp_Object, Lisp_Object, Error_Behavior);
|
563
|
2512 Lisp_Object signal_continuable_error_2 (Lisp_Object, const char *,
|
|
2513 Lisp_Object, Lisp_Object);
|
|
2514 Lisp_Object maybe_signal_continuable_error_2 (Lisp_Object, const char *,
|
|
2515 Lisp_Object, Lisp_Object,
|
|
2516 Lisp_Object,
|
578
|
2517 Error_Behavior);
|
563
|
2518
|
|
2519
|
436
|
2520 DECLARE_DOESNT_RETURN (signal_malformed_list_error (Lisp_Object));
|
|
2521 DECLARE_DOESNT_RETURN (signal_malformed_property_list_error (Lisp_Object));
|
|
2522 DECLARE_DOESNT_RETURN (signal_circular_list_error (Lisp_Object));
|
|
2523 DECLARE_DOESNT_RETURN (signal_circular_property_list_error (Lisp_Object));
|
|
2524
|
442
|
2525 DECLARE_DOESNT_RETURN (syntax_error (const char *reason, Lisp_Object frob));
|
|
2526 DECLARE_DOESNT_RETURN (syntax_error_2 (const char *reason, Lisp_Object frob1,
|
|
2527 Lisp_Object frob2));
|
563
|
2528 void maybe_syntax_error (const char *, Lisp_Object, Lisp_Object,
|
578
|
2529 Error_Behavior);
|
563
|
2530 DECLARE_DOESNT_RETURN (sferror (const char *reason, Lisp_Object frob));
|
|
2531 DECLARE_DOESNT_RETURN (sferror_2 (const char *reason, Lisp_Object frob1,
|
|
2532 Lisp_Object frob2));
|
|
2533 void maybe_sferror (const char *, Lisp_Object, Lisp_Object,
|
578
|
2534 Error_Behavior);
|
442
|
2535 DECLARE_DOESNT_RETURN (invalid_argument (const char *reason,
|
|
2536 Lisp_Object frob));
|
|
2537 DECLARE_DOESNT_RETURN (invalid_argument_2 (const char *reason,
|
|
2538 Lisp_Object frob1,
|
|
2539 Lisp_Object frob2));
|
563
|
2540 void maybe_invalid_argument (const char *, Lisp_Object, Lisp_Object,
|
578
|
2541 Error_Behavior);
|
442
|
2542 DECLARE_DOESNT_RETURN (invalid_operation (const char *reason,
|
563
|
2543 Lisp_Object frob));
|
442
|
2544 DECLARE_DOESNT_RETURN (invalid_operation_2 (const char *reason,
|
563
|
2545 Lisp_Object frob1,
|
|
2546 Lisp_Object frob2));
|
|
2547 void maybe_invalid_operation (const char *, Lisp_Object, Lisp_Object,
|
578
|
2548 Error_Behavior);
|
563
|
2549 DECLARE_DOESNT_RETURN (invalid_state (const char *reason,
|
|
2550 Lisp_Object frob));
|
|
2551 DECLARE_DOESNT_RETURN (invalid_state_2 (const char *reason,
|
|
2552 Lisp_Object frob1,
|
|
2553 Lisp_Object frob2));
|
|
2554 void maybe_invalid_state (const char *, Lisp_Object, Lisp_Object,
|
578
|
2555 Error_Behavior);
|
442
|
2556 DECLARE_DOESNT_RETURN (invalid_change (const char *reason,
|
563
|
2557 Lisp_Object frob));
|
|
2558 DECLARE_DOESNT_RETURN (invalid_change_2 (const char *reason,
|
|
2559 Lisp_Object frob1,
|
|
2560 Lisp_Object frob2));
|
|
2561 void maybe_invalid_change (const char *, Lisp_Object, Lisp_Object,
|
578
|
2562 Error_Behavior);
|
563
|
2563 DECLARE_DOESNT_RETURN (invalid_constant (const char *reason,
|
|
2564 Lisp_Object frob));
|
|
2565 DECLARE_DOESNT_RETURN (invalid_constant_2 (const char *reason,
|
|
2566 Lisp_Object frob1,
|
|
2567 Lisp_Object frob2));
|
|
2568 void maybe_invalid_constant (const char *, Lisp_Object, Lisp_Object,
|
578
|
2569 Error_Behavior);
|
563
|
2570 DECLARE_DOESNT_RETURN (wtaerror (const char *reason, Lisp_Object frob));
|
|
2571 DECLARE_DOESNT_RETURN (out_of_memory (const char *reason,
|
|
2572 Lisp_Object frob));
|
|
2573 DECLARE_DOESNT_RETURN (stack_overflow (const char *reason,
|
442
|
2574 Lisp_Object frob));
|
563
|
2575 DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS (printing_unreadable_object
|
|
2576 (const char *,
|
|
2577 ...), 1, 2);
|
442
|
2578
|
436
|
2579 Lisp_Object signal_void_function_error (Lisp_Object);
|
|
2580 Lisp_Object signal_invalid_function_error (Lisp_Object);
|
|
2581 Lisp_Object signal_wrong_number_of_arguments_error (Lisp_Object, int);
|
|
2582
|
428
|
2583 Lisp_Object run_hook_with_args_in_buffer (struct buffer *, int, Lisp_Object *,
|
|
2584 enum run_hooks_condition);
|
|
2585 Lisp_Object run_hook_with_args (int, Lisp_Object *, enum run_hooks_condition);
|
|
2586 void va_run_hook_with_args (Lisp_Object, int, ...);
|
|
2587 void va_run_hook_with_args_in_buffer (struct buffer *, Lisp_Object, int, ...);
|
|
2588 Lisp_Object run_hook (Lisp_Object);
|
|
2589 Lisp_Object apply1 (Lisp_Object, Lisp_Object);
|
|
2590 Lisp_Object call0 (Lisp_Object);
|
|
2591 Lisp_Object call1 (Lisp_Object, Lisp_Object);
|
|
2592 Lisp_Object call2 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2593 Lisp_Object call3 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2594 Lisp_Object call4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2595 Lisp_Object);
|
|
2596 Lisp_Object call5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2597 Lisp_Object, Lisp_Object);
|
|
2598 Lisp_Object call6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2599 Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2600 Lisp_Object call7 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2601 Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2602 Lisp_Object call8 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2603 Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2604 Lisp_Object);
|
|
2605 Lisp_Object call0_in_buffer (struct buffer *, Lisp_Object);
|
|
2606 Lisp_Object call1_in_buffer (struct buffer *, Lisp_Object, Lisp_Object);
|
|
2607 Lisp_Object call2_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
2608 Lisp_Object);
|
|
2609 Lisp_Object call3_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
2610 Lisp_Object, Lisp_Object);
|
|
2611 Lisp_Object call4_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
2612 Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2613 Lisp_Object call5_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
2614 Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2615 Lisp_Object);
|
|
2616 Lisp_Object call6_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
2617 Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2618 Lisp_Object, Lisp_Object);
|
|
2619 Lisp_Object eval_in_buffer (struct buffer *, Lisp_Object);
|
|
2620 Lisp_Object call0_with_handler (Lisp_Object, Lisp_Object);
|
|
2621 Lisp_Object call1_with_handler (Lisp_Object, Lisp_Object, Lisp_Object);
|
442
|
2622 Lisp_Object eval_in_buffer_trapping_errors (const char *, struct buffer *,
|
428
|
2623 Lisp_Object);
|
442
|
2624 Lisp_Object run_hook_trapping_errors (const char *, Lisp_Object);
|
|
2625 Lisp_Object safe_run_hook_trapping_errors (const char *, Lisp_Object, int);
|
|
2626 Lisp_Object call0_trapping_errors (const char *, Lisp_Object);
|
|
2627 Lisp_Object call1_trapping_errors (const char *, Lisp_Object, Lisp_Object);
|
|
2628 Lisp_Object call2_trapping_errors (const char *,
|
428
|
2629 Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2630 Lisp_Object call_with_suspended_errors (lisp_fn_t, volatile Lisp_Object, Lisp_Object,
|
578
|
2631 Error_Behavior, int, ...);
|
428
|
2632 /* C Code should be using internal_catch, record_unwind_p, condition_case_1 */
|
|
2633 Lisp_Object internal_catch (Lisp_Object, Lisp_Object (*) (Lisp_Object),
|
|
2634 Lisp_Object, int * volatile);
|
|
2635 Lisp_Object condition_case_1 (Lisp_Object,
|
|
2636 Lisp_Object (*) (Lisp_Object),
|
|
2637 Lisp_Object,
|
|
2638 Lisp_Object (*) (Lisp_Object, Lisp_Object),
|
|
2639 Lisp_Object);
|
|
2640 Lisp_Object condition_case_3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2641 Lisp_Object unbind_to (int, Lisp_Object);
|
|
2642 void specbind (Lisp_Object, Lisp_Object);
|
|
2643 void record_unwind_protect (Lisp_Object (*) (Lisp_Object), Lisp_Object);
|
|
2644 void do_autoload (Lisp_Object, Lisp_Object);
|
|
2645 Lisp_Object un_autoload (Lisp_Object);
|
|
2646 void warn_when_safe_lispobj (Lisp_Object, Lisp_Object, Lisp_Object);
|
442
|
2647 void warn_when_safe (Lisp_Object, Lisp_Object, const char *,
|
428
|
2648 ...) PRINTF_ARGS (3, 4);
|
|
2649
|
|
2650
|
|
2651 /* Defined in event-stream.c */
|
|
2652 void wait_delaying_user_input (int (*) (void *), void *);
|
|
2653 int detect_input_pending (void);
|
|
2654 void reset_this_command_keys (Lisp_Object, int);
|
|
2655 Lisp_Object enqueue_misc_user_event (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2656 Lisp_Object enqueue_misc_user_event_pos (Lisp_Object, Lisp_Object,
|
|
2657 Lisp_Object, int, int, int, int);
|
442
|
2658 extern int modifier_keys_are_sticky;
|
428
|
2659
|
|
2660 /* Defined in event-Xt.c */
|
442
|
2661 void enqueue_Xt_dispatch_event (Lisp_Object event);
|
428
|
2662 void signal_special_Xt_user_event (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2663
|
|
2664
|
|
2665 /* Defined in events.c */
|
|
2666 void clear_event_resource (void);
|
|
2667 Lisp_Object allocate_event (void);
|
|
2668
|
|
2669 /* Defined in fileio.c */
|
|
2670 void record_auto_save (void);
|
|
2671 void force_auto_save_soon (void);
|
563
|
2672 DECLARE_DOESNT_RETURN (report_error_with_errno (Lisp_Object errtype,
|
|
2673 const char *string,
|
|
2674 Lisp_Object data));
|
|
2675 DECLARE_DOESNT_RETURN (report_file_type_error (Lisp_Object errtype,
|
|
2676 Lisp_Object oserrmess,
|
|
2677 const char *string,
|
|
2678 Lisp_Object data));
|
442
|
2679 DECLARE_DOESNT_RETURN (report_file_error (const char *, Lisp_Object));
|
428
|
2680 Lisp_Object lisp_strerror (int);
|
|
2681 Lisp_Object expand_and_dir_to_file (Lisp_Object, Lisp_Object);
|
|
2682 ssize_t read_allowing_quit (int, void *, size_t);
|
442
|
2683 ssize_t write_allowing_quit (int, const void *, size_t);
|
428
|
2684 int internal_delete_file (Lisp_Object);
|
|
2685
|
|
2686 /* Defined in filelock.c */
|
|
2687 void lock_file (Lisp_Object);
|
|
2688 void unlock_file (Lisp_Object);
|
|
2689 void unlock_all_files (void);
|
|
2690 void unlock_buffer (struct buffer *);
|
|
2691
|
|
2692 /* Defined in filemode.c */
|
|
2693 void filemodestring (struct stat *, char *);
|
|
2694
|
|
2695 /* Defined in floatfns.c */
|
|
2696 double extract_float (Lisp_Object);
|
|
2697
|
|
2698 /* Defined in fns.c */
|
|
2699 Lisp_Object list_sort (Lisp_Object, Lisp_Object,
|
|
2700 int (*) (Lisp_Object, Lisp_Object, Lisp_Object));
|
|
2701 Lisp_Object merge (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2702
|
|
2703 void bump_string_modiff (Lisp_Object);
|
|
2704 Lisp_Object memq_no_quit (Lisp_Object, Lisp_Object);
|
|
2705 Lisp_Object assoc_no_quit (Lisp_Object, Lisp_Object);
|
|
2706 Lisp_Object assq_no_quit (Lisp_Object, Lisp_Object);
|
|
2707 Lisp_Object rassq_no_quit (Lisp_Object, Lisp_Object);
|
|
2708 Lisp_Object delq_no_quit (Lisp_Object, Lisp_Object);
|
|
2709 Lisp_Object delq_no_quit_and_free_cons (Lisp_Object, Lisp_Object);
|
|
2710 Lisp_Object remassoc_no_quit (Lisp_Object, Lisp_Object);
|
|
2711 Lisp_Object remassq_no_quit (Lisp_Object, Lisp_Object);
|
|
2712 Lisp_Object remrassq_no_quit (Lisp_Object, Lisp_Object);
|
|
2713
|
|
2714 int plists_differ (Lisp_Object, Lisp_Object, int, int, int);
|
|
2715 Lisp_Object internal_plist_get (Lisp_Object, Lisp_Object);
|
|
2716 void internal_plist_put (Lisp_Object *, Lisp_Object, Lisp_Object);
|
|
2717 int internal_remprop (Lisp_Object *, Lisp_Object);
|
|
2718 Lisp_Object external_plist_get (Lisp_Object *, Lisp_Object,
|
578
|
2719 int, Error_Behavior);
|
428
|
2720 void external_plist_put (Lisp_Object *, Lisp_Object,
|
578
|
2721 Lisp_Object, int, Error_Behavior);
|
|
2722 int external_remprop (Lisp_Object *, Lisp_Object, int, Error_Behavior);
|
428
|
2723 int internal_equal (Lisp_Object, Lisp_Object, int);
|
|
2724 Lisp_Object concat2 (Lisp_Object, Lisp_Object);
|
|
2725 Lisp_Object concat3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2726 Lisp_Object vconcat2 (Lisp_Object, Lisp_Object);
|
|
2727 Lisp_Object vconcat3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2728 Lisp_Object nconc2 (Lisp_Object, Lisp_Object);
|
|
2729 Lisp_Object bytecode_nconc2 (Lisp_Object *);
|
442
|
2730 void check_losing_bytecode (const char *, Lisp_Object);
|
428
|
2731
|
|
2732 /* Defined in glyphs.c */
|
578
|
2733 Error_Behavior decode_error_behavior_flag (Lisp_Object);
|
|
2734 Lisp_Object encode_error_behavior_flag (Error_Behavior);
|
428
|
2735
|
563
|
2736 /* Defined in glyphs-shared.c */
|
|
2737 void shared_resource_validate (Lisp_Object instantiator);
|
|
2738 Lisp_Object shared_resource_normalize (Lisp_Object inst,
|
|
2739 Lisp_Object console_type,
|
|
2740 Lisp_Object dest_mask,
|
|
2741 Lisp_Object tag);
|
|
2742 extern Lisp_Object Q_resource_type, Q_resource_id;
|
|
2743
|
|
2744 /* Defined in gui.c */
|
|
2745 DECLARE_DOESNT_RETURN (gui_error (const char *reason,
|
|
2746 Lisp_Object frob));
|
569
|
2747 DECLARE_DOESNT_RETURN (gui_error_2 (const char *reason,
|
|
2748 Lisp_Object frob0, Lisp_Object frob1));
|
428
|
2749 /* Defined in indent.c */
|
|
2750 int bi_spaces_at_point (struct buffer *, Bytind);
|
|
2751 int column_at_point (struct buffer *, Bufpos, int);
|
440
|
2752 int string_column_at_point (Lisp_String *, Bufpos, int);
|
428
|
2753 int current_column (struct buffer *);
|
|
2754 void invalidate_current_column (void);
|
|
2755 Bufpos vmotion (struct window *, Bufpos, int, int *);
|
|
2756 Bufpos vmotion_pixels (Lisp_Object, Bufpos, int, int, int *);
|
|
2757
|
|
2758 /* Defined in keymap.c */
|
|
2759 void where_is_to_char (Lisp_Object, char *);
|
|
2760
|
|
2761 /* Defined in lread.c */
|
|
2762 void ebolify_bytecode_constants (Lisp_Object);
|
|
2763 void close_load_descs (void);
|
|
2764 int locate_file (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object *, int);
|
|
2765 EXFUN (Flocate_file_clear_hashing, 1);
|
442
|
2766 int isfloat_string (const char *);
|
428
|
2767
|
|
2768 /* Well, I've decided to enable this. -- ben */
|
|
2769 /* And I've decided to make it work right. -- sb */
|
|
2770 #define LOADHIST
|
|
2771 /* Define the following symbol to enable load history of dumped files */
|
|
2772 #define LOADHIST_DUMPED
|
|
2773 /* Define the following symbol to enable load history of C source */
|
|
2774 #define LOADHIST_BUILTIN
|
|
2775
|
|
2776 #ifdef LOADHIST /* this is just a stupid idea */
|
|
2777 #define LOADHIST_ATTACH(x) \
|
|
2778 do { if (initialized) Vcurrent_load_list = Fcons (x, Vcurrent_load_list); } \
|
|
2779 while (0)
|
|
2780 #else /*! LOADHIST */
|
|
2781 # define LOADHIST_ATTACH(x)
|
|
2782 #endif /*! LOADHIST */
|
|
2783
|
|
2784 /* Defined in marker.c */
|
|
2785 Bytind bi_marker_position (Lisp_Object);
|
|
2786 Bufpos marker_position (Lisp_Object);
|
|
2787 void set_bi_marker_position (Lisp_Object, Bytind);
|
|
2788 void set_marker_position (Lisp_Object, Bufpos);
|
|
2789 void unchain_marker (Lisp_Object);
|
|
2790 Lisp_Object noseeum_copy_marker (Lisp_Object, Lisp_Object);
|
|
2791 Lisp_Object set_marker_restricted (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2792 #ifdef MEMORY_USAGE_STATS
|
|
2793 int compute_buffer_marker_usage (struct buffer *, struct overhead_stats *);
|
|
2794 #endif
|
|
2795
|
|
2796 /* Defined in menubar.c */
|
|
2797 extern int popup_menu_up_p;
|
|
2798 extern int menubar_show_keybindings;
|
|
2799 extern int popup_menu_titles;
|
|
2800
|
|
2801 /* Defined in minibuf.c */
|
|
2802 extern int minibuf_level;
|
442
|
2803 Charcount scmp_1 (const Bufbyte *, const Bufbyte *, Charcount, int);
|
428
|
2804 #define scmp(s1, s2, len) scmp_1 (s1, s2, len, completion_ignore_case)
|
|
2805 extern int completion_ignore_case;
|
442
|
2806 int regexp_ignore_completion_p (const Bufbyte *, Lisp_Object,
|
428
|
2807 Bytecount, Bytecount);
|
|
2808 Lisp_Object clear_echo_area (struct frame *, Lisp_Object, int);
|
|
2809 Lisp_Object clear_echo_area_from_print (struct frame *, Lisp_Object, int);
|
442
|
2810 void echo_area_append (struct frame *, const Bufbyte *, Lisp_Object,
|
428
|
2811 Bytecount, Bytecount, Lisp_Object);
|
442
|
2812 void echo_area_message (struct frame *, const Bufbyte *, Lisp_Object,
|
428
|
2813 Bytecount, Bytecount, Lisp_Object);
|
|
2814 Lisp_Object echo_area_status (struct frame *);
|
|
2815 int echo_area_active (struct frame *);
|
|
2816 Lisp_Object echo_area_contents (struct frame *);
|
442
|
2817 void message_internal (const Bufbyte *, Lisp_Object, Bytecount, Bytecount);
|
|
2818 void message_append_internal (const Bufbyte *, Lisp_Object,
|
428
|
2819 Bytecount, Bytecount);
|
442
|
2820 void message (const char *, ...) PRINTF_ARGS (1, 2);
|
|
2821 void message_append (const char *, ...) PRINTF_ARGS (1, 2);
|
|
2822 void message_no_translate (const char *, ...) PRINTF_ARGS (1, 2);
|
428
|
2823 void clear_message (void);
|
|
2824
|
|
2825 /* Defined in print.c */
|
|
2826 void write_string_to_stdio_stream (FILE *, struct console *,
|
442
|
2827 const Bufbyte *, Bytecount, Bytecount,
|
|
2828 Lisp_Object, int);
|
428
|
2829 void debug_print (Lisp_Object);
|
|
2830 void debug_short_backtrace (int);
|
|
2831 void temp_output_buffer_setup (Lisp_Object);
|
|
2832 void temp_output_buffer_show (Lisp_Object, Lisp_Object);
|
|
2833 /* NOTE: Do not call this with the data of a Lisp_String. Use princ.
|
|
2834 * Note: stream should be defaulted before calling
|
|
2835 * (eg Qnil means stdout, not Vstandard_output, etc) */
|
442
|
2836 void write_c_string (const char *, Lisp_Object);
|
428
|
2837 /* Same goes for this function. */
|
442
|
2838 void write_string_1 (const Bufbyte *, Bytecount, Lisp_Object);
|
428
|
2839 void print_cons (Lisp_Object, Lisp_Object, int);
|
|
2840 void print_vector (Lisp_Object, Lisp_Object, int);
|
|
2841 void print_string (Lisp_Object, Lisp_Object, int);
|
603
|
2842
|
|
2843 /* The number of bytes required to store the decimal printed
|
|
2844 representation of an integral type. Add a few bytes for truncation,
|
|
2845 optional sign prefix, and null byte terminator.
|
|
2846 2.40824 == log (256) / log (10). */
|
|
2847 #define DECIMAL_PRINT_SIZE(integral_type) \
|
|
2848 ((size_t) (2.40824 * sizeof (integral_type)) + 3)
|
577
|
2849 void long_to_string (char *, long);
|
603
|
2850
|
428
|
2851 void print_internal (Lisp_Object, Lisp_Object, int);
|
|
2852 void print_symbol (Lisp_Object, Lisp_Object, int);
|
|
2853 void print_float (Lisp_Object, Lisp_Object, int);
|
|
2854 extern int print_escape_newlines;
|
|
2855 extern int print_readably;
|
|
2856 Lisp_Object internal_with_output_to_temp_buffer (Lisp_Object,
|
|
2857 Lisp_Object (*) (Lisp_Object),
|
|
2858 Lisp_Object, Lisp_Object);
|
|
2859 void float_to_string (char *, double);
|
|
2860 void internal_object_printer (Lisp_Object, Lisp_Object, int);
|
|
2861
|
563
|
2862 /* Defined in process.c */
|
|
2863 DECLARE_DOESNT_RETURN (report_process_error (const char *, Lisp_Object));
|
|
2864 DECLARE_DOESNT_RETURN (report_network_error (const char *, Lisp_Object));
|
|
2865
|
428
|
2866 /* Defined in profile.c */
|
|
2867 void mark_profiling_info (void);
|
|
2868 void profile_increase_call_count (Lisp_Object);
|
|
2869 extern int profiling_active;
|
|
2870 extern int profiling_redisplay_flag;
|
|
2871
|
|
2872 /* Defined in rangetab.c */
|
|
2873 void put_range_table (Lisp_Object, EMACS_INT, EMACS_INT, Lisp_Object);
|
|
2874 int unified_range_table_bytes_needed (Lisp_Object);
|
|
2875 int unified_range_table_bytes_used (void *);
|
|
2876 void unified_range_table_copy_data (Lisp_Object, void *);
|
|
2877 Lisp_Object unified_range_table_lookup (void *, EMACS_INT, Lisp_Object);
|
|
2878 int unified_range_table_nentries (void *);
|
|
2879 void unified_range_table_get_range (void *, int, EMACS_INT *, EMACS_INT *,
|
|
2880 Lisp_Object *);
|
|
2881
|
|
2882 /* Defined in search.c */
|
|
2883 struct re_pattern_buffer;
|
|
2884 struct re_registers;
|
|
2885 Bufpos scan_buffer (struct buffer *, Emchar, Bufpos, Bufpos, EMACS_INT, EMACS_INT *, int);
|
|
2886 Bufpos find_next_newline (struct buffer *, Bufpos, int);
|
|
2887 Bufpos find_next_newline_no_quit (struct buffer *, Bufpos, int);
|
|
2888 Bytind bi_find_next_newline_no_quit (struct buffer *, Bytind, int);
|
440
|
2889 Bytind bi_find_next_emchar_in_string (Lisp_String*, Emchar, Bytind, EMACS_INT);
|
428
|
2890 Bufpos find_before_next_newline (struct buffer *, Bufpos, Bufpos, int);
|
|
2891 struct re_pattern_buffer *compile_pattern (Lisp_Object, struct re_registers *,
|
578
|
2892 Lisp_Object, int, Error_Behavior);
|
442
|
2893 Bytecount fast_string_match (Lisp_Object, const Bufbyte *,
|
428
|
2894 Lisp_Object, Bytecount,
|
578
|
2895 Bytecount, int, Error_Behavior, int);
|
428
|
2896 Bytecount fast_lisp_string_match (Lisp_Object, Lisp_Object);
|
|
2897 void restore_match_data (void);
|
507
|
2898 extern Fixnum warn_about_possibly_incompatible_back_references;
|
502
|
2899
|
428
|
2900
|
|
2901 /* Defined in signal.c */
|
|
2902 void init_interrupts_late (void);
|
|
2903 extern int dont_check_for_quit;
|
|
2904 void begin_dont_check_for_quit (void);
|
|
2905 void emacs_sleep (int);
|
|
2906
|
|
2907 /* Defined in sound.c */
|
|
2908 void init_device_sound (struct device *);
|
563
|
2909 DECLARE_DOESNT_RETURN (report_sound_error (const Char_ASCII *, Lisp_Object));
|
428
|
2910
|
|
2911 /* Defined in specifier.c */
|
|
2912 Lisp_Object specifier_instance (Lisp_Object, Lisp_Object, Lisp_Object,
|
578
|
2913 Error_Behavior, int, int, Lisp_Object);
|
428
|
2914 Lisp_Object specifier_instance_no_quit (Lisp_Object, Lisp_Object, Lisp_Object,
|
578
|
2915 Error_Behavior, int, Lisp_Object);
|
428
|
2916
|
|
2917 /* Defined in symbols.c */
|
490
|
2918 unsigned int hash_string (const Bufbyte *, Bytecount);
|
442
|
2919 Lisp_Object intern (const char *);
|
|
2920 Lisp_Object oblookup (Lisp_Object, const Bufbyte *, Bytecount);
|
428
|
2921 void map_obarray (Lisp_Object, int (*) (Lisp_Object, void *), void *);
|
|
2922 Lisp_Object indirect_function (Lisp_Object, int);
|
|
2923 Lisp_Object symbol_value_in_buffer (Lisp_Object, Lisp_Object);
|
|
2924 void kill_buffer_local_variables (struct buffer *);
|
|
2925 int symbol_value_buffer_local_info (Lisp_Object, struct buffer *);
|
|
2926 Lisp_Object find_symbol_value (Lisp_Object);
|
|
2927 Lisp_Object find_symbol_value_quickly (Lisp_Object, int);
|
|
2928 Lisp_Object top_level_value (Lisp_Object);
|
|
2929 void reject_constant_symbols (Lisp_Object sym, Lisp_Object newval,
|
|
2930 int function_p,
|
|
2931 Lisp_Object follow_past_lisp_magic);
|
|
2932
|
|
2933 /* Defined in syntax.c */
|
|
2934 Bufpos scan_words (struct buffer *, Bufpos, int);
|
|
2935
|
|
2936 /* Defined in undo.c */
|
|
2937 Lisp_Object truncate_undo_list (Lisp_Object, int, int);
|
|
2938 void record_extent (Lisp_Object, int);
|
|
2939 void record_insert (struct buffer *, Bufpos, Charcount);
|
|
2940 void record_delete (struct buffer *, Bufpos, Charcount);
|
|
2941 void record_change (struct buffer *, Bufpos, Charcount);
|
|
2942
|
|
2943 /* Defined in unex*.c */
|
|
2944 int unexec (char *, char *, uintptr_t, uintptr_t, uintptr_t);
|
|
2945 #ifdef RUN_TIME_REMAP
|
|
2946 int run_time_remap (char *);
|
|
2947 #endif
|
|
2948
|
|
2949 /* Defined in vm-limit.c */
|
442
|
2950 void memory_warnings (void *, void (*) (const char *));
|
428
|
2951
|
|
2952 /* Defined in window.c */
|
|
2953 Lisp_Object save_window_excursion_unwind (Lisp_Object);
|
|
2954 Lisp_Object display_buffer (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2955
|
442
|
2956 /*--------------- prototypes for Lisp primitives in C ------------*/
|
|
2957
|
428
|
2958 /* The following were machine generated 19980312 */
|
|
2959
|
|
2960 EXFUN (Faccept_process_output, 3);
|
|
2961 EXFUN (Fadd1, 1);
|
|
2962 EXFUN (Fadd_spec_to_specifier, 5);
|
|
2963 EXFUN (Fadd_timeout, 4);
|
|
2964 EXFUN (Fappend, MANY);
|
|
2965 EXFUN (Fapply, MANY);
|
|
2966 EXFUN (Faref, 2);
|
|
2967 EXFUN (Faset, 3);
|
|
2968 EXFUN (Fassoc, 2);
|
|
2969 EXFUN (Fassq, 2);
|
|
2970 EXFUN (Fbacktrace, 2);
|
|
2971 EXFUN (Fbeginning_of_line, 2);
|
|
2972 EXFUN (Fbobp, 1);
|
|
2973 EXFUN (Fbolp, 1);
|
|
2974 EXFUN (Fboundp, 1);
|
|
2975 EXFUN (Fbuffer_substring, 3);
|
|
2976 EXFUN (Fbuilt_in_variable_type, 1);
|
|
2977 EXFUN (Fbyte_code, 3);
|
|
2978 EXFUN (Fcall_interactively, 3);
|
|
2979 EXFUN (Fcanonicalize_lax_plist, 2);
|
|
2980 EXFUN (Fcanonicalize_plist, 2);
|
|
2981 EXFUN (Fcar, 1);
|
|
2982 EXFUN (Fcar_safe, 1);
|
|
2983 EXFUN (Fcdr, 1);
|
|
2984 EXFUN (Fchar_after, 2);
|
|
2985 EXFUN (Fchar_to_string, 1);
|
|
2986 EXFUN (Fcheck_valid_plist, 1);
|
442
|
2987 EXFUN (Fvalid_plist_p, 1);
|
428
|
2988 EXFUN (Fclear_range_table, 1);
|
|
2989 EXFUN (Fcoding_category_list, 0);
|
|
2990 EXFUN (Fcoding_category_system, 1);
|
|
2991 EXFUN (Fcoding_priority_list, 0);
|
|
2992 EXFUN (Fcoding_system_doc_string, 1);
|
|
2993 EXFUN (Fcoding_system_list, 0);
|
|
2994 EXFUN (Fcoding_system_name, 1);
|
|
2995 EXFUN (Fcoding_system_p, 1);
|
|
2996 EXFUN (Fcoding_system_property, 2);
|
|
2997 EXFUN (Fcoding_system_type, 1);
|
|
2998 EXFUN (Fcommand_execute, 3);
|
|
2999 EXFUN (Fcommandp, 1);
|
|
3000 EXFUN (Fconcat, MANY);
|
|
3001 EXFUN (Fcons, 2);
|
|
3002 EXFUN (Fcopy_alist, 1);
|
|
3003 EXFUN (Fcopy_coding_system, 2);
|
|
3004 EXFUN (Fcopy_event, 2);
|
|
3005 EXFUN (Fcopy_list, 1);
|
|
3006 EXFUN (Fcopy_marker, 2);
|
|
3007 EXFUN (Fcopy_sequence, 1);
|
|
3008 EXFUN (Fcopy_tree, 2);
|
|
3009 EXFUN (Fcurrent_window_configuration, 1);
|
|
3010 EXFUN (Fdecode_big5_char, 1);
|
|
3011 EXFUN (Fdecode_coding_region, 4);
|
|
3012 EXFUN (Fdecode_shift_jis_char, 1);
|
|
3013 EXFUN (Fdefault_boundp, 1);
|
|
3014 EXFUN (Fdefault_value, 1);
|
|
3015 EXFUN (Fdefine_key, 3);
|
442
|
3016 EXFUN (Fdelete, 2);
|
428
|
3017 EXFUN (Fdelete_region, 3);
|
|
3018 EXFUN (Fdelete_process, 1);
|
|
3019 EXFUN (Fdelq, 2);
|
|
3020 EXFUN (Fdestructive_alist_to_plist, 1);
|
|
3021 EXFUN (Fdetect_coding_region, 3);
|
|
3022 EXFUN (Fdgettext, 2);
|
|
3023 EXFUN (Fding, 3);
|
|
3024 EXFUN (Fdirectory_file_name, 1);
|
|
3025 EXFUN (Fdisable_timeout, 1);
|
|
3026 EXFUN (Fdiscard_input, 0);
|
|
3027 EXFUN (Fdispatch_event, 1);
|
|
3028 EXFUN (Fdisplay_error, 2);
|
|
3029 EXFUN (Fdo_auto_save, 2);
|
|
3030 EXFUN (Fdowncase, 2);
|
|
3031 EXFUN (Felt, 2);
|
|
3032 EXFUN (Fencode_big5_char, 1);
|
|
3033 EXFUN (Fencode_coding_region, 4);
|
|
3034 EXFUN (Fencode_shift_jis_char, 1);
|
|
3035 EXFUN (Fend_of_line, 2);
|
|
3036 EXFUN (Fenqueue_eval_event, 2);
|
|
3037 EXFUN (Feobp, 1);
|
|
3038 EXFUN (Feolp, 1);
|
|
3039 EXFUN (Fequal, 2);
|
|
3040 EXFUN (Ferror_message_string, 1);
|
|
3041 EXFUN (Feval, 1);
|
|
3042 EXFUN (Fevent_to_character, 4);
|
|
3043 EXFUN (Fexecute_kbd_macro, 2);
|
|
3044 EXFUN (Fexpand_abbrev, 0);
|
|
3045 EXFUN (Fexpand_file_name, 2);
|
|
3046 EXFUN (Fextent_at, 5);
|
|
3047 EXFUN (Fextent_property, 3);
|
|
3048 EXFUN (Ffboundp, 1);
|
|
3049 EXFUN (Ffile_accessible_directory_p, 1);
|
|
3050 EXFUN (Ffile_directory_p, 1);
|
|
3051 EXFUN (Ffile_executable_p, 1);
|
|
3052 EXFUN (Ffile_exists_p, 1);
|
|
3053 EXFUN (Ffile_name_absolute_p, 1);
|
|
3054 EXFUN (Ffile_name_as_directory, 1);
|
|
3055 EXFUN (Ffile_name_directory, 1);
|
|
3056 EXFUN (Ffile_name_nondirectory, 1);
|
|
3057 EXFUN (Ffile_readable_p, 1);
|
|
3058 EXFUN (Ffile_symlink_p, 1);
|
|
3059 EXFUN (Ffile_truename, 2);
|
|
3060 EXFUN (Ffind_coding_system, 1);
|
|
3061 EXFUN (Ffind_file_name_handler, 2);
|
|
3062 EXFUN (Ffollowing_char, 1);
|
|
3063 EXFUN (Fformat, MANY);
|
|
3064 EXFUN (Fforward_char, 2);
|
|
3065 EXFUN (Fforward_line, 2);
|
|
3066 EXFUN (Ffset, 2);
|
|
3067 EXFUN (Ffuncall, MANY);
|
442
|
3068 EXFUN (Ffunctionp, 1);
|
428
|
3069 EXFUN (Fgeq, MANY);
|
|
3070 EXFUN (Fget, 3);
|
|
3071 EXFUN (Fget_buffer_process, 1);
|
|
3072 EXFUN (Fget_coding_system, 1);
|
|
3073 EXFUN (Fget_process, 1);
|
|
3074 EXFUN (Fget_range_table, 3);
|
|
3075 EXFUN (Fgettext, 1);
|
|
3076 EXFUN (Fgoto_char, 2);
|
|
3077 EXFUN (Fgtr, MANY);
|
|
3078 EXFUN (Findent_to, 3);
|
|
3079 EXFUN (Findirect_function, 1);
|
|
3080 EXFUN (Finsert, MANY);
|
|
3081 EXFUN (Finsert_buffer_substring, 3);
|
|
3082 EXFUN (Finsert_char, 4);
|
|
3083 EXFUN (Finsert_file_contents_internal, 7);
|
|
3084 EXFUN (Finteractive_p, 0);
|
|
3085 EXFUN (Fintern, 2);
|
|
3086 EXFUN (Fintern_soft, 2);
|
|
3087 EXFUN (Fkey_description, 1);
|
|
3088 EXFUN (Fkill_emacs, 1);
|
|
3089 EXFUN (Fkill_local_variable, 1);
|
442
|
3090 EXFUN (Flast, 2);
|
428
|
3091 EXFUN (Flax_plist_get, 3);
|
|
3092 EXFUN (Flax_plist_remprop, 2);
|
|
3093 EXFUN (Flength, 1);
|
|
3094 EXFUN (Fleq, MANY);
|
|
3095 EXFUN (Flist, MANY);
|
|
3096 EXFUN (Flistp, 1);
|
|
3097 EXFUN (Flist_modules, 0);
|
|
3098 EXFUN (Fload_module, 3);
|
440
|
3099 EXFUN (Flookup_key, 3);
|
428
|
3100 EXFUN (Flss, MANY);
|
|
3101 EXFUN (Fmake_byte_code, MANY);
|
|
3102 EXFUN (Fmake_coding_system, 4);
|
|
3103 EXFUN (Fmake_glyph_internal, 1);
|
|
3104 EXFUN (Fmake_list, 2);
|
|
3105 EXFUN (Fmake_marker, 0);
|
|
3106 EXFUN (Fmake_range_table, 0);
|
|
3107 EXFUN (Fmake_sparse_keymap, 1);
|
|
3108 EXFUN (Fmake_string, 2);
|
|
3109 EXFUN (Fmake_symbol, 1);
|
|
3110 EXFUN (Fmake_vector, 2);
|
|
3111 EXFUN (Fmapcar, 2);
|
|
3112 EXFUN (Fmarker_buffer, 1);
|
|
3113 EXFUN (Fmarker_position, 1);
|
|
3114 EXFUN (Fmatch_beginning, 1);
|
|
3115 EXFUN (Fmatch_end, 1);
|
|
3116 EXFUN (Fmax, MANY);
|
|
3117 EXFUN (Fmember, 2);
|
|
3118 EXFUN (Fmemq, 2);
|
|
3119 EXFUN (Fmin, MANY);
|
|
3120 EXFUN (Fminus, MANY);
|
|
3121 EXFUN (Fnarrow_to_region, 3);
|
|
3122 EXFUN (Fnconc, MANY);
|
|
3123 EXFUN (Fnext_event, 2);
|
|
3124 EXFUN (Fnreverse, 1);
|
|
3125 EXFUN (Fnthcdr, 2);
|
|
3126 EXFUN (Fnumber_to_string, 1);
|
|
3127 EXFUN (Fold_assq, 2);
|
|
3128 EXFUN (Fold_equal, 2);
|
|
3129 EXFUN (Fold_member, 2);
|
|
3130 EXFUN (Fold_memq, 2);
|
|
3131 EXFUN (Fplist_get, 3);
|
|
3132 EXFUN (Fplist_member, 2);
|
|
3133 EXFUN (Fplist_put, 3);
|
|
3134 EXFUN (Fplus, MANY);
|
|
3135 EXFUN (Fpoint, 1);
|
|
3136 EXFUN (Fpoint_marker, 2);
|
|
3137 EXFUN (Fpoint_max, 1);
|
|
3138 EXFUN (Fpoint_min, 1);
|
|
3139 EXFUN (Fpreceding_char, 1);
|
|
3140 EXFUN (Fprefix_numeric_value, 1);
|
|
3141 EXFUN (Fprin1, 2);
|
|
3142 EXFUN (Fprin1_to_string, 2);
|
|
3143 EXFUN (Fprinc, 2);
|
|
3144 EXFUN (Fprint, 2);
|
|
3145 EXFUN (Fprocess_status, 1);
|
|
3146 EXFUN (Fprogn, UNEVALLED);
|
|
3147 EXFUN (Fprovide, 1);
|
|
3148 EXFUN (Fput, 3);
|
|
3149 EXFUN (Fput_range_table, 4);
|
|
3150 EXFUN (Fput_text_property, 5);
|
|
3151 EXFUN (Fquo, MANY);
|
|
3152 EXFUN (Frassq, 2);
|
|
3153 EXFUN (Fread, 1);
|
|
3154 EXFUN (Fread_key_sequence, 3);
|
|
3155 EXFUN (Freally_free, 1);
|
|
3156 EXFUN (Frem, 2);
|
|
3157 EXFUN (Fremassq, 2);
|
442
|
3158 EXFUN (Freplace_list, 2);
|
428
|
3159 EXFUN (Fselected_frame, 1);
|
|
3160 EXFUN (Fset, 2);
|
|
3161 EXFUN (Fset_coding_category_system, 2);
|
|
3162 EXFUN (Fset_coding_priority_list, 1);
|
|
3163 EXFUN (Fset_default, 2);
|
|
3164 EXFUN (Fset_marker, 3);
|
|
3165 EXFUN (Fset_standard_case_table, 1);
|
|
3166 EXFUN (Fsetcar, 2);
|
|
3167 EXFUN (Fsetcdr, 2);
|
|
3168 EXFUN (Fsignal, 2);
|
|
3169 EXFUN (Fsit_for, 2);
|
|
3170 EXFUN (Fskip_chars_backward, 3);
|
|
3171 EXFUN (Fskip_chars_forward, 3);
|
|
3172 EXFUN (Fsleep_for, 1);
|
|
3173 EXFUN (Fsort, 2);
|
|
3174 EXFUN (Fspecifier_spec_list, 4);
|
|
3175 EXFUN (Fstring_equal, 2);
|
|
3176 EXFUN (Fstring_lessp, 2);
|
|
3177 EXFUN (Fstring_match, 4);
|
|
3178 EXFUN (Fsub1, 1);
|
|
3179 EXFUN (Fsubr_max_args, 1);
|
|
3180 EXFUN (Fsubr_min_args, 1);
|
|
3181 EXFUN (Fsubsidiary_coding_system, 2);
|
|
3182 EXFUN (Fsubstitute_command_keys, 1);
|
|
3183 EXFUN (Fsubstitute_in_file_name, 1);
|
|
3184 EXFUN (Fsubstring, 3);
|
|
3185 EXFUN (Fsymbol_function, 1);
|
|
3186 EXFUN (Fsymbol_name, 1);
|
|
3187 EXFUN (Fsymbol_plist, 1);
|
|
3188 EXFUN (Fsymbol_value, 1);
|
|
3189 EXFUN (Fsystem_name, 0);
|
|
3190 EXFUN (Fthrow, 2);
|
|
3191 EXFUN (Ftimes, MANY);
|
|
3192 EXFUN (Ftruncate, 1);
|
|
3193 EXFUN (Fundo_boundary, 0);
|
|
3194 EXFUN (Funhandled_file_name_directory, 1);
|
|
3195 EXFUN (Funlock_buffer, 0);
|
|
3196 EXFUN (Fupcase, 2);
|
|
3197 EXFUN (Fupcase_initials, 2);
|
|
3198 EXFUN (Fupcase_initials_region, 3);
|
|
3199 EXFUN (Fupcase_region, 3);
|
|
3200 EXFUN (Fuser_home_directory, 0);
|
|
3201 EXFUN (Fuser_login_name, 1);
|
|
3202 EXFUN (Fvector, MANY);
|
|
3203 EXFUN (Fverify_visited_file_modtime, 1);
|
|
3204 EXFUN (Fvertical_motion, 3);
|
|
3205 EXFUN (Fwiden, 1);
|
|
3206
|
442
|
3207 /*--------------- prototypes for constant symbols ------------*/
|
|
3208
|
|
3209 extern Lisp_Object Q_style;
|
|
3210 extern Lisp_Object Qactivate_menubar_hook;
|
|
3211 extern Lisp_Object Qarith_error;
|
|
3212 extern Lisp_Object Qarrayp, Qautoload;
|
|
3213 extern Lisp_Object Qbackground, Qbackground_pixmap;
|
|
3214 extern Lisp_Object Qbeginning_of_buffer, Qbig5;
|
|
3215 extern Lisp_Object Qbitp, Qblinking;
|
|
3216 extern Lisp_Object Qbuffer_glyph_p, Qbuffer_live_p, Qbuffer_read_only;
|
|
3217 extern Lisp_Object Qbyte_code, Qcall_interactively;
|
428
|
3218 extern Lisp_Object Qcategory_designator_p, Qcategory_table_value_p, Qccl, Qcdr;
|
442
|
3219 extern Lisp_Object Qchar_or_string_p, Qcharacterp;
|
|
3220 extern Lisp_Object Qcharset_g0, Qcharset_g1, Qcharset_g2, Qcharset_g3;
|
|
3221 extern Lisp_Object Qcircular_list, Qcircular_property_list;
|
|
3222 extern Lisp_Object Qcolor_pixmap_image_instance_p;
|
|
3223 extern Lisp_Object Qcommandp, Qcompletion_ignore_case;
|
563
|
3224 extern Lisp_Object Qconsole_live_p, Qconst_specifier, Qconversion_error, Qcr;
|
442
|
3225 extern Lisp_Object Qcrlf, Qcurrent_menubar, Qctext;
|
|
3226 extern Lisp_Object Qcyclic_variable_indirection, Qdecode;
|
|
3227 extern Lisp_Object Qdefun, Qdevice_live_p;
|
|
3228 extern Lisp_Object Qdim, Qdisabled, Qdisplay_table;
|
|
3229 extern Lisp_Object Qdomain_error;
|
|
3230 extern Lisp_Object Qediting_error;
|
|
3231 extern Lisp_Object Qencode, Qend_of_buffer, Qend_of_file, Qend_open;
|
|
3232 extern Lisp_Object Qeol_cr, Qeol_crlf, Qeol_lf, Qeol_type;
|
563
|
3233 extern Lisp_Object Qerror, Qerror_conditions, Qerror_lacks_explanatory_string;
|
|
3234 extern Lisp_Object Qerror_message, Qescape_quoted;
|
442
|
3235 extern Lisp_Object Qevent_live_p, Qexit, Qextent_live_p;
|
|
3236 extern Lisp_Object Qexternal_debugging_output, Qfeaturep;
|
|
3237 extern Lisp_Object Qfile_error;
|
|
3238 extern Lisp_Object Qforce_g0_on_output, Qforce_g1_on_output;
|
428
|
3239 extern Lisp_Object Qforce_g2_on_output, Qforce_g3_on_output, Qforeground;
|
563
|
3240 extern Lisp_Object Qformat, Qframe_live_p, Qgui_error;
|
442
|
3241 extern Lisp_Object Qicon_glyph_p, Qidentity;
|
428
|
3242 extern Lisp_Object Qinhibit_quit, Qinhibit_read_only;
|
442
|
3243 extern Lisp_Object Qinput_charset_conversion;
|
428
|
3244 extern Lisp_Object Qinteger_char_or_marker_p, Qinteger_or_char_p;
|
442
|
3245 extern Lisp_Object Qinteger_or_marker_p, Qintegerp, Qinteractive;
|
563
|
3246 extern Lisp_Object Qinternal_error, Qinvalid_argument, Qinvalid_byte_code;
|
|
3247 extern Lisp_Object Qinvalid_change, Qinvalid_constant, Qinvalid_function;
|
|
3248 extern Lisp_Object Qinvalid_operation;
|
442
|
3249 extern Lisp_Object Qinvalid_read_syntax, Qinvalid_state;
|
|
3250 extern Lisp_Object Qio_error;
|
|
3251 extern Lisp_Object Qiso2022;
|
|
3252 extern Lisp_Object Qlambda, Qlayout;
|
|
3253 extern Lisp_Object Qlf;
|
|
3254 extern Lisp_Object Qlist_formation_error;
|
|
3255 extern Lisp_Object Qlistp, Qload, Qlock_shift, Qmacro;
|
440
|
3256 extern Lisp_Object Qmakunbound, Qmalformed_list, Qmalformed_property_list;
|
442
|
3257 extern Lisp_Object Qmark;
|
|
3258 extern Lisp_Object Qmnemonic;
|
|
3259 extern Lisp_Object Qmono_pixmap_image_instance_p;
|
|
3260 extern Lisp_Object Qmouse_leave_buffer_hook;
|
563
|
3261 extern Lisp_Object Qnatnump, Qnative_layout, Qnetwork_error;
|
428
|
3262 extern Lisp_Object Qno_ascii_cntl, Qno_ascii_eol, Qno_catch;
|
442
|
3263 extern Lisp_Object Qno_conversion, Qno_iso6429;
|
|
3264 extern Lisp_Object Qnothing_image_instance_p;
|
563
|
3265 extern Lisp_Object Qnumber_char_or_marker_p, Qnumberp, Qout_of_memory;
|
442
|
3266 extern Lisp_Object Qoutput_charset_conversion;
|
|
3267 extern Lisp_Object Qoverflow_error, Qpoint, Qpointer_glyph_p;
|
|
3268 extern Lisp_Object Qpointer_image_instance_p, Qpost_read_conversion;
|
|
3269 extern Lisp_Object Qpre_write_conversion, Qprint_length;
|
563
|
3270 extern Lisp_Object Qprint_string_length, Qprinting_unreadable_object;
|
|
3271 extern Lisp_Object Qprogn, Qprocess_error, Qquit;
|
442
|
3272 extern Lisp_Object Qquote, Qrange_error, Qread_char;
|
428
|
3273 extern Lisp_Object Qread_from_minibuffer, Qreally_early_error_handler;
|
442
|
3274 extern Lisp_Object Qregion_beginning, Qregion_end;
|
440
|
3275 extern Lisp_Object Qrun_hooks, Qsans_modifiers;
|
442
|
3276 extern Lisp_Object Qsave_buffers_kill_emacs;
|
430
|
3277 extern Lisp_Object Qself_insert_command, Qself_insert_defer_undo;
|
440
|
3278 extern Lisp_Object Qsequencep, Qset, Qsetting_constant;
|
|
3279 extern Lisp_Object Qseven, Qshift_jis, Qshort;
|
563
|
3280 extern Lisp_Object Qsingularity_error, Qsound_error, Qstack_overflow;
|
442
|
3281 extern Lisp_Object Qstandard_input, Qstandard_output;
|
|
3282 extern Lisp_Object Qstart_open;
|
563
|
3283 extern Lisp_Object Qstring_lessp, Qstructure_formation_error, Qsubwindow;
|
440
|
3284 extern Lisp_Object Qsubwindow_image_instance_p;
|
563
|
3285 extern Lisp_Object Qsyntax_error, Qt, Qtext_conversion_error;
|
442
|
3286 extern Lisp_Object Qtext_image_instance_p;
|
|
3287 extern Lisp_Object Qtop_level;
|
|
3288 extern Lisp_Object Qtrue_list_p;
|
|
3289 extern Lisp_Object Qunbound, Qunderflow_error;
|
|
3290 extern Lisp_Object Qunderline, Quser_files_and_directories;
|
|
3291 extern Lisp_Object Qvalues;
|
|
3292 extern Lisp_Object Qvariable_documentation, Qvariable_domain;
|
|
3293 extern Lisp_Object Qvoid_function, Qvoid_variable;
|
|
3294 extern Lisp_Object Qwindow_live_p, Qwrong_number_of_arguments;
|
|
3295 extern Lisp_Object Qwrong_type_argument, Qyes_or_no_p;
|
462
|
3296 extern Lisp_Object Qgtk;
|
442
|
3297
|
|
3298 #define SYMBOL(fou) extern Lisp_Object fou
|
|
3299 #define SYMBOL_KEYWORD(la_cle_est_fou) extern Lisp_Object la_cle_est_fou
|
|
3300 #define SYMBOL_GENERAL(tout_le_monde, est_fou) \
|
|
3301 extern Lisp_Object tout_le_monde
|
|
3302
|
|
3303 #include "general-slots.h"
|
|
3304
|
|
3305 #undef SYMBOL
|
|
3306 #undef SYMBOL_KEYWORD
|
|
3307 #undef SYMBOL_GENERAL
|
|
3308
|
|
3309 /*--------------- prototypes for variables of type Lisp_Object ------------*/
|
|
3310
|
446
|
3311 extern Lisp_Object Vactivate_menubar_hook;
|
|
3312 extern Lisp_Object Vautoload_queue, Vblank_menubar;
|
428
|
3313 extern Lisp_Object Vcharset_ascii, Vcharset_composite, Vcharset_control_1;
|
|
3314 extern Lisp_Object Vcoding_system_for_read, Vcoding_system_for_write;
|
|
3315 extern Lisp_Object Vcoding_system_hash_table, Vcommand_history;
|
|
3316 extern Lisp_Object Vcommand_line_args, Vconfigure_info_directory;
|
|
3317 extern Lisp_Object Vconfigure_site_directory, Vconfigure_site_module_directory;
|
|
3318 extern Lisp_Object Vconsole_list, Vcontrolling_terminal;
|
|
3319 extern Lisp_Object Vcurrent_compiled_function_annotation, Vcurrent_load_list;
|
|
3320 extern Lisp_Object Vcurrent_mouse_event, Vcurrent_prefix_arg, Vdata_directory;
|
434
|
3321 extern Lisp_Object Vdirectory_sep_char, Vdisabled_command_hook;
|
|
3322 extern Lisp_Object Vdoc_directory, Vinternal_doc_file_name;
|
428
|
3323 extern Lisp_Object Vecho_area_buffer, Vemacs_major_version;
|
|
3324 extern Lisp_Object Vemacs_minor_version, Vexec_directory, Vexec_path;
|
|
3325 extern Lisp_Object Vexecuting_macro, Vfeatures, Vfile_domain;
|
|
3326 extern Lisp_Object Vfile_name_coding_system, Vinhibit_quit;
|
|
3327 extern Lisp_Object Vinvocation_directory, Vinvocation_name;
|
|
3328 extern Lisp_Object Vkeyboard_coding_system, Vlast_command, Vlast_command_char;
|
|
3329 extern Lisp_Object Vlast_command_event, Vlast_input_event;
|
|
3330 extern Lisp_Object Vload_file_name_internal;
|
|
3331 extern Lisp_Object Vload_file_name_internal_the_purecopy, Vload_history;
|
|
3332 extern Lisp_Object Vload_path, Vmark_even_if_inactive, Vmenubar_configuration;
|
|
3333 extern Lisp_Object Vminibuf_preprompt, Vminibuf_prompt, Vminibuffer_zero;
|
|
3334 extern Lisp_Object Vmodule_directory, Vmswindows_downcase_file_names;
|
|
3335 extern Lisp_Object Vmswindows_get_true_file_attributes, Vobarray;
|
|
3336 extern Lisp_Object Vprint_length, Vprint_level, Vprocess_environment;
|
|
3337 extern Lisp_Object Vquit_flag;
|
|
3338 extern Lisp_Object Vrecent_keys_ring, Vshell_file_name, Vsite_directory;
|
|
3339 extern Lisp_Object Vsite_module_directory;
|
|
3340 extern Lisp_Object Vstandard_input, Vstandard_output, Vstdio_str;
|
|
3341 extern Lisp_Object Vsynchronous_sounds, Vsystem_name, Vterminal_coding_system;
|
|
3342 extern Lisp_Object Vthis_command_keys, Vunread_command_event;
|
|
3343 extern Lisp_Object Vx_initial_argv_list;
|
|
3344
|
440
|
3345 #endif /* INCLUDED_lisp_h_ */
|