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