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