0
|
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.
|
|
4 Copyright (C) 1995, 1996 Ben Wing.
|
|
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
|
|
25 #ifndef _XEMACS_LISP_H_
|
|
26 #define _XEMACS_LISP_H_
|
|
27
|
|
28 /************************************************************************/
|
|
29 /* general definitions */
|
|
30 /************************************************************************/
|
|
31
|
|
32 /* We include the following generally useful header files so that you
|
|
33 don't have to worry about prototypes when using the standard C
|
|
34 library functions and macros. These files shouldn't be excessively
|
|
35 large so they shouldn't cause that much of a slowdown. */
|
|
36
|
|
37 #include <stdlib.h>
|
|
38 #include <string.h> /* primarily for memcpy, etc. */
|
|
39 #include <stdio.h> /* NULL, etc. */
|
|
40 #include <ctype.h>
|
|
41 #include <stdarg.h>
|
|
42
|
|
43 #ifdef __lucid
|
|
44 # include <sysent.h>
|
|
45 #endif
|
|
46
|
272
|
47 /* ---- Dynamic arrays ---- */
|
|
48
|
|
49 #define Dynarr_declare(type) \
|
|
50 type *base; \
|
|
51 int elsize; \
|
|
52 int cur; \
|
|
53 int largest; \
|
|
54 int max
|
|
55
|
|
56 typedef struct dynarr
|
|
57 {
|
|
58 Dynarr_declare (void);
|
|
59 } Dynarr;
|
|
60
|
|
61 void *Dynarr_newf (int elsize);
|
|
62 void Dynarr_resize (void *dy, int size);
|
|
63 void Dynarr_insert_many (void *d, CONST void *el, int len, int start);
|
|
64 void Dynarr_delete_many (void *d, int start, int len);
|
|
65 void Dynarr_free (void *d);
|
|
66
|
|
67 #define Dynarr_new(type) ((type##_dynarr *) Dynarr_newf (sizeof(type)))
|
|
68 #define Dynarr_at(d, pos) ((d)->base[pos])
|
|
69 #define Dynarr_atp(d, pos) (&Dynarr_at (d, pos))
|
|
70 #define Dynarr_length(d) ((d)->cur)
|
|
71 #define Dynarr_largest(d) ((d)->largest)
|
|
72 #define Dynarr_reset(d) ((d)->cur = 0)
|
|
73 #define Dynarr_add_many(d, el, len) Dynarr_insert_many (d, el, len, (d)->cur)
|
|
74 #define Dynarr_insert_many_at_start(d, el, len) \
|
|
75 Dynarr_insert_many (d, el, len, 0)
|
|
76 #define Dynarr_add_literal_string(d, s) Dynarr_add_many (d, s, sizeof(s) - 1)
|
|
77 #define Dynarr_add_lisp_string(d, s) do { \
|
|
78 struct Lisp_String *dyna_ls_s = XSTRING (s); \
|
|
79 Dynarr_add_many (d, (char *) string_data (dyna_ls_s), \
|
|
80 string_length (dyna_ls_s)); \
|
|
81 } while (0)
|
|
82
|
|
83 #define Dynarr_add(d, el) ( \
|
|
84 (d)->cur >= (d)->max ? Dynarr_resize ((d), (d)->cur+1) : (void) 0, \
|
|
85 ((d)->base)[(d)->cur++] = (el), \
|
|
86 (d)->cur > (d)->largest ? (d)->largest = (d)->cur : (int) 0)
|
|
87
|
|
88 /* The following defines will get you into real trouble if you aren't
|
|
89 careful. But they can save a lot of execution time when used wisely. */
|
|
90 #define Dynarr_increment(d) ((d)->cur++)
|
|
91 #define Dynarr_set_size(d, n) ((d)->cur = n)
|
|
92
|
|
93 /* Minimum size in elements for dynamic array when resized; default is 32 */
|
|
94 extern int Dynarr_min_size;
|
|
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
|
0
|
101 #include "symsinit.h" /* compiler warning suppression */
|
|
102
|
|
103 /* Also define min() and max(). (Some compilers put them in strange
|
|
104 places that won't be referenced by the above include files, such
|
|
105 as 'macros.h' under Solaris.) */
|
|
106
|
|
107 #ifndef min
|
199
|
108 #define min(a,b) (((a) <= (b)) ? (a) : (b))
|
0
|
109 #endif
|
|
110 #ifndef max
|
199
|
111 #define max(a,b) (((a) > (b)) ? (a) : (b))
|
0
|
112 #endif
|
|
113
|
185
|
114 /* Memory allocation */
|
|
115 void malloc_warning (CONST char *);
|
|
116 void *xmalloc (size_t size);
|
|
117 void *xmalloc_and_zero (size_t size);
|
|
118 void *xrealloc (void *, size_t size);
|
|
119 char *xstrdup (CONST char *);
|
0
|
120 /* generally useful */
|
272
|
121 #define countof(x) ((int) (sizeof(x)/sizeof(x[0])))
|
0
|
122 #define slot_offset(type, slot_name) \
|
|
123 ((unsigned) (((char *) (&(((type *)0)->slot_name))) - ((char *)0)))
|
185
|
124 #define xnew(type) ((type *) xmalloc (sizeof (type)))
|
|
125 #define xnew_array(type, len) ((type *) xmalloc ((len) * sizeof (type)))
|
|
126 #define xnew_and_zero(type) ((type *) xmalloc_and_zero (sizeof (type)))
|
272
|
127 #define xzero(lvalue) ((void) memset (&(lvalue), 0, sizeof (lvalue)))
|
185
|
128 #define xnew_array_and_zero(type, len) ((type *) xmalloc_and_zero ((len) * sizeof (type)))
|
|
129 #define XREALLOC_ARRAY(ptr, type, len) ((void) (ptr = (type *) xrealloc (ptr, (len) * sizeof (type))))
|
|
130 #define alloca_array(type, len) ((type *) alloca ((len) * sizeof (type)))
|
0
|
131
|
|
132 /* also generally useful if you want to avoid arbitrary size limits
|
|
133 but don't need a full dynamic array. Assumes that BASEVAR points
|
|
134 to a malloced array of TYPE objects (or possibly a NULL pointer,
|
|
135 if SIZEVAR is 0), with the total size stored in SIZEVAR. This
|
|
136 macro will realloc BASEVAR as necessary so that it can hold at
|
|
137 least NEEDED_SIZE objects. The reallocing is done by doubling,
|
|
138 which ensures constant amortized time per element. */
|
185
|
139 #define DO_REALLOC(basevar, sizevar, needed_size, type) do \
|
|
140 { \
|
|
141 /* Avoid side-effectualness. */ \
|
|
142 /* Dammit! Macros suffer from dynamic scope! */ \
|
|
143 /* We demand inline functions! */ \
|
272
|
144 size_t do_realloc_needed_size = (needed_size); \
|
|
145 size_t do_realloc_newsize = 0; \
|
185
|
146 while ((sizevar) < (do_realloc_needed_size)) { \
|
251
|
147 do_realloc_newsize = 2*(sizevar); \
|
|
148 if (do_realloc_newsize < 32) \
|
|
149 do_realloc_newsize = 32; \
|
|
150 (sizevar) = do_realloc_newsize; \
|
185
|
151 } \
|
251
|
152 if (do_realloc_newsize) \
|
|
153 XREALLOC_ARRAY (basevar, type, do_realloc_newsize); \
|
0
|
154 } while (0)
|
|
155
|
|
156 #ifdef ERROR_CHECK_MALLOC
|
185
|
157 void xfree_1 (void *);
|
272
|
158 #define xfree(lvalue) do \
|
|
159 { \
|
|
160 void **xfree_ptr = (void **) &(lvalue); \
|
|
161 xfree_1 (*xfree_ptr); \
|
|
162 *xfree_ptr = (void *) 0xDEADBEEF; \
|
0
|
163 } while (0)
|
|
164 #else
|
185
|
165 void xfree (void *);
|
0
|
166 #define xfree_1 xfree
|
185
|
167 #endif /* ERROR_CHECK_MALLOC */
|
0
|
168
|
|
169 /* We assume an ANSI C compiler and libraries and memcpy, memset, memcmp */
|
|
170 /* (This definition is here because system header file macros may want
|
|
171 * to call bzero (eg FD_ZERO) */
|
|
172 #ifndef bzero
|
272
|
173 # define bzero(m, l) memset (m, 0, l)
|
0
|
174 #endif
|
|
175
|
|
176 #ifndef PRINTF_ARGS
|
|
177 # if defined (__GNUC__) && (__GNUC__ >= 2)
|
|
178 # define PRINTF_ARGS(string_index,first_to_check) \
|
|
179 __attribute__ ((format (printf, string_index, first_to_check)))
|
|
180 # else
|
|
181 # define PRINTF_ARGS(string_index,first_to_check)
|
|
182 # endif /* GNUC */
|
|
183 #endif
|
|
184
|
|
185 #ifndef DOESNT_RETURN
|
|
186 # if defined __GNUC__
|
|
187 # if ((__GNUC__ > 2) || (__GNUC__ == 2) && (__GNUC_MINOR__ >= 5))
|
|
188 # define DOESNT_RETURN void volatile
|
|
189 # define DECLARE_DOESNT_RETURN(decl) \
|
|
190 extern void volatile decl __attribute__ ((noreturn))
|
|
191 # define DECLARE_DOESNT_RETURN_GCC__ATTRIBUTE__SYNTAX_SUCKS(decl,str,idx) \
|
|
192 /* Should be able to state multiple independent __attribute__s, but \
|
|
193 the losing syntax doesn't work that way, and screws losing cpp */ \
|
|
194 extern void volatile decl \
|
|
195 __attribute__ ((noreturn, format (printf, str, idx)))
|
|
196 # else
|
|
197 # define DOESNT_RETURN void volatile
|
|
198 # define DECLARE_DOESNT_RETURN(decl) extern void volatile decl
|
|
199 # define DECLARE_DOESNT_RETURN_GCC__ATTRIBUTE__SYNTAX_SUCKS(decl,str,idx) \
|
|
200 extern void volatile decl PRINTF_ARGS(str,idx)
|
|
201 # endif /* GNUC 2.5 */
|
|
202 # else
|
|
203 # define DOESNT_RETURN void
|
|
204 # define DECLARE_DOESNT_RETURN(decl) extern void decl
|
|
205 # define DECLARE_DOESNT_RETURN_GCC__ATTRIBUTE__SYNTAX_SUCKS(decl,str,idx) \
|
|
206 extern void decl PRINTF_ARGS(str,idx)
|
|
207 # endif /* GNUC */
|
|
208 #endif
|
|
209
|
|
210 #ifndef ALIGNOF
|
|
211 # if defined (__GNUC__) && (__GNUC__ >= 2)
|
|
212 # define ALIGNOF(x) __alignof (x)
|
|
213 # else
|
|
214 # define ALIGNOF(x) sizeof (x)
|
|
215 # endif
|
|
216 #endif
|
|
217
|
|
218 #define ALIGN_SIZE(len, unit) \
|
|
219 ((((len) + (unit) - 1) / (unit)) * (unit))
|
|
220
|
|
221 /* #### Yuck, this is kind of evil */
|
80
|
222 #define ALIGN_PTR(ptr, unit) \
|
|
223 ((void *) ALIGN_SIZE ((long) (ptr), unit))
|
0
|
224
|
|
225 #ifdef QUANTIFY
|
|
226 #include "quantify.h"
|
149
|
227 #define QUANTIFY_START_RECORDING quantify_start_recording_data ()
|
|
228 #define QUANTIFY_STOP_RECORDING quantify_stop_recording_data ()
|
0
|
229 #else /* !QUANTIFY */
|
|
230 #define QUANTIFY_START_RECORDING
|
|
231 #define QUANTIFY_STOP_RECORDING
|
|
232 #endif /* !QUANTIFY */
|
|
233
|
|
234 #ifndef DO_NOTHING
|
|
235 #define DO_NOTHING do {} while (0)
|
|
236 #endif
|
|
237
|
272
|
238 #ifndef DECLARE_NOTHING
|
|
239 #define DECLARE_NOTHING struct nosuchstruct
|
|
240 #endif
|
|
241
|
0
|
242 /* We define assert iff USE_ASSERTIONS or DEBUG_XEMACS is defined.
|
272
|
243 Otherwise we define it to be empty. Quantify has shown that the
|
|
244 time the assert checks take is measurable so let's not include them
|
|
245 in production binaries. */
|
0
|
246
|
|
247 #ifdef USE_ASSERTIONS
|
|
248 /* Highly dubious kludge */
|
|
249 /* (thanks, Jamie, I feel better now -- ben) */
|
|
250 DECLARE_DOESNT_RETURN (assert_failed (CONST char *, int, CONST char *));
|
70
|
251 # define abort() (assert_failed (__FILE__, __LINE__, "abort()"))
|
0
|
252 # define assert(x) ((x) ? (void) 0 : assert_failed (__FILE__, __LINE__, #x))
|
|
253 #else
|
|
254 # ifdef DEBUG_XEMACS
|
|
255 # define assert(x) ((x) ? (void) 0 : (void) abort ())
|
|
256 # else
|
|
257 # define assert(x)
|
|
258 # endif
|
|
259 #endif
|
|
260
|
201
|
261 /*#ifdef DEBUG_XEMACS*/
|
0
|
262 #define REGISTER
|
201
|
263 #define register
|
|
264 /*#else*/
|
|
265 /*#define REGISTER register*/
|
|
266 /*#endif*/
|
0
|
267
|
|
268
|
|
269 /************************************************************************/
|
|
270 /* typedefs */
|
|
271 /************************************************************************/
|
|
272
|
|
273 /* We put typedefs here so that prototype declarations don't choke.
|
|
274 Note that we don't actually declare the structures here (except
|
|
275 maybe for simple structures like Dynarrs); that keeps them private
|
|
276 to the routines that actually use them. */
|
|
277
|
|
278 /* The data representing the text in a buffer is logically a set
|
|
279 of Bufbytes, declared as follows. */
|
|
280
|
|
281 typedef unsigned char Bufbyte;
|
|
282
|
|
283 /* The data representing a string in "external" format (simple
|
|
284 binary format) is logically a set of Extbytes, declared as follows. */
|
|
285
|
|
286 typedef unsigned char Extbyte;
|
|
287
|
|
288 /* To the user, a buffer is made up of characters, declared as follows.
|
|
289 In the non-Mule world, characters and Bufbytes are equivalent.
|
14
|
290 In the Mule world, a character requires (typically) 1 to 4
|
0
|
291 Bufbytes for its representation in a buffer. */
|
|
292
|
|
293 typedef int Emchar;
|
|
294
|
|
295 /* Different ways of referring to a position in a buffer. We use
|
|
296 the typedefs in preference to 'int' to make it clearer what
|
|
297 sort of position is being used. See extents.c for a description
|
|
298 of the different positions. We put them here instead of in
|
|
299 buffer.h (where they rightfully belong) to avoid syntax errors
|
|
300 in function prototypes. */
|
|
301
|
|
302 typedef int Bufpos;
|
|
303 typedef int Bytind;
|
|
304 typedef int Memind;
|
|
305
|
|
306 /* Counts of bytes or chars */
|
|
307
|
|
308 typedef int Bytecount;
|
|
309 typedef int Charcount;
|
|
310
|
|
311 /* Length in bytes of a string in external format */
|
|
312 typedef int Extcount;
|
|
313
|
|
314 typedef struct lstream Lstream;
|
|
315
|
|
316 typedef unsigned int face_index;
|
185
|
317
|
|
318 typedef struct
|
0
|
319 {
|
|
320 Dynarr_declare (struct face_cachel);
|
|
321 } face_cachel_dynarr;
|
|
322
|
|
323 typedef unsigned int glyph_index;
|
185
|
324
|
272
|
325 /* This is shared by process.h, events.h and others in future.
|
263
|
326 See events.h for description */
|
|
327 typedef unsigned int USID;
|
|
328
|
185
|
329 typedef struct
|
0
|
330 {
|
|
331 Dynarr_declare (struct glyph_cachel);
|
|
332 } glyph_cachel_dynarr;
|
|
333
|
|
334 struct buffer; /* "buffer.h" */
|
|
335 struct console; /* "console.h" */
|
|
336 struct device; /* "device.h" */
|
|
337 struct extent_fragment;
|
|
338 struct extent;
|
185
|
339 typedef struct extent *EXTENT;
|
0
|
340 struct frame; /* "frame.h" */
|
|
341 struct window; /* "window.h" */
|
|
342 struct Lisp_Event; /* "events.h" */
|
|
343 struct Lisp_Face;
|
|
344 struct Lisp_Process; /* "process.c" */
|
|
345 struct stat; /* <sys/stat.h> */
|
|
346 struct Lisp_Color_Instance;
|
|
347 struct Lisp_Font_Instance;
|
|
348 struct Lisp_Image_Instance;
|
|
349 struct display_line;
|
|
350 struct redisplay_info;
|
|
351 struct window_mirror;
|
|
352 struct scrollbar_instance;
|
|
353 struct font_metric_info;
|
|
354 struct face_cachel;
|
|
355 struct console_type_entry;
|
|
356
|
185
|
357 typedef struct
|
0
|
358 {
|
|
359 Dynarr_declare (Bufbyte);
|
185
|
360 } Bufbyte_dynarr;
|
0
|
361
|
185
|
362 typedef struct
|
0
|
363 {
|
|
364 Dynarr_declare (Extbyte);
|
185
|
365 } Extbyte_dynarr;
|
0
|
366
|
185
|
367 typedef struct
|
0
|
368 {
|
|
369 Dynarr_declare (Emchar);
|
185
|
370 } Emchar_dynarr;
|
0
|
371
|
272
|
372 typedef struct
|
|
373 {
|
|
374 Dynarr_declare (char);
|
|
375 } char_dynarr;
|
|
376
|
185
|
377 typedef unsigned char unsigned_char;
|
|
378 typedef struct
|
0
|
379 {
|
|
380 Dynarr_declare (unsigned char);
|
|
381 } unsigned_char_dynarr;
|
|
382
|
265
|
383 typedef unsigned long unsigned_long;
|
|
384 typedef struct
|
|
385 {
|
|
386 Dynarr_declare (unsigned long);
|
|
387 } unsigned_long_dynarr;
|
|
388
|
185
|
389 typedef struct
|
0
|
390 {
|
|
391 Dynarr_declare (int);
|
|
392 } int_dynarr;
|
|
393
|
185
|
394 typedef struct
|
0
|
395 {
|
|
396 Dynarr_declare (Bufpos);
|
185
|
397 } Bufpos_dynarr;
|
0
|
398
|
185
|
399 typedef struct
|
0
|
400 {
|
|
401 Dynarr_declare (Bytind);
|
185
|
402 } Bytind_dynarr;
|
0
|
403
|
185
|
404 typedef struct
|
0
|
405 {
|
|
406 Dynarr_declare (Charcount);
|
185
|
407 } Charcount_dynarr;
|
0
|
408
|
185
|
409 typedef struct
|
0
|
410 {
|
|
411 Dynarr_declare (Bytecount);
|
185
|
412 } Bytecount_dynarr;
|
0
|
413
|
185
|
414 typedef struct
|
0
|
415 {
|
|
416 Dynarr_declare (struct console_type_entry);
|
|
417 } console_type_entry_dynarr;
|
|
418
|
|
419 /* Need to declare this here. */
|
|
420 enum external_data_format
|
|
421 {
|
|
422 /* Binary format. This is the simplest format and is what we
|
|
423 use in the absence of a more appropriate format. This converts
|
|
424 according to the `binary' coding system:
|
|
425
|
|
426 a) On input, bytes 0 - 255 are converted into characters 0 - 255.
|
|
427 b) On output, characters 0 - 255 are converted into bytes 0 - 255
|
|
428 and other characters are converted into `X'.
|
|
429 */
|
|
430 FORMAT_BINARY,
|
|
431
|
|
432 /* Format used for filenames. In the original Mule, this is
|
|
433 user-definable with the `pathname-coding-system' variable.
|
|
434 For the moment, we just use the `binary' coding system. */
|
|
435 FORMAT_FILENAME,
|
|
436
|
|
437 /* Format used for output to the terminal. This should be controlled
|
16
|
438 by the `terminal-coding-system' variable. Under kterm, this will
|
0
|
439 be some ISO2022 system. On some DOS machines, this is Shift-JIS. */
|
16
|
440 FORMAT_TERMINAL,
|
0
|
441
|
|
442 /* Format used for input from the terminal. This should be controlled
|
|
443 by the `keyboard-coding-system' variable. */
|
|
444 FORMAT_KEYBOARD,
|
173
|
445
|
0
|
446 /* Format used for the external Unix environment -- argv[], stuff
|
|
447 from getenv(), stuff from the /etc/passwd file, etc.
|
|
448
|
|
449 Perhaps should be the same as FORMAT_FILENAME. */
|
|
450 FORMAT_OS,
|
173
|
451
|
0
|
452 /* Compound-text format. This is the standard X format used for
|
|
453 data stored in properties, selections, and the like. This is
|
|
454 an 8-bit no-lock-shift ISO2022 coding system. */
|
|
455 FORMAT_CTEXT
|
|
456 };
|
|
457
|
149
|
458 #define FORMAT_NATIVE FORMAT_FILENAME
|
|
459
|
0
|
460 enum run_hooks_condition
|
|
461 {
|
|
462 RUN_HOOKS_TO_COMPLETION,
|
|
463 RUN_HOOKS_UNTIL_SUCCESS,
|
|
464 RUN_HOOKS_UNTIL_FAILURE
|
|
465 };
|
|
466
|
|
467 #ifdef HAVE_TOOLBARS
|
|
468 enum toolbar_pos
|
|
469 {
|
|
470 TOP_TOOLBAR,
|
|
471 BOTTOM_TOOLBAR,
|
|
472 LEFT_TOOLBAR,
|
|
473 RIGHT_TOOLBAR
|
|
474 };
|
|
475 #endif
|
|
476
|
|
477 #ifndef ERROR_CHECK_TYPECHECK
|
|
478
|
|
479 typedef enum error_behavior
|
|
480 {
|
|
481 ERROR_ME,
|
|
482 ERROR_ME_NOT,
|
|
483 ERROR_ME_WARN
|
|
484 } Error_behavior;
|
|
485
|
|
486 #define ERRB_EQ(a, b) ((a) == (b))
|
|
487
|
|
488 #else
|
|
489
|
|
490 /* By defining it like this, we provide strict type-checking
|
|
491 for code that lazily uses ints. */
|
|
492
|
|
493 typedef struct _error_behavior_struct_
|
|
494 {
|
|
495 int really_unlikely_name_to_have_accidentally_in_a_non_errb_structure;
|
|
496 } Error_behavior;
|
|
497
|
|
498 extern Error_behavior ERROR_ME;
|
|
499 extern Error_behavior ERROR_ME_NOT;
|
|
500 extern Error_behavior ERROR_ME_WARN;
|
|
501
|
|
502 #define ERRB_EQ(a, b) \
|
|
503 ((a).really_unlikely_name_to_have_accidentally_in_a_non_errb_structure == \
|
|
504 (b).really_unlikely_name_to_have_accidentally_in_a_non_errb_structure)
|
|
505
|
|
506 #endif
|
|
507
|
|
508 enum munge_me_out_the_door
|
|
509 {
|
|
510 MUNGE_ME_FUNCTION_KEY,
|
|
511 MUNGE_ME_KEY_TRANSLATION
|
|
512 };
|
|
513
|
|
514
|
|
515 /************************************************************************/
|
|
516 /* Definition of Lisp_Object data type */
|
|
517 /************************************************************************/
|
|
518
|
207
|
519 #ifdef USE_MINIMAL_TAGBITS
|
|
520 # define LRECORD_CONS
|
|
521 # define LRECORD_VECTOR
|
|
522 # define LRECORD_SYMBOL
|
|
523 # define LRECORD_STRING
|
|
524 #endif
|
0
|
525
|
|
526 /* Define the fundamental Lisp data structures */
|
|
527
|
|
528 /* This is the set of Lisp data types */
|
|
529
|
207
|
530 #ifndef USE_MINIMAL_TAGBITS
|
|
531
|
0
|
532 enum Lisp_Type
|
|
533 {
|
|
534 /* Integer. XINT(obj) is the integer value. */
|
207
|
535 Lisp_Type_Int,
|
173
|
536
|
0
|
537 /* XRECORD_LHEADER (object) points to a struct lrecord_header
|
|
538 lheader->implementation determines the type (and GC behaviour)
|
|
539 of the object. */
|
207
|
540 Lisp_Type_Record,
|
173
|
541
|
207
|
542 #ifndef LRECORD_CONS
|
0
|
543 /* Cons. XCONS (object) points to a struct Lisp_Cons. */
|
207
|
544 Lisp_Type_Cons,
|
|
545 #endif
|
173
|
546
|
207
|
547 #ifndef LRECORD_STRING
|
0
|
548 /* String. XSTRING (object) points to a struct Lisp_String.
|
|
549 The length of the string, and its contents, are stored therein. */
|
207
|
550 Lisp_Type_String,
|
|
551 #endif
|
173
|
552
|
0
|
553 #ifndef LRECORD_VECTOR
|
|
554 /* Vector of Lisp objects. XVECTOR(object) points to a struct Lisp_Vector.
|
|
555 The length of the vector, and its contents, are stored therein. */
|
207
|
556 Lisp_Type_Vector,
|
185
|
557 #endif /* !LRECORD_VECTOR */
|
173
|
558
|
0
|
559 #ifndef LRECORD_SYMBOL
|
|
560 /* Symbol. XSYMBOL (object) points to a struct Lisp_Symbol. */
|
185
|
561 Lisp_Type_Symbol,
|
0
|
562 #endif /* !LRECORD_SYMBOL */
|
173
|
563
|
207
|
564 Lisp_Type_Char
|
16
|
565 };
|
0
|
566
|
207
|
567 # define POINTER_TYPE_P(type) \
|
|
568 ((type) != Lisp_Type_Int && (type) != Lisp_Type_Char)
|
|
569
|
272
|
570 #else /* USE_MINIMAL_TAGBITS */
|
207
|
571
|
|
572 enum Lisp_Type
|
|
573 {
|
|
574 Lisp_Type_Record,
|
|
575 Lisp_Type_Int_Even,
|
|
576 Lisp_Type_Char,
|
|
577 Lisp_Type_Int_Odd
|
|
578 };
|
|
579
|
|
580 #define POINTER_TYPE_P(type) ((type) == Lisp_Type_Record)
|
|
581
|
272
|
582 #endif /* USE_MINIMAL_TAGBITS */
|
0
|
583
|
2
|
584 /* This should be the underlying type into which a Lisp_Object must fit.
|
0
|
585 In a strict ANSI world, this must be `int', since ANSI says you can't
|
|
586 use bitfields on any type other than `int'. However, on a machine
|
|
587 where `int' and `long' are not the same size, this should be the
|
|
588 longer of the two. (This also must be something into which a pointer
|
|
589 to an arbitrary object will fit, modulo any DATA_SEG_BITS cruft.)
|
|
590 */
|
272
|
591 /* ### We should be using uintptr_t and SIZEOF_VOID_P here */
|
0
|
592 #if (LONGBITS > INTBITS)
|
|
593 # define EMACS_INT long
|
|
594 # define EMACS_UINT unsigned long
|
272
|
595 # define SIZEOF_EMACS_INT SIZEOF_LONG
|
0
|
596 #else
|
|
597 # define EMACS_INT int
|
|
598 # define EMACS_UINT unsigned int
|
272
|
599 # define SIZEOF_EMACS_INT SIZEOF_INT
|
0
|
600 #endif
|
|
601
|
272
|
602 #define BITS_PER_EMACS_INT (SIZEOF_EMACS_INT * BITS_PER_CHAR)
|
|
603
|
0
|
604 /* Overridden by m/next.h */
|
|
605 #ifndef ASSERT_VALID_POINTER
|
|
606 # define ASSERT_VALID_POINTER(pnt) (assert ((((EMACS_UINT) pnt) & 3) == 0))
|
|
607 #endif
|
|
608
|
207
|
609 #ifdef USE_MINIMAL_TAGBITS
|
272
|
610 # define GCMARKBITS 0
|
|
611 # define GCTYPEBITS 2
|
|
612 # define GCBITS 2
|
|
613 # define INT_GCBITS 1
|
207
|
614 #else
|
272
|
615 # define GCMARKBITS 1
|
|
616 # define GCTYPEBITS 3
|
|
617 # define GCBITS 4
|
|
618 # define INT_GCBITS GCBITS
|
0
|
619 #endif
|
|
620
|
272
|
621 #define INT_VALBITS (BITS_PER_EMACS_INT - INT_GCBITS)
|
|
622 #define VALBITS (BITS_PER_EMACS_INT - GCBITS)
|
|
623 #define EMACS_INT_MAX ((1UL << INT_VALBITS) -1UL)
|
|
624
|
|
625 #ifdef USE_UNION_TYPE
|
|
626 # include "lisp-union.h"
|
|
627 #else /* !USE_UNION_TYPE */
|
0
|
628 # include "lisp-disunion.h"
|
272
|
629 #endif /* !USE_UNION_TYPE */
|
|
630
|
|
631 #ifdef HAVE_SHM
|
|
632 /* In this representation, data is found in two widely separated segments. */
|
|
633 extern int pure_size;
|
|
634 # define XPNTR(x) \
|
|
635 ((void *)(XPNTRVAL(x)) | (XPNTRVAL(x) > pure_size ? DATA_SEG_BITS : PURE_SEG_BITS)))
|
|
636 #else /* not HAVE_SHM */
|
|
637 # ifdef DATA_SEG_BITS
|
|
638 /* This case is used for the rt-pc and hp-pa.
|
|
639 In the diffs I was given, it checked for ptr = 0
|
|
640 and did not adjust it in that case.
|
|
641 But I don't think that zero should ever be found
|
|
642 in a Lisp object whose data type says it points to something.
|
|
643 */
|
|
644 # define XPNTR(x) ((void *)((XPNTRVAL(x)) | DATA_SEG_BITS))
|
|
645 # else /* not DATA_SEG_BITS */
|
|
646 # define XPNTR(x) ((void *) (XPNTRVAL(x)))
|
|
647 # endif /* not DATA_SEG_BITS */
|
|
648 #endif /* not HAVE_SHM */
|
|
649
|
0
|
650
|
|
651 /* WARNING WARNING WARNING. You must ensure on your own that proper
|
|
652 GC protection is provided for the elements in this array. */
|
185
|
653 typedef struct
|
0
|
654 {
|
|
655 Dynarr_declare (Lisp_Object);
|
185
|
656 } Lisp_Object_dynarr;
|
0
|
657
|
|
658 /* Close your eyes now lest you vomit or spontaneously combust ... */
|
|
659
|
|
660 #define HACKEQ_UNSAFE(obj1, obj2) \
|
|
661 (EQ (obj1, obj2) || (!POINTER_TYPE_P (XGCTYPE (obj1)) \
|
|
662 && !POINTER_TYPE_P (XGCTYPE (obj2)) \
|
207
|
663 && XCHAR_OR_INT (obj1) == XCHAR_OR_INT (obj2)))
|
0
|
664
|
70
|
665 #ifdef DEBUG_XEMACS
|
|
666 extern int debug_issue_ebola_notices;
|
|
667 int eq_with_ebola_notice (Lisp_Object, Lisp_Object);
|
|
668 #define EQ_WITH_EBOLA_NOTICE(obj1, obj2) \
|
|
669 (debug_issue_ebola_notices ? eq_with_ebola_notice (obj1, obj2) \
|
|
670 : EQ (obj1, obj2))
|
|
671 #else
|
|
672 #define EQ_WITH_EBOLA_NOTICE(obj1, obj2) EQ (obj1, obj2)
|
|
673 #endif
|
0
|
674
|
|
675 /* OK, you can open them again */
|
272
|
676
|
0
|
677
|
|
678 /************************************************************************/
|
|
679 /* Definitions of basic Lisp objects */
|
|
680 /************************************************************************/
|
|
681
|
|
682 #include "lrecord.h"
|
|
683
|
|
684 /********** unbound ***********/
|
|
685
|
|
686 /* Qunbound is a special Lisp_Object (actually of type
|
|
687 symbol-value-forward), that can never be visible to
|
|
688 the Lisp caller and thus can be used in the C code
|
|
689 to mean "no such value". */
|
|
690
|
|
691 #define UNBOUNDP(val) EQ (val, Qunbound)
|
|
692 #define GC_UNBOUNDP(val) GC_EQ (val, Qunbound)
|
173
|
693
|
0
|
694 /*********** cons ***********/
|
|
695
|
|
696 /* In a cons, the markbit of the car is the gc mark bit */
|
|
697
|
|
698 struct Lisp_Cons
|
|
699 {
|
207
|
700 #ifdef LRECORD_CONS
|
|
701 struct lrecord_header lheader;
|
|
702 #endif
|
0
|
703 Lisp_Object car, cdr;
|
|
704 };
|
|
705
|
|
706 #if 0 /* FSFmacs */
|
|
707 /* Like a cons, but records info on where the text lives that it was read from */
|
|
708 /* This is not really in use now */
|
|
709
|
|
710 struct Lisp_Buffer_Cons
|
|
711 {
|
|
712 Lisp_Object car, cdr;
|
|
713 struct buffer *buffer;
|
|
714 int bufpos;
|
|
715 };
|
|
716 #endif
|
|
717
|
207
|
718 #ifdef LRECORD_CONS
|
|
719
|
|
720 DECLARE_LRECORD (cons, struct Lisp_Cons);
|
|
721 #define XCONS(x) XRECORD (x, cons, struct Lisp_Cons)
|
|
722 #define XSETCONS(x, p) XSETRECORD (x, p, cons)
|
|
723 #define CONSP(x) RECORDP (x, cons)
|
|
724 #define GC_CONSP(x) GC_RECORDP (x, cons)
|
|
725 #define CHECK_CONS(x) CHECK_RECORD (x, cons)
|
|
726 #define CONCHECK_CONS(x) CONCHECK_RECORD (x, cons)
|
|
727
|
|
728 #define CONS_MARKED_P(c) MARKED_RECORD_HEADER_P(&((c)->lheader))
|
|
729 #define MARK_CONS(c) MARK_RECORD_HEADER (&((c)->lheader))
|
|
730
|
|
731 #else /* ! LRECORD_CONS */
|
|
732
|
185
|
733 DECLARE_NONRECORD (cons, Lisp_Type_Cons, struct Lisp_Cons);
|
|
734 #define XCONS(a) XNONRECORD (a, cons, Lisp_Type_Cons, struct Lisp_Cons)
|
|
735 #define XSETCONS(c, p) XSETOBJ (c, Lisp_Type_Cons, p)
|
|
736 #define CONSP(x) (XTYPE (x) == Lisp_Type_Cons)
|
|
737 #define GC_CONSP(x) (XGCTYPE (x) == Lisp_Type_Cons)
|
|
738 #define CHECK_CONS(x) CHECK_NONRECORD (x, Lisp_Type_Cons, Qconsp)
|
|
739 #define CONCHECK_CONS(x) CONCHECK_NONRECORD (x, Lisp_Type_Cons, Qconsp)
|
0
|
740
|
|
741 /* Define these because they're used in a few places, inside and
|
|
742 out of alloc.c */
|
|
743 #define CONS_MARKED_P(c) XMARKBIT (c->car)
|
|
744 #define MARK_CONS(c) XMARK (c->car)
|
|
745
|
207
|
746 #endif /* ! LRECORD_CONS */
|
|
747
|
0
|
748 #define NILP(x) EQ (x, Qnil)
|
|
749 #define GC_NILP(x) GC_EQ (x, Qnil)
|
|
750 #define XCAR(a) (XCONS (a)->car)
|
|
751 #define XCDR(a) (XCONS (a)->cdr)
|
272
|
752 #define LISTP(x) (CONSP(x) || NILP(x))
|
|
753
|
|
754 #define CHECK_LIST(x) do { \
|
|
755 if (!LISTP (x)) \
|
|
756 dead_wrong_type_argument (Qlistp, x); \
|
|
757 } while (0)
|
|
758
|
|
759 #define CONCHECK_LIST(x) do { \
|
|
760 if (!LISTP (x)) \
|
|
761 x = wrong_type_argument (Qlistp, x); \
|
|
762 } while (0)
|
0
|
763
|
|
764 /* For a list that's known to be in valid list format --
|
|
765 will abort() if the list is not in valid format */
|
|
766 #define LIST_LOOP(consvar, list) \
|
|
767 for (consvar = list; !NILP (consvar); consvar = XCDR (consvar))
|
|
768
|
|
769 /* For a list that's known to be in valid list format, where we may
|
|
770 be deleting the current element out of the list --
|
|
771 will abort() if the list is not in valid format */
|
84
|
772 #define LIST_LOOP_DELETING(consvar, nextconsvar, list) \
|
|
773 for (consvar = list; \
|
|
774 !NILP (consvar) ? (nextconsvar = XCDR (consvar), 1) : 0; \
|
0
|
775 consvar = nextconsvar)
|
|
776
|
|
777 /* For a list that may not be in valid list format --
|
|
778 will signal an error if the list is not in valid format */
|
|
779 #define EXTERNAL_LIST_LOOP(consvar, listp) \
|
|
780 for (consvar = listp; !NILP (consvar); consvar = XCDR (consvar)) \
|
|
781 if (!CONSP (consvar)) \
|
|
782 signal_simple_error ("Invalid list format", listp); \
|
|
783 else
|
|
784
|
272
|
785 extern Lisp_Object Qnil;
|
|
786
|
|
787 INLINE int TRUE_LIST_P (Lisp_Object object);
|
|
788 INLINE int
|
|
789 TRUE_LIST_P (Lisp_Object object)
|
|
790 {
|
|
791 while (CONSP (object))
|
|
792 object = XCDR (object);
|
|
793 return NILP (object);
|
|
794 }
|
|
795
|
|
796 #define CHECK_TRUE_LIST(object) do { \
|
|
797 if (!TRUE_LIST_P (object)) \
|
|
798 dead_wrong_type_argument (Qtrue_list_p, object); \
|
|
799 } while (0)
|
|
800
|
0
|
801 /* For a property list (alternating keywords/values) that may not be
|
|
802 in valid list format -- will signal an error if the list is not in
|
|
803 valid format. CONSVAR is used to keep track of the iterations
|
|
804 without modifying LISTP.
|
|
805
|
|
806 We have to be tricky to still keep the same C format.*/
|
|
807 #define EXTERNAL_PROPERTY_LIST_LOOP(consvar, keyword, value, listp) \
|
|
808 for (consvar = listp; \
|
|
809 (CONSP (consvar) && CONSP (XCDR (consvar)) ? \
|
|
810 (keyword = XCAR (consvar), value = XCAR (XCDR (consvar))) : \
|
|
811 (keyword = Qunbound, value = Qunbound)), \
|
|
812 !NILP (consvar); \
|
|
813 consvar = XCDR (XCDR (consvar))) \
|
|
814 if (UNBOUNDP (keyword)) \
|
|
815 signal_simple_error ("Invalid property list format", listp); \
|
|
816 else
|
|
817
|
|
818 /*********** string ***********/
|
|
819
|
|
820 /* In a string or vector, the sign bit of the `size' is the gc mark bit */
|
|
821
|
|
822 /* (The size and data fields have underscores prepended to catch old
|
|
823 code that attempts to reference the fields directly) */
|
|
824 struct Lisp_String
|
|
825 {
|
|
826 #ifdef LRECORD_STRING
|
|
827 struct lrecord_header lheader;
|
|
828 #endif
|
2
|
829 Bytecount _size;
|
0
|
830 Bufbyte *_data;
|
|
831 Lisp_Object plist;
|
|
832 };
|
|
833
|
|
834 #ifdef LRECORD_STRING
|
|
835
|
|
836 DECLARE_LRECORD (string, struct Lisp_String);
|
|
837 #define XSTRING(x) XRECORD (x, string, struct Lisp_String)
|
|
838 #define XSETSTRING(x, p) XSETRECORD (x, p, string)
|
|
839 #define STRINGP(x) RECORDP (x, string)
|
|
840 #define GC_STRINGP(x) GC_RECORDP (x, string)
|
|
841 #define CHECK_STRING(x) CHECK_RECORD (x, string)
|
|
842 #define CONCHECK_STRING(x) CONCHECK_RECORD (x, string)
|
|
843
|
185
|
844 #else /* ! LRECORD_STRING */
|
0
|
845
|
185
|
846 DECLARE_NONRECORD (string, Lisp_Type_String, struct Lisp_String);
|
|
847 #define XSTRING(x) XNONRECORD (x, string, Lisp_Type_String, struct Lisp_String)
|
|
848 #define XSETSTRING(x, p) XSETOBJ (x, Lisp_Type_String, p)
|
|
849 #define STRINGP(x) (XTYPE (x) == Lisp_Type_String)
|
|
850 #define GC_STRINGP(x) (XGCTYPE (x) == Lisp_Type_String)
|
|
851 #define CHECK_STRING(x) CHECK_NONRECORD (x, Lisp_Type_String, Qstringp)
|
|
852 #define CONCHECK_STRING(x) CONCHECK_NONRECORD (x, Lisp_Type_String, Qstringp)
|
0
|
853
|
185
|
854 #endif /* ! LRECORD_STRING */
|
0
|
855
|
70
|
856 #ifdef MULE
|
|
857
|
|
858 Charcount bytecount_to_charcount (CONST Bufbyte *ptr, Bytecount len);
|
|
859 Bytecount charcount_to_bytecount (CONST Bufbyte *ptr, Charcount len);
|
|
860
|
|
861 #else /* not MULE */
|
0
|
862
|
|
863 # define bytecount_to_charcount(ptr, len) (len)
|
|
864 # define charcount_to_bytecount(ptr, len) (len)
|
|
865
|
70
|
866 #endif /* not MULE */
|
|
867
|
0
|
868 #define string_length(s) ((s)->_size)
|
14
|
869 #define XSTRING_LENGTH(s) string_length (XSTRING (s))
|
272
|
870 #define XSTRING_CHAR_LENGTH(s) string_char_length (XSTRING (s))
|
0
|
871 #define string_data(s) ((s)->_data + 0)
|
14
|
872 #define XSTRING_DATA(s) string_data (XSTRING (s))
|
0
|
873 #define string_byte(s, i) ((s)->_data[i] + 0)
|
14
|
874 #define XSTRING_BYTE(s, i) string_byte (XSTRING (s), i)
|
0
|
875 #define string_byte_addr(s, i) (&((s)->_data[i]))
|
185
|
876 #define set_string_length(s, len) ((void) ((s)->_size = (len)))
|
|
877 #define set_string_data(s, ptr) ((void) ((s)->_data = (ptr)))
|
|
878 #define set_string_byte(s, i, c) ((void) ((s)->_data[i] = (c)))
|
0
|
879
|
|
880 void resize_string (struct Lisp_String *s, Bytecount pos, Bytecount delta);
|
|
881
|
70
|
882 #ifdef MULE
|
|
883
|
|
884 INLINE Charcount string_char_length (struct Lisp_String *s);
|
|
885 INLINE Charcount
|
|
886 string_char_length (struct Lisp_String *s)
|
|
887 {
|
|
888 return bytecount_to_charcount (string_data (s), string_length (s));
|
|
889 }
|
|
890
|
|
891 # define string_char(s, i) charptr_emchar_n (string_data (s), i)
|
|
892 # define string_char_addr(s, i) charptr_n_addr (string_data (s), i)
|
|
893 void set_string_char (struct Lisp_String *s, Charcount i, Emchar c);
|
|
894
|
|
895 #else /* not MULE */
|
|
896
|
0
|
897 # define string_char_length(s) string_length (s)
|
|
898 # define string_char(s, i) ((Emchar) string_byte (s, i))
|
|
899 # define string_char_addr(s, i) string_byte_addr (s, i)
|
|
900 # define set_string_char(s, i, c) set_string_byte (s, i, c)
|
|
901
|
70
|
902 #endif /* not MULE */
|
0
|
903
|
|
904 /*********** vector ***********/
|
|
905
|
|
906 struct Lisp_Vector
|
|
907 {
|
|
908 #ifdef LRECORD_VECTOR
|
207
|
909 struct lcrecord_header header;
|
0
|
910 #endif
|
|
911 long size;
|
|
912 /* next is now chained through v->contents[size], terminated by Qzero.
|
2
|
913 This means that pure vectors don't need a "next" */
|
0
|
914 /* struct Lisp_Vector *next; */
|
|
915 Lisp_Object contents[1];
|
|
916 };
|
|
917
|
|
918 #ifdef LRECORD_VECTOR
|
|
919
|
|
920 DECLARE_LRECORD (vector, struct Lisp_Vector);
|
|
921 #define XVECTOR(x) XRECORD (x, vector, struct Lisp_Vector)
|
|
922 #define XSETVECTOR(x, p) XSETRECORD (x, p, vector)
|
|
923 #define VECTORP(x) RECORDP (x, vector)
|
|
924 #define GC_VECTORP(x) GC_RECORDP (x, vector)
|
|
925 #define CHECK_VECTOR(x) CHECK_RECORD (x, vector)
|
|
926 #define CONCHECK_VECTOR(x) CONCHECK_RECORD (x, vector)
|
|
927
|
|
928 #else
|
|
929
|
185
|
930 DECLARE_NONRECORD (vector, Lisp_Type_Vector, struct Lisp_Vector);
|
|
931 #define XVECTOR(x) XNONRECORD (x, vector, Lisp_Type_Vector, struct Lisp_Vector)
|
|
932 #define XSETVECTOR(x, p) XSETOBJ (x, Lisp_Type_Vector, p)
|
|
933 #define VECTORP(x) (XTYPE (x) == Lisp_Type_Vector)
|
|
934 #define GC_VECTORP(x) (XGCTYPE (x) == Lisp_Type_Vector)
|
|
935 #define CHECK_VECTOR(x) CHECK_NONRECORD (x, Lisp_Type_Vector, Qvectorp)
|
|
936 #define CONCHECK_VECTOR(x) CONCHECK_NONRECORD (x, Lisp_Type_Vector, Qvectorp)
|
0
|
937
|
|
938 #endif
|
|
939
|
|
940 #define vector_length(v) ((v)->size)
|
173
|
941 #define XVECTOR_LENGTH(s) vector_length (XVECTOR (s))
|
0
|
942 #define vector_data(v) ((v)->contents)
|
173
|
943 #define XVECTOR_DATA(s) vector_data (XVECTOR (s))
|
207
|
944 #ifndef LRECORD_VECTOR
|
|
945 # define vector_next(v) ((v)->contents[(v)->size])
|
|
946 #endif
|
173
|
947
|
0
|
948 /*********** bit vector ***********/
|
|
949
|
|
950 #if (LONGBITS < 16)
|
14
|
951 #error What the hell?!
|
0
|
952 #elif (LONGBITS < 32)
|
|
953 # define LONGBITS_LOG2 4
|
|
954 # define LONGBITS_POWER_OF_2 16
|
|
955 #elif (LONGBITS < 64)
|
|
956 # define LONGBITS_LOG2 5
|
|
957 # define LONGBITS_POWER_OF_2 32
|
|
958 #elif (LONGBITS < 128)
|
|
959 # define LONGBITS_LOG2 6
|
|
960 # define LONGBITS_POWER_OF_2 64
|
|
961 #else
|
|
962 #error You really have 128-bit integers?!
|
|
963 #endif
|
|
964
|
|
965 struct Lisp_Bit_Vector
|
|
966 {
|
|
967 struct lrecord_header lheader;
|
|
968 Lisp_Object next;
|
|
969 long size;
|
|
970 unsigned int bits[1];
|
|
971 };
|
|
972
|
|
973 DECLARE_LRECORD (bit_vector, struct Lisp_Bit_Vector);
|
|
974 #define XBIT_VECTOR(x) XRECORD (x, bit_vector, struct Lisp_Bit_Vector)
|
|
975 #define XSETBIT_VECTOR(x, p) XSETRECORD (x, p, bit_vector)
|
|
976 #define BIT_VECTORP(x) RECORDP (x, bit_vector)
|
|
977 #define GC_BIT_VECTORP(x) GC_RECORDP (x, bit_vector)
|
|
978 #define CHECK_BIT_VECTOR(x) CHECK_RECORD (x, bit_vector)
|
|
979 #define CONCHECK_BIT_VECTOR(x) CONCHECK_RECORD (x, bit_vector)
|
|
980
|
|
981 #define BITP(x) (INTP (x) && (XINT (x) == 0 || XINT (x) == 1))
|
|
982 #define GC_BITP(x) (GC_INTP (x) && (XINT (x) == 0 || XINT (x) == 1))
|
|
983
|
272
|
984 #define CHECK_BIT(x) do { \
|
|
985 if (!BITP (x)) \
|
|
986 dead_wrong_type_argument (Qbitp, x);\
|
|
987 } while (0)
|
|
988
|
|
989 #define CONCHECK_BIT(x) do { \
|
|
990 if (!BITP (x)) \
|
|
991 x = wrong_type_argument (Qbitp, x); \
|
|
992 } while (0)
|
0
|
993
|
|
994 #define bit_vector_length(v) ((v)->size)
|
|
995 #define bit_vector_next(v) ((v)->next)
|
|
996
|
|
997 INLINE int bit_vector_bit (struct Lisp_Bit_Vector *v, int i);
|
|
998 INLINE int
|
|
999 bit_vector_bit (struct Lisp_Bit_Vector *v, int i)
|
|
1000 {
|
|
1001 unsigned int ui = (unsigned int) i;
|
|
1002
|
|
1003 return (((v)->bits[ui >> LONGBITS_LOG2] >> (ui & (LONGBITS_POWER_OF_2 - 1)))
|
|
1004 & 1);
|
|
1005 }
|
|
1006
|
|
1007 INLINE void set_bit_vector_bit (struct Lisp_Bit_Vector *v, int i, int value);
|
|
1008 INLINE void
|
|
1009 set_bit_vector_bit (struct Lisp_Bit_Vector *v, int i, int value)
|
|
1010 {
|
|
1011 unsigned int ui = (unsigned int) i;
|
|
1012 if (value)
|
|
1013 (v)->bits[ui >> LONGBITS_LOG2] |= (1 << (ui & (LONGBITS_POWER_OF_2 - 1)));
|
|
1014 else
|
|
1015 (v)->bits[ui >> LONGBITS_LOG2] &= ~(1 << (ui & (LONGBITS_POWER_OF_2 - 1)));
|
|
1016 }
|
|
1017
|
|
1018 /* Number of longs required to hold LEN bits */
|
|
1019 #define BIT_VECTOR_LONG_STORAGE(len) \
|
|
1020 ((len + LONGBITS_POWER_OF_2 - 1) >> LONGBITS_LOG2)
|
|
1021
|
|
1022
|
|
1023 /*********** symbol ***********/
|
|
1024
|
|
1025 /* In a symbol, the markbit of the plist is used as the gc mark bit */
|
|
1026
|
|
1027 struct Lisp_Symbol
|
|
1028 {
|
|
1029 #ifdef LRECORD_SYMBOL
|
|
1030 struct lrecord_header lheader;
|
|
1031 #endif
|
|
1032 /* next symbol in this obarray bucket */
|
|
1033 struct Lisp_Symbol *next;
|
|
1034 struct Lisp_String *name;
|
|
1035 Lisp_Object value;
|
|
1036 Lisp_Object function;
|
267
|
1037 /* non-nil if the symbol is interned in Vobarray */
|
245
|
1038 Lisp_Object obarray;
|
0
|
1039 Lisp_Object plist;
|
|
1040 };
|
|
1041
|
|
1042 #define SYMBOL_IS_KEYWORD(sym) (string_byte (XSYMBOL(sym)->name, 0) == ':')
|
|
1043 #define KEYWORDP(obj) (SYMBOLP (obj) && SYMBOL_IS_KEYWORD (obj))
|
|
1044
|
|
1045 #ifdef LRECORD_SYMBOL
|
|
1046
|
|
1047 DECLARE_LRECORD (symbol, struct Lisp_Symbol);
|
|
1048 #define XSYMBOL(x) XRECORD (x, symbol, struct Lisp_Symbol)
|
|
1049 #define XSETSYMBOL(x, p) XSETRECORD (x, p, symbol)
|
|
1050 #define SYMBOLP(x) RECORDP (x, symbol)
|
|
1051 #define GC_SYMBOLP(x) GC_RECORDP (x, symbol)
|
|
1052 #define CHECK_SYMBOL(x) CHECK_RECORD (x, symbol)
|
|
1053 #define CONCHECK_SYMBOL(x) CONCHECK_RECORD (x, symbol)
|
|
1054
|
|
1055 #else
|
|
1056
|
185
|
1057 DECLARE_NONRECORD (symbol, Lisp_Type_Symbol, struct Lisp_Symbol);
|
|
1058 #define XSYMBOL(x) XNONRECORD (x, symbol, Lisp_Type_Symbol, struct Lisp_Symbol)
|
|
1059 #define XSETSYMBOL(s, p) XSETOBJ ((s), Lisp_Type_Symbol, (p))
|
|
1060 #define SYMBOLP(x) (XTYPE (x) == Lisp_Type_Symbol)
|
|
1061 #define GC_SYMBOLP(x) (XGCTYPE (x) == Lisp_Type_Symbol)
|
|
1062 #define CHECK_SYMBOL(x) CHECK_NONRECORD (x, Lisp_Type_Symbol, Qsymbolp)
|
|
1063 #define CONCHECK_SYMBOL(x) CONCHECK_NONRECORD (x, Lisp_Type_Symbol, Qsymbolp)
|
0
|
1064
|
|
1065 #endif
|
|
1066
|
|
1067 #define symbol_next(s) ((s)->next)
|
|
1068 #define symbol_name(s) ((s)->name)
|
|
1069 #define symbol_value(s) ((s)->value)
|
|
1070 #define symbol_function(s) ((s)->function)
|
|
1071 #define symbol_plist(s) ((s)->plist)
|
|
1072
|
|
1073 /*********** subr ***********/
|
|
1074
|
280
|
1075 typedef Lisp_Object (*lisp_fn_t) (void);
|
84
|
1076
|
0
|
1077 struct Lisp_Subr
|
|
1078 {
|
|
1079 struct lrecord_header lheader;
|
|
1080 short min_args, max_args;
|
|
1081 CONST char *prompt;
|
|
1082 CONST char *doc;
|
|
1083 CONST char *name;
|
74
|
1084 lisp_fn_t subr_fn;
|
0
|
1085 };
|
|
1086
|
|
1087 DECLARE_LRECORD (subr, struct Lisp_Subr);
|
|
1088 #define XSUBR(x) XRECORD (x, subr, struct Lisp_Subr)
|
|
1089 #define XSETSUBR(x, p) XSETRECORD (x, p, subr)
|
|
1090 #define SUBRP(x) RECORDP (x, subr)
|
|
1091 #define GC_SUBRP(x) GC_RECORDP (x, subr)
|
|
1092 #define CHECK_SUBR(x) CHECK_RECORD (x, subr)
|
|
1093 #define CONCHECK_SUBR(x) CONCHECK_RECORD (x, subr)
|
|
1094
|
|
1095 #define subr_function(subr) (subr)->subr_fn
|
|
1096 #define subr_name(subr) (subr)->name
|
|
1097
|
|
1098 /*********** marker ***********/
|
|
1099
|
|
1100 struct Lisp_Marker
|
|
1101 {
|
|
1102 struct lrecord_header lheader;
|
|
1103 struct Lisp_Marker *next, *prev;
|
|
1104 struct buffer *buffer;
|
|
1105 Memind memind;
|
|
1106 char insertion_type;
|
|
1107 };
|
|
1108
|
|
1109 DECLARE_LRECORD (marker, struct Lisp_Marker);
|
|
1110 #define XMARKER(x) XRECORD (x, marker, struct Lisp_Marker)
|
|
1111 #define XSETMARKER(x, p) XSETRECORD (x, p, marker)
|
|
1112 #define MARKERP(x) RECORDP (x, marker)
|
|
1113 #define GC_MARKERP(x) GC_RECORDP (x, marker)
|
|
1114 #define CHECK_MARKER(x) CHECK_RECORD (x, marker)
|
|
1115 #define CONCHECK_MARKER(x) CONCHECK_RECORD (x, marker)
|
|
1116
|
|
1117 /* The second check was looking for GCed markers still in use */
|
|
1118 /* if (INTP (XMARKER (x)->lheader.next.v)) abort (); */
|
|
1119
|
|
1120 #define marker_next(m) ((m)->next)
|
|
1121 #define marker_prev(m) ((m)->prev)
|
|
1122
|
|
1123 /*********** char ***********/
|
|
1124
|
185
|
1125 #define CHARP(x) (XTYPE (x) == Lisp_Type_Char)
|
|
1126 #define GC_CHARP(x) (XGCTYPE (x) == Lisp_Type_Char)
|
0
|
1127
|
|
1128 #ifdef ERROR_CHECK_TYPECHECK
|
|
1129
|
|
1130 INLINE Emchar XCHAR (Lisp_Object obj);
|
|
1131 INLINE Emchar
|
|
1132 XCHAR (Lisp_Object obj)
|
|
1133 {
|
70
|
1134 assert (CHARP (obj));
|
207
|
1135 return XCHARVAL (obj);
|
0
|
1136 }
|
|
1137
|
|
1138 #else
|
|
1139
|
207
|
1140 #define XCHAR(x) XCHARVAL (x)
|
0
|
1141
|
|
1142 #endif
|
|
1143
|
185
|
1144 #define CHECK_CHAR(x) CHECK_NONRECORD (x, Lisp_Type_Char, Qcharacterp)
|
|
1145 #define CONCHECK_CHAR(x) CONCHECK_NONRECORD (x, Lisp_Type_Char, Qcharacterp)
|
0
|
1146
|
|
1147
|
|
1148 /*********** float ***********/
|
|
1149
|
|
1150 #ifdef LISP_FLOAT_TYPE
|
|
1151
|
|
1152 struct Lisp_Float
|
|
1153 {
|
|
1154 struct lrecord_header lheader;
|
280
|
1155 double data;
|
0
|
1156 };
|
|
1157
|
|
1158 DECLARE_LRECORD (float, struct Lisp_Float);
|
|
1159 #define XFLOAT(x) XRECORD (x, float, struct Lisp_Float)
|
|
1160 #define XSETFLOAT(x, p) XSETRECORD (x, p, float)
|
|
1161 #define FLOATP(x) RECORDP (x, float)
|
|
1162 #define GC_FLOATP(x) GC_RECORDP (x, float)
|
|
1163 #define CHECK_FLOAT(x) CHECK_RECORD (x, float)
|
|
1164 #define CONCHECK_FLOAT(x) CONCHECK_RECORD (x, float)
|
|
1165
|
280
|
1166 #define float_data(f) ((f)->data)
|
0
|
1167
|
|
1168 #define XFLOATINT(n) extract_float (n)
|
|
1169
|
272
|
1170 #define CHECK_INT_OR_FLOAT(x) do { \
|
|
1171 if (!INT_OR_FLOATP (x)) \
|
|
1172 dead_wrong_type_argument (Qnumberp, x); \
|
|
1173 } while (0)
|
|
1174
|
|
1175 #define CONCHECK_INT_OR_FLOAT(x) do { \
|
|
1176 if (!INT_OR_FLOATP (x)) \
|
|
1177 x = wrong_type_argument (Qnumberp, x); \
|
|
1178 } while (0)
|
0
|
1179
|
|
1180 /* These are always continuable because they change their arguments
|
|
1181 even when no error is signalled. */
|
|
1182
|
272
|
1183 #define CHECK_INT_OR_FLOAT_COERCE_MARKER(x) do { \
|
|
1184 if (INT_OR_FLOATP (x)) \
|
185
|
1185 ; \
|
|
1186 else if (MARKERP (x)) \
|
|
1187 x = make_int (marker_position (x)); \
|
|
1188 else \
|
|
1189 x = wrong_type_argument (Qnumber_or_marker_p, x); \
|
16
|
1190 } while (0)
|
0
|
1191
|
272
|
1192 #define CHECK_INT_OR_FLOAT_COERCE_CHAR_OR_MARKER(x) do { \
|
|
1193 if (INT_OR_FLOATP (x)) \
|
185
|
1194 ; \
|
|
1195 else if (CHARP (x)) \
|
|
1196 x = make_int (XCHAR (x)); \
|
|
1197 else if (MARKERP (x)) \
|
|
1198 x = make_int (marker_position (x)); \
|
|
1199 else \
|
|
1200 x = wrong_type_argument (Qnumber_char_or_marker_p, x); \
|
16
|
1201 } while (0)
|
0
|
1202
|
|
1203 # define INT_OR_FLOATP(x) (INTP (x) || FLOATP (x))
|
|
1204 # define GC_INT_OR_FLOATP(x) (GC_INTP (x) || GC_FLOATP (x))
|
|
1205
|
|
1206 #else /* not LISP_FLOAT_TYPE */
|
|
1207
|
|
1208 #define XFLOAT(x) --- error! No float support. ---
|
|
1209 #define XSETFLOAT(x, p) --- error! No float support. ---
|
|
1210 #define FLOATP(x) 0
|
|
1211 #define GC_FLOATP(x) 0
|
|
1212 #define CHECK_FLOAT(x) --- error! No float support. ---
|
|
1213 #define CONCHECK_FLOAT(x) --- error! No float support. ---
|
|
1214
|
|
1215 #define XFLOATINT(n) XINT(n)
|
|
1216 #define CHECK_INT_OR_FLOAT CHECK_INT
|
|
1217 #define CONCHECK_INT_OR_FLOAT CONCHECK_INT
|
|
1218 #define CHECK_INT_OR_FLOAT_COERCE_MARKER CHECK_INT_COERCE_MARKER
|
|
1219 #define CHECK_INT_OR_FLOAT_COERCE_CHAR_OR_MARKER \
|
|
1220 CHECK_INT_COERCE_CHAR_OR_MARKER
|
|
1221 #define INT_OR_FLOATP(x) (INTP (x))
|
|
1222 # define GC_INT_OR_FLOATP(x) (GC_INTP (x))
|
|
1223
|
|
1224 #endif /* not LISP_FLOAT_TYPE */
|
|
1225
|
272
|
1226 /*********** int ***********/
|
|
1227
|
|
1228 #define GC_INTP(x) INTP (x)
|
0
|
1229
|
|
1230 #define ZEROP(x) EQ (x, Qzero)
|
|
1231 #define GC_ZEROP(x) GC_EQ (x, Qzero)
|
|
1232
|
|
1233 #ifdef ERROR_CHECK_TYPECHECK
|
|
1234
|
|
1235 INLINE EMACS_INT XINT (Lisp_Object obj);
|
|
1236 INLINE EMACS_INT
|
|
1237 XINT (Lisp_Object obj)
|
|
1238 {
|
|
1239 assert (INTP (obj));
|
|
1240 return XREALINT (obj);
|
|
1241 }
|
|
1242
|
207
|
1243 INLINE EMACS_INT XCHAR_OR_INT (Lisp_Object obj);
|
|
1244 INLINE EMACS_INT
|
|
1245 XCHAR_OR_INT (Lisp_Object obj)
|
|
1246 {
|
|
1247 assert (INTP (obj) || CHARP (obj));
|
|
1248 return CHARP (obj) ? XCHAR (obj) : XINT (obj);
|
|
1249 }
|
|
1250
|
272
|
1251 #else /* no error checking */
|
|
1252
|
|
1253 #define XINT(obj) XREALINT (obj)
|
|
1254 #define XCHAR_OR_INT(obj) (CHARP (obj) ? XCHAR (obj) : XINT (obj))
|
|
1255
|
|
1256 #endif /* no error checking */
|
|
1257
|
|
1258 #define CHECK_INT(x) do { \
|
|
1259 if (!INTP (x)) \
|
|
1260 dead_wrong_type_argument (Qintegerp, x); \
|
|
1261 } while (0)
|
|
1262
|
|
1263 #define CONCHECK_INT(x) do { \
|
|
1264 if (!INTP (x)) \
|
|
1265 x = wrong_type_argument (Qintegerp, x); \
|
|
1266 } while (0)
|
0
|
1267
|
|
1268 #define NATNUMP(x) (INTP (x) && XINT (x) >= 0)
|
|
1269 #define GC_NATNUMP(x) (GC_INTP (x) && XINT (x) >= 0)
|
|
1270
|
272
|
1271 #define CHECK_NATNUM(x) do { \
|
|
1272 if (!NATNUMP (x)) \
|
|
1273 dead_wrong_type_argument (Qnatnump, x); \
|
|
1274 } while (0)
|
|
1275
|
|
1276 #define CONCHECK_NATNUM(x) do { \
|
|
1277 if (!NATNUMP (x)) \
|
|
1278 x = wrong_type_argument (Qnatnump, x); \
|
|
1279 } while (0)
|
0
|
1280
|
|
1281 /* next three always continuable because they coerce their arguments. */
|
272
|
1282 #define CHECK_INT_COERCE_CHAR(x) do { \
|
|
1283 if (INTP (x)) \
|
185
|
1284 ; \
|
|
1285 else if (CHARP (x)) \
|
|
1286 x = make_int (XCHAR (x)); \
|
|
1287 else \
|
|
1288 x = wrong_type_argument (Qinteger_or_char_p, x); \
|
16
|
1289 } while (0)
|
0
|
1290
|
272
|
1291 #define CHECK_INT_COERCE_MARKER(x) do { \
|
|
1292 if (INTP (x)) \
|
185
|
1293 ; \
|
|
1294 else if (MARKERP (x)) \
|
|
1295 x = make_int (marker_position (x)); \
|
|
1296 else \
|
|
1297 x = wrong_type_argument (Qinteger_or_marker_p, x); \
|
16
|
1298 } while (0)
|
0
|
1299
|
272
|
1300 #define CHECK_INT_COERCE_CHAR_OR_MARKER(x) do { \
|
|
1301 if (INTP (x)) \
|
185
|
1302 ; \
|
|
1303 else if (CHARP (x)) \
|
|
1304 x = make_int (XCHAR (x)); \
|
|
1305 else if (MARKERP (x)) \
|
|
1306 x = make_int (marker_position (x)); \
|
|
1307 else \
|
|
1308 x = wrong_type_argument (Qinteger_char_or_marker_p, x); \
|
16
|
1309 } while (0)
|
0
|
1310
|
|
1311 /*********** pure space ***********/
|
|
1312
|
276
|
1313 #define CHECK_IMPURE(obj) \
|
|
1314 do { if (purified (obj)) pure_write_error (obj); } while (0)
|
0
|
1315
|
|
1316 /*********** structures ***********/
|
|
1317
|
185
|
1318 typedef struct structure_keyword_entry structure_keyword_entry;
|
0
|
1319 struct structure_keyword_entry
|
|
1320 {
|
|
1321 Lisp_Object keyword;
|
|
1322 int (*validate) (Lisp_Object keyword, Lisp_Object value,
|
|
1323 Error_behavior errb);
|
|
1324 };
|
|
1325
|
185
|
1326 typedef struct
|
0
|
1327 {
|
185
|
1328 Dynarr_declare (structure_keyword_entry);
|
|
1329 } structure_keyword_entry_dynarr;
|
0
|
1330
|
185
|
1331 typedef struct structure_type structure_type;
|
0
|
1332 struct structure_type
|
|
1333 {
|
|
1334 Lisp_Object type;
|
185
|
1335 structure_keyword_entry_dynarr *keywords;
|
0
|
1336 int (*validate) (Lisp_Object data, Error_behavior errb);
|
|
1337 Lisp_Object (*instantiate) (Lisp_Object data);
|
|
1338 };
|
|
1339
|
185
|
1340 typedef struct
|
0
|
1341 {
|
185
|
1342 Dynarr_declare (structure_type);
|
|
1343 } structure_type_dynarr;
|
0
|
1344
|
|
1345 struct structure_type *define_structure_type (Lisp_Object type,
|
|
1346 int (*validate)
|
|
1347 (Lisp_Object data,
|
|
1348 Error_behavior errb),
|
|
1349 Lisp_Object (*instantiate)
|
|
1350 (Lisp_Object data));
|
|
1351 void define_structure_type_keyword (struct structure_type *st,
|
|
1352 Lisp_Object keyword,
|
|
1353 int (*validate) (Lisp_Object keyword,
|
|
1354 Lisp_Object value,
|
|
1355 Error_behavior errb));
|
|
1356
|
|
1357 /*********** weak lists ***********/
|
|
1358
|
|
1359 enum weak_list_type
|
|
1360 {
|
|
1361 /* element disappears if it's unmarked. */
|
|
1362 WEAK_LIST_SIMPLE,
|
|
1363 /* element disappears if it's a cons and either its car or
|
|
1364 cdr is unmarked. */
|
|
1365 WEAK_LIST_ASSOC,
|
|
1366 /* element disappears if it's a cons and its car is unmarked. */
|
|
1367 WEAK_LIST_KEY_ASSOC,
|
|
1368 /* element disappears if it's a cons and its cdr is unmarked. */
|
|
1369 WEAK_LIST_VALUE_ASSOC
|
|
1370 };
|
|
1371
|
|
1372 struct weak_list
|
|
1373 {
|
|
1374 struct lcrecord_header header;
|
|
1375 Lisp_Object list; /* don't mark through this! */
|
|
1376 enum weak_list_type type;
|
|
1377 Lisp_Object next_weak; /* don't mark through this! */
|
|
1378 };
|
|
1379
|
|
1380 DECLARE_LRECORD (weak_list, struct weak_list);
|
|
1381 #define XWEAK_LIST(x) XRECORD (x, weak_list, struct weak_list)
|
|
1382 #define XSETWEAK_LIST(x, p) XSETRECORD (x, p, weak_list)
|
|
1383 #define WEAK_LISTP(x) RECORDP (x, weak_list)
|
|
1384 #define GC_WEAK_LISTP(x) GC_RECORDP (x, weak_list)
|
|
1385 #define CHECK_WEAK_LIST(x) CHECK_RECORD (x, weak_list)
|
|
1386 #define CONCHECK_WEAK_LIST(x) CONCHECK_RECORD (x, weak_list)
|
|
1387
|
|
1388 #define weak_list_list(w) ((w)->list)
|
|
1389 #define XWEAK_LIST_LIST(w) (XWEAK_LIST (w)->list)
|
|
1390
|
|
1391 Lisp_Object make_weak_list (enum weak_list_type type);
|
|
1392 /* The following two are only called by the garbage collector */
|
|
1393 int finish_marking_weak_lists (int (*obj_marked_p) (Lisp_Object),
|
|
1394 void (*markobj) (Lisp_Object));
|
|
1395 void prune_weak_lists (int (*obj_marked_p) (Lisp_Object));
|
|
1396
|
|
1397 /*********** lcrecord lists ***********/
|
|
1398
|
|
1399 struct lcrecord_list
|
|
1400 {
|
|
1401 struct lcrecord_header header;
|
|
1402 Lisp_Object free;
|
272
|
1403 size_t size;
|
0
|
1404 CONST struct lrecord_implementation *implementation;
|
|
1405 };
|
|
1406
|
|
1407 DECLARE_LRECORD (lcrecord_list, struct lcrecord_list);
|
|
1408 #define XLCRECORD_LIST(x) XRECORD (x, lcrecord_list, struct lcrecord_list)
|
|
1409 #define XSETLCRECORD_LIST(x, p) XSETRECORD (x, p, lcrecord_list)
|
|
1410 #define LCRECORD_LISTP(x) RECORDP (x, lcrecord_list)
|
|
1411 #define GC_LCRECORD_LISTP(x) GC_RECORDP (x, lcrecord_list)
|
|
1412 /* #define CHECK_LCRECORD_LIST(x) CHECK_RECORD (x, lcrecord_list)
|
|
1413 Lcrecord lists should never escape to the Lisp level, so
|
|
1414 functions should not be doing this. */
|
|
1415
|
272
|
1416 Lisp_Object make_lcrecord_list (size_t size,
|
0
|
1417 CONST struct lrecord_implementation
|
|
1418 *implementation);
|
|
1419 Lisp_Object allocate_managed_lcrecord (Lisp_Object lcrecord_list);
|
|
1420 void free_managed_lcrecord (Lisp_Object lcrecord_list, Lisp_Object lcrecord);
|
|
1421
|
|
1422
|
|
1423 /************************************************************************/
|
|
1424 /* Definitions of primitive Lisp functions and variables */
|
|
1425 /************************************************************************/
|
|
1426
|
16
|
1427
|
|
1428 /* DEFUN - Define a built-in Lisp-visible C function or `subr'.
|
0
|
1429 `lname' should be the name to give the function in Lisp,
|
|
1430 as a null-terminated C string.
|
16
|
1431 `Fname' should be the C equivalent of `lname', using only characters
|
|
1432 valid in a C identifier, with an "F" prepended.
|
20
|
1433 The name of the C constant structure that records information
|
|
1434 on this function for internal use is "S" concatenated with Fname.
|
0
|
1435 `minargs' should be a number, the minimum number of arguments allowed.
|
|
1436 `maxargs' should be a number, the maximum number of arguments allowed,
|
|
1437 or else MANY or UNEVALLED.
|
|
1438 MANY means pass a vector of evaluated arguments,
|
|
1439 in the form of an integer number-of-arguments
|
|
1440 followed by the address of a vector of Lisp_Objects
|
|
1441 which contains the argument values.
|
16
|
1442 UNEVALLED means pass the list of unevaluated arguments.
|
0
|
1443 `prompt' says how to read arguments for an interactive call.
|
|
1444 See the doc string for `interactive'.
|
|
1445 A null string means call interactively with no arguments.
|
16
|
1446 `arglist' are the comma-separated arguments (always Lisp_Objects) for
|
|
1447 the function.
|
|
1448 The docstring for the function is placed as a "C" comment between
|
|
1449 the prompt and the `args' argument. make-docfile reads the
|
272
|
1450 comment and creates the DOC file from it.
|
0
|
1451 */
|
|
1452
|
272
|
1453 #define EXFUN_0 void
|
|
1454 #define EXFUN_1 Lisp_Object
|
|
1455 #define EXFUN_2 Lisp_Object,Lisp_Object
|
|
1456 #define EXFUN_3 Lisp_Object,Lisp_Object,Lisp_Object
|
|
1457 #define EXFUN_4 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object
|
|
1458 #define EXFUN_5 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object
|
|
1459 #define EXFUN_6 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object, \
|
|
1460 Lisp_Object
|
|
1461 #define EXFUN_7 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object, \
|
|
1462 Lisp_Object,Lisp_Object
|
|
1463 #define EXFUN_8 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object, \
|
|
1464 Lisp_Object,Lisp_Object,Lisp_Object
|
|
1465 #define EXFUN_MANY int, Lisp_Object*
|
|
1466 #define EXFUN_UNEVALLED Lisp_Object
|
|
1467 #define EXFUN(sym, maxargs) Lisp_Object sym (EXFUN_##maxargs)
|
|
1468
|
|
1469 #define SUBR_MAX_ARGS 8
|
0
|
1470 #define MANY -2
|
|
1471 #define UNEVALLED -1
|
|
1472
|
|
1473 /* Can't be const, because then subr->doc is read-only and
|
16
|
1474 Snarf_documentation chokes */
|
20
|
1475
|
211
|
1476 #ifdef USE_INDEXED_LRECORD_IMPLEMENTATION
|
|
1477 # define subr_lheader_initializer { 0, 0, 0 }
|
|
1478 #else
|
|
1479 # define subr_lheader_initializer { lrecord_subr }
|
|
1480 #endif
|
|
1481
|
20
|
1482 #define DEFUN(lname, Fname, minargs, maxargs, prompt, arglist) \
|
272
|
1483 Lisp_Object Fname (EXFUN_##maxargs); \
|
211
|
1484 static struct Lisp_Subr S##Fname = { subr_lheader_initializer, \
|
74
|
1485 minargs, maxargs, prompt, 0, lname, (lisp_fn_t) Fname }; \
|
20
|
1486 Lisp_Object Fname (DEFUN_##maxargs arglist)
|
|
1487
|
16
|
1488 /* Heavy ANSI C preprocessor hackery to get DEFUN to declare a
|
|
1489 prototype that matches maxargs, and add the obligatory
|
|
1490 `Lisp_Object' type declaration to the formal C arguments. */
|
0
|
1491
|
20
|
1492 #define DEFUN_MANY(named_int, named_Lisp_Object) named_int, named_Lisp_Object
|
16
|
1493 #define DEFUN_UNEVALLED(args) Lisp_Object args
|
|
1494 #define DEFUN_0() void
|
272
|
1495 #define DEFUN_1(a) Lisp_Object a
|
|
1496 #define DEFUN_2(a,b) DEFUN_1(a), Lisp_Object b
|
|
1497 #define DEFUN_3(a,b,c) DEFUN_2(a,b), Lisp_Object c
|
|
1498 #define DEFUN_4(a,b,c,d) DEFUN_3(a,b,c), Lisp_Object d
|
|
1499 #define DEFUN_5(a,b,c,d,e) DEFUN_4(a,b,c,d), Lisp_Object e
|
|
1500 #define DEFUN_6(a,b,c,d,e,f) DEFUN_5(a,b,c,d,e), Lisp_Object f
|
|
1501 #define DEFUN_7(a,b,c,d,e,f,g) DEFUN_6(a,b,c,d,e,f), Lisp_Object g
|
|
1502 #define DEFUN_8(a,b,c,d,e,f,g,h) DEFUN_7(a,b,c,d,e,f,g),Lisp_Object h
|
84
|
1503
|
16
|
1504 /* WARNING: If you add defines here for higher values of maxargs,
|
272
|
1505 make sure to also fix the clauses in inline_funcall_fn(),
|
16
|
1506 and change the define of SUBR_MAX_ARGS above. */
|
0
|
1507
|
|
1508 #include "symeval.h"
|
|
1509
|
16
|
1510 /* Depth of special binding/unwind-protect stack. Use as arg to `unbind_to' */
|
0
|
1511 int specpdl_depth (void);
|
|
1512
|
|
1513
|
|
1514 /************************************************************************/
|
|
1515 /* Checking for QUIT */
|
|
1516 /************************************************************************/
|
|
1517
|
|
1518 /* Asynchronous events set something_happened, and then are processed
|
|
1519 within the QUIT macro. At this point, we are guaranteed to not be in
|
|
1520 any sensitive code. */
|
|
1521
|
|
1522 extern volatile int something_happened;
|
|
1523 int check_what_happened (void);
|
|
1524
|
|
1525 extern volatile int quit_check_signal_happened;
|
|
1526 extern volatile int quit_check_signal_tick_count;
|
|
1527 int check_quit (void);
|
|
1528
|
|
1529 void signal_quit (void);
|
|
1530
|
|
1531 /* Nonzero if ought to quit now. */
|
272
|
1532 #define QUITP \
|
|
1533 ((quit_check_signal_happened ? check_quit () : 0), \
|
|
1534 (!NILP (Vquit_flag) && (NILP (Vinhibit_quit) \
|
84
|
1535 || EQ (Vquit_flag, Qcritical))))
|
0
|
1536
|
|
1537 /* QUIT used to call QUITP, but there are some places where QUITP
|
|
1538 is called directly, and check_what_happened() should only be called
|
|
1539 when Emacs is actually ready to quit because it could do things
|
|
1540 like switch threads. */
|
272
|
1541 #define INTERNAL_QUITP \
|
|
1542 ((something_happened ? check_what_happened () : 0), \
|
|
1543 (!NILP (Vquit_flag) && \
|
0
|
1544 (NILP (Vinhibit_quit) || EQ (Vquit_flag, Qcritical))))
|
|
1545
|
272
|
1546 #define INTERNAL_REALLY_QUITP \
|
|
1547 (check_what_happened (), \
|
|
1548 (!NILP (Vquit_flag) && \
|
0
|
1549 (NILP (Vinhibit_quit) || EQ (Vquit_flag, Qcritical))))
|
|
1550
|
|
1551 /* Check quit-flag and quit if it is non-nil. Also do any other things
|
|
1552 that might have gotten queued until it was safe. */
|
16
|
1553 #define QUIT do { if (INTERNAL_QUITP) signal_quit (); } while (0)
|
0
|
1554
|
16
|
1555 #define REALLY_QUIT do { if (INTERNAL_REALLY_QUITP) signal_quit (); } while (0)
|
0
|
1556
|
|
1557
|
|
1558 /************************************************************************/
|
|
1559 /* hashing */
|
|
1560 /************************************************************************/
|
|
1561
|
16
|
1562 /* #### for a 64-bit machine, we should substitute a prime just over 2^32 */
|
|
1563 #define GOOD_HASH 65599 /* prime number just over 2^16; Dragon book, p. 435 */
|
|
1564 #define HASH2(a,b) (GOOD_HASH * (a) + (b))
|
|
1565 #define HASH3(a,b,c) (GOOD_HASH * HASH2 (a,b) + (c))
|
|
1566 #define HASH4(a,b,c,d) (GOOD_HASH * HASH3 (a,b,c) + (d))
|
|
1567 #define HASH5(a,b,c,d,e) (GOOD_HASH * HASH4 (a,b,c,d) + (e))
|
|
1568 #define HASH6(a,b,c,d,e,f) (GOOD_HASH * HASH5 (a,b,c,d,e) + (f))
|
|
1569 #define HASH7(a,b,c,d,e,f,g) (GOOD_HASH * HASH6 (a,b,c,d,e,f) + (g))
|
|
1570 #define HASH8(a,b,c,d,e,f,g,h) (GOOD_HASH * HASH7 (a,b,c,d,e,f,g) + (h))
|
|
1571 #define HASH9(a,b,c,d,e,f,g,h,i) (GOOD_HASH * HASH8 (a,b,c,d,e,f,g,h) + (i))
|
0
|
1572
|
|
1573 /* Enough already! */
|
|
1574
|
|
1575 #define LISP_HASH(obj) ((unsigned long) LISP_TO_VOID (obj))
|
|
1576 unsigned long string_hash (CONST void *xv);
|
272
|
1577 unsigned long memory_hash (CONST void *xv, size_t size);
|
0
|
1578 unsigned long internal_hash (Lisp_Object obj, int depth);
|
|
1579 unsigned long internal_array_hash (Lisp_Object *arr, int size, int depth);
|
|
1580
|
|
1581
|
|
1582 /************************************************************************/
|
|
1583 /* String translation */
|
|
1584 /************************************************************************/
|
|
1585
|
|
1586 #ifdef I18N3
|
|
1587 #ifdef HAVE_LIBINTL_H
|
|
1588 #include <libintl.h>
|
|
1589 #else
|
|
1590 char *dgettext (CONST char *, CONST char *);
|
|
1591 char *gettext (CONST char *);
|
|
1592 char *textdomain (CONST char *);
|
|
1593 char *bindtextdomain (CONST char *, CONST char *);
|
|
1594 #endif /* HAVE_LIBINTL_H */
|
|
1595
|
|
1596 #define GETTEXT(x) gettext(x)
|
|
1597 #define LISP_GETTEXT(x) Fgettext (x)
|
|
1598 #else /* !I18N3 */
|
|
1599 #define GETTEXT(x) (x)
|
|
1600 #define LISP_GETTEXT(x) (x)
|
|
1601 #endif /* !I18N3 */
|
|
1602
|
|
1603 /* DEFER_GETTEXT is used to identify strings which are translated when
|
|
1604 they are referenced instead of when they are defined.
|
|
1605 These include Qerror_messages and initialized arrays of strings.
|
|
1606 */
|
|
1607 #define DEFER_GETTEXT(x) (x)
|
|
1608
|
|
1609
|
|
1610 /************************************************************************/
|
|
1611 /* Garbage collection / GC-protection */
|
|
1612 /************************************************************************/
|
|
1613
|
|
1614 /* number of bytes of structure consed since last GC */
|
|
1615
|
|
1616 extern EMACS_INT consing_since_gc;
|
|
1617
|
|
1618 /* threshold for doing another gc */
|
|
1619
|
|
1620 extern EMACS_INT gc_cons_threshold;
|
|
1621
|
|
1622 /* Structure for recording stack slots that need marking */
|
|
1623
|
|
1624 /* This is a chain of structures, each of which points at a Lisp_Object
|
|
1625 variable whose value should be marked in garbage collection.
|
|
1626 Normally every link of the chain is an automatic variable of a function,
|
|
1627 and its `val' points to some argument or local variable of the function.
|
|
1628 On exit to the function, the chain is set back to the value it had on
|
|
1629 entry. This way, no link remains in the chain when the stack frame
|
173
|
1630 containing the link disappears.
|
0
|
1631
|
|
1632 Every function that can call Feval must protect in this fashion all
|
|
1633 Lisp_Object variables whose contents will be used again. */
|
|
1634
|
|
1635 extern struct gcpro *gcprolist;
|
|
1636
|
|
1637 struct gcpro
|
|
1638 {
|
|
1639 struct gcpro *next;
|
|
1640 Lisp_Object *var; /* Address of first protected variable */
|
|
1641 int nvars; /* Number of consecutive protected variables */
|
|
1642 };
|
|
1643
|
|
1644 /* Normally, you declare variables gcpro1, gcpro2, ... and use the
|
|
1645 GCPROn() macros. However, if you need to have nested gcpro's,
|
|
1646 declare ngcpro1, ngcpro2, ... and use NGCPROn(). If you need
|
|
1647 to nest another level, use nngcpro1, nngcpro2, ... and use
|
|
1648 NNGCPROn(). If you need to nest yet another level, create
|
|
1649 the appropriate macros. */
|
|
1650
|
|
1651 #ifdef DEBUG_GCPRO
|
|
1652
|
272
|
1653 void debug_gcpro1 (char *, int, struct gcpro *, Lisp_Object *);
|
|
1654 void debug_gcpro2 (char *, int, struct gcpro *, struct gcpro *,
|
|
1655 Lisp_Object *, Lisp_Object *);
|
|
1656 void debug_gcpro3 (char *, int, struct gcpro *, struct gcpro *, struct gcpro *,
|
|
1657 Lisp_Object *, Lisp_Object *, Lisp_Object *);
|
|
1658 void debug_gcpro4 (char *, int, struct gcpro *, struct gcpro *, struct gcpro *,
|
|
1659 struct gcpro *, Lisp_Object *, Lisp_Object *, Lisp_Object *,
|
|
1660 Lisp_Object *);
|
|
1661 void debug_gcpro5 (char *, int, struct gcpro *, struct gcpro *, struct gcpro *,
|
|
1662 struct gcpro *, struct gcpro *, Lisp_Object *, Lisp_Object *,
|
|
1663 Lisp_Object *, Lisp_Object *, Lisp_Object *);
|
|
1664 void debug_ungcpro(char *, int, struct gcpro *);
|
0
|
1665
|
|
1666 #define GCPRO1(v) \
|
|
1667 debug_gcpro1 (__FILE__, __LINE__,&gcpro1,&v)
|
|
1668 #define GCPRO2(v1,v2) \
|
|
1669 debug_gcpro2 (__FILE__, __LINE__,&gcpro1,&gcpro2,&v1,&v2)
|
|
1670 #define GCPRO3(v1,v2,v3) \
|
|
1671 debug_gcpro3 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&v1,&v2,&v3)
|
|
1672 #define GCPRO4(v1,v2,v3,v4) \
|
|
1673 debug_gcpro4 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&gcpro4,\
|
|
1674 &v1,&v2,&v3,&v4)
|
|
1675 #define GCPRO5(v1,v2,v3,v4,v5) \
|
|
1676 debug_gcpro5 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&gcpro4,&gcpro5,\
|
|
1677 &v1,&v2,&v3,&v4,&v5)
|
|
1678 #define UNGCPRO \
|
|
1679 debug_ungcpro(__FILE__, __LINE__,&gcpro1)
|
|
1680
|
|
1681 #define NGCPRO1(v) \
|
|
1682 debug_gcpro1 (__FILE__, __LINE__,&ngcpro1,&v)
|
|
1683 #define NGCPRO2(v1,v2) \
|
|
1684 debug_gcpro2 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&v1,&v2)
|
|
1685 #define NGCPRO3(v1,v2,v3) \
|
|
1686 debug_gcpro3 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&v1,&v2,&v3)
|
|
1687 #define NGCPRO4(v1,v2,v3,v4) \
|
|
1688 debug_gcpro4 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&ngcpro4,\
|
|
1689 &v1,&v2,&v3,&v4)
|
|
1690 #define NGCPRO5(v1,v2,v3,v4,v5) \
|
|
1691 debug_gcpro5 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&ngcpro4,\
|
|
1692 &ngcpro5,&v1,&v2,&v3,&v4,&v5)
|
|
1693 #define NUNGCPRO \
|
|
1694 debug_ungcpro(__FILE__, __LINE__,&ngcpro1)
|
|
1695
|
|
1696 #define NNGCPRO1(v) \
|
|
1697 debug_gcpro1 (__FILE__, __LINE__,&nngcpro1,&v)
|
|
1698 #define NNGCPRO2(v1,v2) \
|
|
1699 debug_gcpro2 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&v1,&v2)
|
|
1700 #define NNGCPRO3(v1,v2,v3) \
|
|
1701 debug_gcpro3 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&v1,&v2,&v3)
|
|
1702 #define NNGCPRO4(v1,v2,v3,v4) \
|
|
1703 debug_gcpro4 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&nngcpro4,\
|
|
1704 &v1,&v2,&v3,&v4)
|
|
1705 #define NNGCPRO5(v1,v2,v3,v4,v5) \
|
|
1706 debug_gcpro5 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&nngcpro4,\
|
|
1707 &nngcpro5,&v1,&v2,&v3,&v4,&v5)
|
|
1708 #define NUNNGCPRO \
|
|
1709 debug_ungcpro(__FILE__, __LINE__,&nngcpro1)
|
|
1710
|
|
1711 #else /* ! DEBUG_GCPRO */
|
|
1712
|
|
1713 #define GCPRO1(varname) \
|
|
1714 {gcpro1.next = gcprolist; gcpro1.var = &varname; gcpro1.nvars = 1; \
|
|
1715 gcprolist = &gcpro1; }
|
|
1716
|
|
1717 #define GCPRO2(varname1, varname2) \
|
|
1718 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
|
16
|
1719 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
|
0
|
1720 gcprolist = &gcpro2; }
|
|
1721
|
|
1722 #define GCPRO3(varname1, varname2, varname3) \
|
|
1723 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
|
14
|
1724 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
|
|
1725 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
|
0
|
1726 gcprolist = &gcpro3; }
|
|
1727
|
|
1728 #define GCPRO4(varname1, varname2, varname3, varname4) \
|
|
1729 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
|
14
|
1730 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
|
|
1731 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
|
|
1732 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \
|
0
|
1733 gcprolist = &gcpro4; }
|
|
1734
|
|
1735 #define GCPRO5(varname1, varname2, varname3, varname4, varname5) \
|
|
1736 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
|
14
|
1737 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
|
|
1738 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
|
|
1739 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \
|
|
1740 gcpro5.next = &gcpro4; gcpro5.var = &varname5; gcpro5.nvars = 1; \
|
0
|
1741 gcprolist = &gcpro5; }
|
|
1742
|
|
1743 #define UNGCPRO (gcprolist = gcpro1.next)
|
|
1744
|
|
1745 #define NGCPRO1(varname) \
|
|
1746 {ngcpro1.next = gcprolist; ngcpro1.var = &varname; ngcpro1.nvars = 1; \
|
|
1747 gcprolist = &ngcpro1; }
|
|
1748
|
|
1749 #define NGCPRO2(varname1, varname2) \
|
|
1750 {ngcpro1.next = gcprolist; ngcpro1.var = &varname1; ngcpro1.nvars = 1; \
|
14
|
1751 ngcpro2.next = &ngcpro1; ngcpro2.var = &varname2; ngcpro2.nvars = 1; \
|
0
|
1752 gcprolist = &ngcpro2; }
|
|
1753
|
|
1754 #define NGCPRO3(varname1, varname2, varname3) \
|
|
1755 {ngcpro1.next = gcprolist; ngcpro1.var = &varname1; ngcpro1.nvars = 1; \
|
14
|
1756 ngcpro2.next = &ngcpro1; ngcpro2.var = &varname2; ngcpro2.nvars = 1; \
|
|
1757 ngcpro3.next = &ngcpro2; ngcpro3.var = &varname3; ngcpro3.nvars = 1; \
|
0
|
1758 gcprolist = &ngcpro3; }
|
|
1759
|
|
1760 #define NGCPRO4(varname1, varname2, varname3, varname4) \
|
|
1761 {ngcpro1.next = gcprolist; ngcpro1.var = &varname1; ngcpro1.nvars = 1; \
|
14
|
1762 ngcpro2.next = &ngcpro1; ngcpro2.var = &varname2; ngcpro2.nvars = 1; \
|
|
1763 ngcpro3.next = &ngcpro2; ngcpro3.var = &varname3; ngcpro3.nvars = 1; \
|
|
1764 ngcpro4.next = &ngcpro3; ngcpro4.var = &varname4; ngcpro4.nvars = 1; \
|
0
|
1765 gcprolist = &ngcpro4; }
|
|
1766
|
|
1767 #define NGCPRO5(varname1, varname2, varname3, varname4, varname5) \
|
|
1768 {ngcpro1.next = gcprolist; ngcpro1.var = &varname1; ngcpro1.nvars = 1; \
|
14
|
1769 ngcpro2.next = &ngcpro1; ngcpro2.var = &varname2; ngcpro2.nvars = 1; \
|
|
1770 ngcpro3.next = &ngcpro2; ngcpro3.var = &varname3; ngcpro3.nvars = 1; \
|
|
1771 ngcpro4.next = &ngcpro3; ngcpro4.var = &varname4; ngcpro4.nvars = 1; \
|
|
1772 ngcpro5.next = &ngcpro4; ngcpro5.var = &varname5; ngcpro5.nvars = 1; \
|
0
|
1773 gcprolist = &ngcpro5; }
|
|
1774
|
|
1775 #define NUNGCPRO (gcprolist = ngcpro1.next)
|
|
1776
|
|
1777 #define NNGCPRO1(varname) \
|
|
1778 {nngcpro1.next = gcprolist; nngcpro1.var = &varname; nngcpro1.nvars = 1; \
|
|
1779 gcprolist = &nngcpro1; }
|
|
1780
|
|
1781 #define NNGCPRO2(varname1, varname2) \
|
|
1782 {nngcpro1.next = gcprolist; nngcpro1.var = &varname1; nngcpro1.nvars = 1; \
|
|
1783 nngcpro2.next = &nngcpro1; nngcpro2.var = &varname2; nngcpro2.nvars = 1; \
|
|
1784 gcprolist = &nngcpro2; }
|
|
1785
|
|
1786 #define NNGCPRO3(varname1, varname2, varname3) \
|
|
1787 {nngcpro1.next = gcprolist; nngcpro1.var = &varname1; nngcpro1.nvars = 1; \
|
|
1788 nngcpro2.next = &nngcpro1; nngcpro2.var = &varname2; nngcpro2.nvars = 1; \
|
|
1789 nngcpro3.next = &nngcpro2; nngcpro3.var = &varname3; nngcpro3.nvars = 1; \
|
|
1790 gcprolist = &nngcpro3; }
|
|
1791
|
|
1792 #define NNGCPRO4(varname1, varname2, varname3, varname4) \
|
|
1793 {nngcpro1.next = gcprolist; nngcpro1.var = &varname1; nngcpro1.nvars = 1; \
|
|
1794 nngcpro2.next = &nngcpro1; nngcpro2.var = &varname2; nngcpro2.nvars = 1; \
|
|
1795 nngcpro3.next = &nngcpro2; nngcpro3.var = &varname3; nngcpro3.nvars = 1; \
|
|
1796 nngcpro4.next = &nngcpro3; nngcpro4.var = &varname4; nngcpro4.nvars = 1; \
|
|
1797 gcprolist = &nngcpro4; }
|
|
1798
|
|
1799 #define NNGCPRO5(varname1, varname2, varname3, varname4, varname5) \
|
|
1800 {nngcpro1.next = gcprolist; nngcpro1.var = &varname1; nngcpro1.nvars = 1; \
|
|
1801 nngcpro2.next = &nngcpro1; nngcpro2.var = &varname2; nngcpro2.nvars = 1; \
|
|
1802 nngcpro3.next = &nngcpro2; nngcpro3.var = &varname3; nngcpro3.nvars = 1; \
|
|
1803 nngcpro4.next = &nngcpro3; nngcpro4.var = &varname4; nngcpro4.nvars = 1; \
|
|
1804 nngcpro5.next = &nngcpro4; nngcpro5.var = &varname5; nngcpro5.nvars = 1; \
|
|
1805 gcprolist = &nngcpro5; }
|
|
1806
|
|
1807 #define NNUNGCPRO (gcprolist = nngcpro1.next)
|
|
1808
|
|
1809 #endif /* ! DEBUG_GCPRO */
|
|
1810
|
|
1811 /* Another try to fix SunPro C compiler warnings */
|
|
1812 /* "end-of-loop code not reached" */
|
|
1813 /* "statement not reached */
|
|
1814 #ifdef __SUNPRO_C
|
|
1815 #define RETURN__ if (1) return
|
|
1816 #define RETURN_NOT_REACHED(value)
|
|
1817 #else
|
|
1818 #define RETURN__ return
|
|
1819 #define RETURN_NOT_REACHED(value) return value;
|
|
1820 #endif
|
|
1821
|
|
1822 /* Evaluate expr, UNGCPRO, and then return the value of expr. */
|
272
|
1823 #define RETURN_UNGCPRO(expr) do \
|
|
1824 { \
|
|
1825 Lisp_Object ret_ungc_val = (expr); \
|
|
1826 UNGCPRO; \
|
|
1827 RETURN__ ret_ungc_val; \
|
0
|
1828 } while (0)
|
|
1829
|
|
1830 /* Evaluate expr, NUNGCPRO, UNGCPRO, and then return the value of expr. */
|
272
|
1831 #define RETURN_NUNGCPRO(expr) do \
|
|
1832 { \
|
|
1833 Lisp_Object ret_ungc_val = (expr); \
|
|
1834 NUNGCPRO; \
|
|
1835 UNGCPRO; \
|
|
1836 RETURN__ ret_ungc_val; \
|
0
|
1837 } while (0)
|
|
1838
|
|
1839 /* Evaluate expr, NNUNGCPRO, NUNGCPRO, UNGCPRO, and then return the
|
|
1840 value of expr. */
|
272
|
1841 #define RETURN_NNUNGCPRO(expr) do \
|
|
1842 { \
|
|
1843 Lisp_Object ret_ungc_val = (expr); \
|
|
1844 NNUNGCPRO; \
|
|
1845 NUNGCPRO; \
|
|
1846 UNGCPRO; \
|
|
1847 RETURN__ ret_ungc_val; \
|
0
|
1848 } while (0)
|
|
1849
|
|
1850 /* Evaluate expr, return it if it's not Qunbound. */
|
272
|
1851 #define RETURN_IF_NOT_UNBOUND(expr) do \
|
|
1852 { \
|
|
1853 Lisp_Object ret_nunb_val = (expr); \
|
|
1854 if (!UNBOUNDP (ret_nunb_val)) \
|
|
1855 RETURN__ ret_nunb_val; \
|
0
|
1856 } while (0)
|
|
1857
|
|
1858 /* Call staticpro (&var) to protect static variable `var'. */
|
|
1859 void staticpro (Lisp_Object *);
|
|
1860
|
|
1861 /* Nonzero means Emacs has already been initialized.
|
|
1862 Used during startup to detect startup of dumped Emacs. */
|
|
1863 extern int initialized;
|
|
1864
|
|
1865 #ifdef MEMORY_USAGE_STATS
|
|
1866
|
|
1867 /* This structure is used to keep statistics on the amount of memory
|
|
1868 in use.
|
|
1869
|
|
1870 WAS_REQUESTED stores the actual amount of memory that was requested
|
|
1871 of the allocation function. The *_OVERHEAD fields store the
|
|
1872 additional amount of memory that was grabbed by the functions to
|
|
1873 facilitate allocation, reallocation, etc. MALLOC_OVERHEAD is for
|
|
1874 memory allocated with malloc(); DYNARR_OVERHEAD is for dynamic
|
|
1875 arrays; GAP_OVERHEAD is for gap arrays. Note that for (e.g.)
|
|
1876 dynamic arrays, there is both MALLOC_OVERHEAD and DYNARR_OVERHEAD
|
|
1877 memory: The dynamic array allocates memory above and beyond what
|
|
1878 was asked of it, and when it in turns allocates memory using
|
|
1879 malloc(), malloc() allocates memory beyond what it was asked
|
|
1880 to allocate.
|
|
1881
|
|
1882 Functions that accept a structure of this sort do not initialize
|
|
1883 the fields to 0, and add any existing values to whatever was there
|
|
1884 before; this way, you can get a cumulative effect. */
|
|
1885
|
|
1886 struct overhead_stats
|
|
1887 {
|
|
1888 int was_requested;
|
|
1889 int malloc_overhead;
|
|
1890 int dynarr_overhead;
|
|
1891 int gap_overhead;
|
|
1892 };
|
|
1893
|
|
1894 #endif /* MEMORY_USAGE_STATS */
|
|
1895
|
|
1896 #ifndef DIRECTORY_SEP
|
|
1897 #define DIRECTORY_SEP '/'
|
|
1898 #endif
|
|
1899 #ifndef IS_DIRECTORY_SEP
|
|
1900 #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
|
|
1901 #endif
|
|
1902 #ifndef IS_DEVICE_SEP
|
|
1903 #ifndef DEVICE_SEP
|
|
1904 #define IS_DEVICE_SEP(_c_) 0
|
|
1905 #else
|
|
1906 #define IS_DEVICE_SEP(_c_) ((_c_) == DEVICE_SEP)
|
|
1907 #endif
|
|
1908 #endif
|
|
1909 #ifndef IS_ANY_SEP
|
|
1910 #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
|
|
1911 #endif
|
|
1912
|
165
|
1913 #ifdef HAVE_INTTYPES_H
|
|
1914 #include <inttypes.h>
|
|
1915 #elif SIZEOF_VOID_P == SIZEOF_INT
|
|
1916 typedef int intptr_t;
|
|
1917 typedef unsigned int uintptr_t;
|
|
1918 #elif SIZEOF_VOID_P == SIZEOF_LONG
|
|
1919 typedef long intptr_t;
|
|
1920 typedef unsigned long uintptr_t;
|
|
1921 #elif defined(SIZEOF_LONG_LONG) && SIZEOF_VOID_P == SIZEOF_LONG_LONG
|
|
1922 typedef long long intptr_t;
|
|
1923 typedef unsigned long long uintptr_t;
|
|
1924 #else
|
|
1925 /* Just pray. May break, may not. */
|
272
|
1926 typedef long intptr_t;
|
|
1927 typedef unsigned long uintptr_t;
|
|
1928 #endif
|
|
1929
|
|
1930 /* Defined in alloc.c */
|
|
1931 void release_breathing_space (void);
|
|
1932 Lisp_Object noseeum_cons (Lisp_Object, Lisp_Object);
|
|
1933 Lisp_Object make_vector (EMACS_INT, Lisp_Object);
|
|
1934 Lisp_Object vector1 (Lisp_Object);
|
|
1935 Lisp_Object vector2 (Lisp_Object, Lisp_Object);
|
|
1936 Lisp_Object vector3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
1937 Lisp_Object make_bit_vector (EMACS_INT, Lisp_Object);
|
|
1938 Lisp_Object make_bit_vector_from_byte_vector (unsigned char *, EMACS_INT);
|
|
1939 Lisp_Object noseeum_make_marker (void);
|
|
1940 void garbage_collect_1 (void);
|
|
1941 Lisp_Object acons (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
1942 Lisp_Object cons3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
1943 Lisp_Object list1 (Lisp_Object);
|
|
1944 Lisp_Object list2 (Lisp_Object, Lisp_Object);
|
|
1945 Lisp_Object list3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
1946 Lisp_Object list4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
|
|
1947 Lisp_Object list5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
1948 Lisp_Object);
|
|
1949 Lisp_Object list6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
1950 Lisp_Object, Lisp_Object);
|
|
1951 DECLARE_DOESNT_RETURN (memory_full (void));
|
|
1952 void disksave_object_finalization (void);
|
|
1953 extern int purify_flag;
|
|
1954 extern int gc_currently_forbidden;
|
|
1955 Lisp_Object restore_gc_inhibit (Lisp_Object);
|
|
1956 extern EMACS_INT gc_generation_number[1];
|
|
1957 int purified (Lisp_Object);
|
|
1958 Lisp_Object build_string (CONST char *);
|
|
1959 Lisp_Object build_ext_string (CONST char *, enum external_data_format);
|
|
1960 Lisp_Object build_translated_string (CONST char *);
|
|
1961 Lisp_Object make_string (CONST Bufbyte *, Bytecount);
|
|
1962 Lisp_Object make_ext_string (CONST Extbyte *, EMACS_INT,
|
|
1963 enum external_data_format);
|
|
1964 Lisp_Object make_uninit_string (Bytecount);
|
|
1965 Lisp_Object make_float (double);
|
|
1966 size_t purespace_usage (void);
|
|
1967 void report_pure_usage (int, int);
|
|
1968 Lisp_Object make_pure_string (CONST Bufbyte *, Bytecount, Lisp_Object, int);
|
|
1969 Lisp_Object make_pure_pname (CONST Bufbyte *, Bytecount, int);
|
|
1970 Lisp_Object pure_cons (Lisp_Object, Lisp_Object);
|
|
1971 Lisp_Object pure_list (int, Lisp_Object *);
|
|
1972 Lisp_Object make_pure_vector (size_t, Lisp_Object);
|
|
1973 void free_cons (struct Lisp_Cons *);
|
|
1974 void free_list (Lisp_Object);
|
|
1975 void free_alist (Lisp_Object);
|
|
1976 void mark_conses_in_list (Lisp_Object);
|
|
1977 void free_marker (struct Lisp_Marker *);
|
|
1978 int object_dead_p (Lisp_Object);
|
|
1979
|
|
1980 #ifdef MEMORY_USAGE_STATS
|
|
1981 size_t malloced_storage_size (void *, size_t, struct overhead_stats *);
|
|
1982 size_t fixed_type_block_overhead (size_t);
|
|
1983 #endif
|
|
1984
|
|
1985 /* Defined in buffer.c */
|
|
1986 Lisp_Object make_buffer (struct buffer *);
|
|
1987 Lisp_Object get_truename_buffer (Lisp_Object);
|
|
1988 void switch_to_buffer (Lisp_Object, Lisp_Object);
|
|
1989 extern int find_file_compare_truenames;
|
|
1990 extern int find_file_use_truenames;
|
|
1991
|
|
1992 /* Defined in callproc.c */
|
|
1993 char *egetenv (CONST char *);
|
|
1994
|
|
1995 /* Defined in console.c */
|
|
1996 void stuff_buffered_input (Lisp_Object);
|
|
1997
|
|
1998 /* Defined in data.c */
|
276
|
1999 DECLARE_DOESNT_RETURN (pure_write_error (Lisp_Object));
|
272
|
2000 DECLARE_DOESNT_RETURN (args_out_of_range (Lisp_Object, Lisp_Object));
|
|
2001 DECLARE_DOESNT_RETURN (args_out_of_range_3 (Lisp_Object, Lisp_Object,
|
|
2002 Lisp_Object));
|
|
2003 Lisp_Object wrong_type_argument (Lisp_Object, Lisp_Object);
|
|
2004 DECLARE_DOESNT_RETURN (dead_wrong_type_argument (Lisp_Object, Lisp_Object));
|
|
2005 void check_int_range (int, int, int);
|
280
|
2006
|
|
2007 enum arith_comparison {
|
|
2008 arith_equal,
|
|
2009 arith_notequal,
|
|
2010 arith_less,
|
|
2011 arith_grtr,
|
|
2012 arith_less_or_equal,
|
|
2013 arith_grtr_or_equal };
|
|
2014 Lisp_Object arithcompare (Lisp_Object, Lisp_Object, enum arith_comparison);
|
|
2015
|
272
|
2016 Lisp_Object word_to_lisp (unsigned int);
|
|
2017 unsigned int lisp_to_word (Lisp_Object);
|
|
2018
|
|
2019 /* Defined in dired.c */
|
280
|
2020 Lisp_Object make_directory_hash_table (CONST char *);
|
272
|
2021 Lisp_Object wasteful_word_to_lisp (unsigned int);
|
|
2022
|
|
2023 /* Defined in doc.c */
|
|
2024 Lisp_Object unparesseuxify_doc_string (int, EMACS_INT, char *, Lisp_Object);
|
|
2025 Lisp_Object read_doc_string (Lisp_Object);
|
|
2026
|
|
2027 /* Defined in doprnt.c */
|
|
2028 Bytecount emacs_doprnt_c (Lisp_Object, CONST Bufbyte *, Lisp_Object,
|
|
2029 Bytecount, ...);
|
|
2030 Bytecount emacs_doprnt_va (Lisp_Object, CONST Bufbyte *, Lisp_Object,
|
|
2031 Bytecount, va_list);
|
|
2032 Bytecount emacs_doprnt_lisp (Lisp_Object, CONST Bufbyte *, Lisp_Object,
|
|
2033 Bytecount, int, CONST Lisp_Object *);
|
|
2034 Bytecount emacs_doprnt_lisp_2 (Lisp_Object, CONST Bufbyte *, Lisp_Object,
|
|
2035 Bytecount, int, ...);
|
|
2036 Lisp_Object emacs_doprnt_string_c (CONST Bufbyte *, Lisp_Object,
|
|
2037 Bytecount, ...);
|
|
2038 Lisp_Object emacs_doprnt_string_va (CONST Bufbyte *, Lisp_Object,
|
|
2039 Bytecount, va_list);
|
|
2040 Lisp_Object emacs_doprnt_string_lisp (CONST Bufbyte *, Lisp_Object,
|
|
2041 Bytecount, int, CONST Lisp_Object *);
|
|
2042 Lisp_Object emacs_doprnt_string_lisp_2 (CONST Bufbyte *, Lisp_Object,
|
|
2043 Bytecount, int, ...);
|
|
2044
|
|
2045 /* Defined in editfns.c */
|
|
2046 Bufpos bufpos_clip_to_bounds (Bufpos, Bufpos, Bufpos);
|
|
2047 Bytind bytind_clip_to_bounds (Bytind, Bytind, Bytind);
|
|
2048 void buffer_insert1 (struct buffer *, Lisp_Object);
|
|
2049 Lisp_Object make_string_from_buffer (struct buffer *, int, int);
|
|
2050 Lisp_Object save_excursion_save (void);
|
|
2051 Lisp_Object save_restriction_save (void);
|
|
2052 Lisp_Object save_excursion_restore (Lisp_Object);
|
|
2053 Lisp_Object save_restriction_restore (Lisp_Object);
|
|
2054
|
|
2055 /* Defined in emacsfns.c */
|
|
2056 Lisp_Object save_current_buffer_restore (Lisp_Object);
|
|
2057
|
|
2058 /* Defined in emacs.c */
|
|
2059 DECLARE_DOESNT_RETURN_GCC__ATTRIBUTE__SYNTAX_SUCKS (fatal (CONST char *,
|
|
2060 ...), 1, 2);
|
|
2061 int stderr_out (CONST char *, ...) PRINTF_ARGS (1, 2);
|
|
2062 int stdout_out (CONST char *, ...) PRINTF_ARGS (1, 2);
|
|
2063 SIGTYPE fatal_error_signal (int);
|
|
2064 Lisp_Object make_arg_list (int, char **);
|
|
2065 void make_argc_argv (Lisp_Object, int *, char ***);
|
|
2066 void free_argc_argv (char **);
|
|
2067 Lisp_Object decode_env_path (CONST char *, CONST char *);
|
|
2068 Lisp_Object decode_path (CONST char *);
|
|
2069 /* Nonzero means don't do interactive redisplay and don't change tty modes */
|
|
2070 extern int noninteractive;
|
|
2071 extern int preparing_for_armageddon;
|
|
2072 extern int emacs_priority;
|
|
2073 extern int running_asynch_code;
|
|
2074 extern int suppress_early_error_handler_backtrace;
|
|
2075
|
|
2076 /* Defined in eval.c */
|
|
2077 DECLARE_DOESNT_RETURN (signal_error (Lisp_Object, Lisp_Object));
|
|
2078 void maybe_signal_error (Lisp_Object, Lisp_Object, Lisp_Object, Error_behavior);
|
|
2079 Lisp_Object maybe_signal_continuable_error (Lisp_Object, Lisp_Object,
|
|
2080 Lisp_Object, Error_behavior);
|
|
2081 DECLARE_DOESNT_RETURN_GCC__ATTRIBUTE__SYNTAX_SUCKS (error (CONST char *,
|
|
2082 ...), 1, 2);
|
|
2083 void maybe_error (Lisp_Object, Error_behavior, CONST char *,
|
|
2084 ...) PRINTF_ARGS (3, 4);
|
|
2085 Lisp_Object continuable_error (CONST char *, ...) PRINTF_ARGS (1, 2);
|
|
2086 Lisp_Object maybe_continuable_error (Lisp_Object, Error_behavior,
|
|
2087 CONST char *, ...) PRINTF_ARGS (3, 4);
|
|
2088 DECLARE_DOESNT_RETURN (signal_simple_error (CONST char *, Lisp_Object));
|
|
2089 void maybe_signal_simple_error (CONST char *, Lisp_Object,
|
|
2090 Lisp_Object, Error_behavior);
|
|
2091 Lisp_Object signal_simple_continuable_error (CONST char *, Lisp_Object);
|
|
2092 Lisp_Object maybe_signal_simple_continuable_error (CONST char *, Lisp_Object,
|
|
2093 Lisp_Object, Error_behavior);
|
|
2094 DECLARE_DOESNT_RETURN_GCC__ATTRIBUTE__SYNTAX_SUCKS (error_with_frob
|
|
2095 (Lisp_Object, CONST char *,
|
|
2096 ...), 2, 3);
|
|
2097 void maybe_error_with_frob (Lisp_Object, Lisp_Object, Error_behavior,
|
|
2098 CONST char *, ...) PRINTF_ARGS (4, 5);
|
|
2099 Lisp_Object continuable_error_with_frob (Lisp_Object, CONST char *,
|
|
2100 ...) PRINTF_ARGS (2, 3);
|
|
2101 Lisp_Object maybe_continuable_error_with_frob
|
|
2102 (Lisp_Object, Lisp_Object, Error_behavior, CONST char *, ...) PRINTF_ARGS (4, 5);
|
|
2103 DECLARE_DOESNT_RETURN (signal_simple_error_2 (CONST char *,
|
|
2104 Lisp_Object, Lisp_Object));
|
|
2105 void maybe_signal_simple_error_2 (CONST char *, Lisp_Object, Lisp_Object,
|
|
2106 Lisp_Object, Error_behavior);
|
|
2107 Lisp_Object signal_simple_continuable_error_2 (CONST char *,
|
|
2108 Lisp_Object, Lisp_Object);
|
|
2109 Lisp_Object maybe_signal_simple_continuable_error_2 (CONST char *, Lisp_Object,
|
|
2110 Lisp_Object, Lisp_Object,
|
|
2111 Error_behavior);
|
|
2112 Lisp_Object funcall_recording_as (Lisp_Object, int, Lisp_Object *);
|
|
2113 Lisp_Object run_hook_with_args_in_buffer (struct buffer *, int, Lisp_Object *,
|
|
2114 enum run_hooks_condition);
|
|
2115 Lisp_Object run_hook_with_args (int, Lisp_Object *, enum run_hooks_condition);
|
|
2116 void va_run_hook_with_args (Lisp_Object, int, ...);
|
|
2117 void va_run_hook_with_args_in_buffer (struct buffer *, Lisp_Object, int, ...);
|
|
2118 Lisp_Object run_hook (Lisp_Object);
|
|
2119 Lisp_Object apply1 (Lisp_Object, Lisp_Object);
|
|
2120 Lisp_Object call0 (Lisp_Object);
|
|
2121 Lisp_Object call1 (Lisp_Object, Lisp_Object);
|
|
2122 Lisp_Object call2 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2123 Lisp_Object call3 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2124 Lisp_Object call4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2125 Lisp_Object);
|
|
2126 Lisp_Object call5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2127 Lisp_Object, Lisp_Object);
|
|
2128 Lisp_Object call6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2129 Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2130 Lisp_Object call7 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2131 Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2132 Lisp_Object call8 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2133 Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2134 Lisp_Object);
|
|
2135 Lisp_Object call0_in_buffer (struct buffer *, Lisp_Object);
|
|
2136 Lisp_Object call1_in_buffer (struct buffer *, Lisp_Object, Lisp_Object);
|
|
2137 Lisp_Object call2_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
2138 Lisp_Object);
|
|
2139 Lisp_Object call3_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
2140 Lisp_Object, Lisp_Object);
|
|
2141 Lisp_Object call4_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
2142 Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2143 Lisp_Object call5_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
2144 Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2145 Lisp_Object);
|
|
2146 Lisp_Object call6_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
2147 Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2148 Lisp_Object, Lisp_Object);
|
|
2149 Lisp_Object eval_in_buffer (struct buffer *, Lisp_Object);
|
|
2150 Lisp_Object call0_with_handler (Lisp_Object, Lisp_Object);
|
|
2151 Lisp_Object call1_with_handler (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2152 Lisp_Object eval_in_buffer_trapping_errors (CONST char *, struct buffer *,
|
|
2153 Lisp_Object);
|
|
2154 Lisp_Object run_hook_trapping_errors (CONST char *, Lisp_Object);
|
|
2155 Lisp_Object safe_run_hook_trapping_errors (CONST char *, Lisp_Object, int);
|
|
2156 Lisp_Object call0_trapping_errors (CONST char *, Lisp_Object);
|
|
2157 Lisp_Object call1_trapping_errors (CONST char *, Lisp_Object, Lisp_Object);
|
|
2158 Lisp_Object call2_trapping_errors (CONST char *,
|
|
2159 Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2160 Lisp_Object call_with_suspended_errors (lisp_fn_t, volatile Lisp_Object, Lisp_Object,
|
|
2161 Error_behavior, int, ...);
|
|
2162 /* C Code should be using internal_catch, record_unwind_p, condition_case_1 */
|
|
2163 Lisp_Object internal_catch (Lisp_Object, Lisp_Object (*) (Lisp_Object),
|
|
2164 Lisp_Object, int * volatile);
|
|
2165 Lisp_Object condition_case_1 (Lisp_Object,
|
|
2166 Lisp_Object (*) (Lisp_Object),
|
|
2167 Lisp_Object,
|
|
2168 Lisp_Object (*) (Lisp_Object, Lisp_Object),
|
|
2169 Lisp_Object);
|
|
2170 Lisp_Object condition_case_3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2171 Lisp_Object unbind_to (int, Lisp_Object);
|
|
2172 void specbind (Lisp_Object, Lisp_Object);
|
|
2173 void record_unwind_protect (Lisp_Object (*) (Lisp_Object), Lisp_Object);
|
|
2174 void do_autoload (Lisp_Object, Lisp_Object);
|
|
2175 Lisp_Object un_autoload (Lisp_Object);
|
|
2176 void warn_when_safe_lispobj (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2177 void warn_when_safe (Lisp_Object, Lisp_Object, CONST char *,
|
|
2178 ...) PRINTF_ARGS (3, 4);
|
|
2179
|
|
2180
|
|
2181 /* Defined in event-stream.c */
|
|
2182 void wait_delaying_user_input (int (*) (void *), void *);
|
|
2183 int detect_input_pending (void);
|
|
2184 void reset_this_command_keys (Lisp_Object, int);
|
|
2185 Lisp_Object enqueue_misc_user_event (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2186
|
|
2187 /* Defined in event-Xt.c */
|
|
2188 void signal_special_Xt_user_event (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2189
|
|
2190
|
|
2191 /* Defined in events.c */
|
|
2192 void clear_event_resource (void);
|
|
2193 Lisp_Object allocate_event (void);
|
|
2194 int event_to_character (struct Lisp_Event *, int, int, int);
|
|
2195
|
|
2196 /* Defined in fileio.c */
|
|
2197 void record_auto_save (void);
|
|
2198 void force_auto_save_soon (void);
|
|
2199 DECLARE_DOESNT_RETURN (report_file_error (CONST char *, Lisp_Object));
|
|
2200 void maybe_report_file_error (CONST char *, Lisp_Object,
|
|
2201 Lisp_Object, Error_behavior);
|
|
2202 DECLARE_DOESNT_RETURN (signal_file_error (CONST char *, Lisp_Object));
|
|
2203 void maybe_signal_file_error (CONST char *, Lisp_Object,
|
|
2204 Lisp_Object, Error_behavior);
|
|
2205 DECLARE_DOESNT_RETURN (signal_double_file_error (CONST char *, CONST char *,
|
|
2206 Lisp_Object));
|
|
2207 void maybe_signal_double_file_error (CONST char *, CONST char *,
|
|
2208 Lisp_Object, Lisp_Object, Error_behavior);
|
|
2209 DECLARE_DOESNT_RETURN (signal_double_file_error_2 (CONST char *, CONST char *,
|
|
2210 Lisp_Object, Lisp_Object));
|
|
2211 void maybe_signal_double_file_error_2 (CONST char *, CONST char *,
|
|
2212 Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2213 Error_behavior);
|
|
2214 Lisp_Object lisp_strerror (int);
|
|
2215 Lisp_Object expand_and_dir_to_file (Lisp_Object, Lisp_Object);
|
|
2216 int read_allowing_quit (int, void *, size_t);
|
|
2217 int write_allowing_quit (int, CONST void *, size_t);
|
|
2218 int internal_delete_file (Lisp_Object);
|
|
2219
|
|
2220 /* Defined in filelock.c */
|
|
2221 void lock_file (Lisp_Object);
|
|
2222 void unlock_file (Lisp_Object);
|
|
2223 void unlock_all_files (void);
|
|
2224 void unlock_buffer (struct buffer *);
|
|
2225
|
|
2226 /* Defined in filemode.c */
|
|
2227 void filemodestring (struct stat *, char *);
|
|
2228
|
|
2229 /* Defined in floatfns.c */
|
|
2230 double extract_float (Lisp_Object);
|
|
2231
|
|
2232 /* Defined in fns.c */
|
|
2233 Lisp_Object list_sort (Lisp_Object, Lisp_Object,
|
|
2234 int (*) (Lisp_Object, Lisp_Object, Lisp_Object));
|
|
2235 Lisp_Object merge (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2236
|
|
2237 void bump_string_modiff (Lisp_Object);
|
|
2238 Lisp_Object memq_no_quit (Lisp_Object, Lisp_Object);
|
|
2239 Lisp_Object assoc_no_quit (Lisp_Object, Lisp_Object);
|
|
2240 Lisp_Object assq_no_quit (Lisp_Object, Lisp_Object);
|
|
2241 Lisp_Object rassq_no_quit (Lisp_Object, Lisp_Object);
|
|
2242 Lisp_Object delq_no_quit (Lisp_Object, Lisp_Object);
|
|
2243 Lisp_Object delq_no_quit_and_free_cons (Lisp_Object, Lisp_Object);
|
|
2244 Lisp_Object remassoc_no_quit (Lisp_Object, Lisp_Object);
|
|
2245 Lisp_Object remassq_no_quit (Lisp_Object, Lisp_Object);
|
|
2246 Lisp_Object remrassq_no_quit (Lisp_Object, Lisp_Object);
|
|
2247
|
|
2248 void pure_put (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2249 int plists_differ (Lisp_Object, Lisp_Object, int, int, int);
|
|
2250 Lisp_Object internal_plist_get (Lisp_Object, Lisp_Object);
|
|
2251 void internal_plist_put (Lisp_Object *, Lisp_Object, Lisp_Object);
|
|
2252 int internal_remprop (Lisp_Object *, Lisp_Object);
|
|
2253 Lisp_Object external_plist_get (Lisp_Object *, Lisp_Object,
|
|
2254 int, Error_behavior);
|
|
2255 void external_plist_put (Lisp_Object *, Lisp_Object,
|
|
2256 Lisp_Object, int, Error_behavior);
|
|
2257 int external_remprop (Lisp_Object *, Lisp_Object, int, Error_behavior);
|
|
2258 int internal_equal (Lisp_Object, Lisp_Object, int);
|
|
2259 Lisp_Object concat2 (Lisp_Object, Lisp_Object);
|
|
2260 Lisp_Object concat3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2261 Lisp_Object vconcat2 (Lisp_Object, Lisp_Object);
|
|
2262 Lisp_Object vconcat3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2263 Lisp_Object nconc2 (Lisp_Object, Lisp_Object);
|
|
2264 void check_losing_bytecode (CONST char *, Lisp_Object);
|
|
2265
|
|
2266 /* Defined in getloadavg.c */
|
|
2267 int getloadavg (double[], int);
|
|
2268
|
|
2269 /* Defined in glyphs.c */
|
|
2270 Error_behavior decode_error_behavior_flag (Lisp_Object);
|
|
2271 Lisp_Object encode_error_behavior_flag (Error_behavior);
|
|
2272
|
|
2273 /* Defined in indent.c */
|
|
2274 int bi_spaces_at_point (struct buffer *, Bytind);
|
|
2275 int column_at_point (struct buffer *, Bufpos, int);
|
|
2276 int current_column (struct buffer *);
|
|
2277 void invalidate_current_column (void);
|
|
2278 Bufpos vmotion (struct window *, Bufpos, int, int *);
|
|
2279
|
|
2280 /* Defined in keymap.c */
|
|
2281 void where_is_to_char (Lisp_Object, char *);
|
|
2282
|
|
2283 /* Defined in lread.c */
|
|
2284 void ebolify_bytecode_constants (Lisp_Object);
|
|
2285 void close_load_descs (void);
|
|
2286 int locate_file (Lisp_Object, Lisp_Object, CONST char *, Lisp_Object *, int);
|
|
2287 int isfloat_string (CONST char *);
|
|
2288
|
|
2289 /* Well, I've decided to enable this. -- ben */
|
|
2290 /* And I've decided to make it work right. -- sb */
|
|
2291 #define LOADHIST
|
|
2292 /* Define the following symbol to enable load history of dumped files */
|
|
2293 #define LOADHIST_DUMPED
|
|
2294 /* Define the following symbol to enable load history of C source */
|
|
2295 #define LOADHIST_BUILTIN
|
|
2296
|
|
2297 #ifdef LOADHIST /* this is just a stupid idea */
|
|
2298 #define LOADHIST_ATTACH(x) \
|
|
2299 do { if (initialized) Vcurrent_load_list = Fcons (x, Vcurrent_load_list); } \
|
|
2300 while (0)
|
|
2301 #else /*! LOADHIST */
|
|
2302 # define LOADHIST_ATTACH(x)
|
|
2303 #endif /*! LOADHIST */
|
|
2304
|
|
2305 /* Defined in marker.c */
|
|
2306 Bytind bi_marker_position (Lisp_Object);
|
|
2307 Bufpos marker_position (Lisp_Object);
|
|
2308 void set_bi_marker_position (Lisp_Object, Bytind);
|
|
2309 void set_marker_position (Lisp_Object, Bufpos);
|
|
2310 void unchain_marker (Lisp_Object);
|
|
2311 Lisp_Object noseeum_copy_marker (Lisp_Object, Lisp_Object);
|
|
2312 Lisp_Object set_marker_restricted (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2313 #ifdef MEMORY_USAGE_STATS
|
|
2314 int compute_buffer_marker_usage (struct buffer *, struct overhead_stats *);
|
165
|
2315 #endif
|
|
2316
|
272
|
2317 /* Defined in menubar.c */
|
|
2318 extern int popup_menu_up_p;
|
|
2319 extern int menubar_show_keybindings;
|
|
2320 extern int popup_menu_titles;
|
|
2321
|
|
2322 /* Defined in minibuf.c */
|
|
2323 extern int minibuf_level;
|
|
2324 Charcount scmp_1 (CONST Bufbyte *, CONST Bufbyte *, Charcount, int);
|
|
2325 #define scmp(s1, s2, len) scmp_1 (s1, s2, len, completion_ignore_case)
|
|
2326 extern int completion_ignore_case;
|
|
2327 int regexp_ignore_completion_p (CONST Bufbyte *, Lisp_Object,
|
|
2328 Bytecount, Bytecount);
|
|
2329 Lisp_Object clear_echo_area (struct frame *, Lisp_Object, int);
|
|
2330 Lisp_Object clear_echo_area_from_print (struct frame *, Lisp_Object, int);
|
|
2331 void echo_area_append (struct frame *, CONST Bufbyte *, Lisp_Object,
|
|
2332 Bytecount, Bytecount, Lisp_Object);
|
|
2333 void echo_area_message (struct frame *, CONST Bufbyte *, Lisp_Object,
|
|
2334 Bytecount, Bytecount, Lisp_Object);
|
|
2335 Lisp_Object echo_area_status (struct frame *);
|
|
2336 int echo_area_active (struct frame *);
|
|
2337 Lisp_Object echo_area_contents (struct frame *);
|
|
2338 void message_internal (CONST Bufbyte *, Lisp_Object, Bytecount, Bytecount);
|
|
2339 void message_append_internal (CONST Bufbyte *, Lisp_Object,
|
|
2340 Bytecount, Bytecount);
|
|
2341 void message (CONST char *, ...) PRINTF_ARGS (1, 2);
|
|
2342 void message_append (CONST char *, ...) PRINTF_ARGS (1, 2);
|
|
2343 void message_no_translate (CONST char *, ...) PRINTF_ARGS (1, 2);
|
|
2344 void clear_message (void);
|
|
2345
|
|
2346 /* Defined in print.c */
|
|
2347 void write_string_to_stdio_stream (FILE *, struct console *,
|
|
2348 CONST Bufbyte *, Bytecount, Bytecount,
|
|
2349 enum external_data_format);
|
|
2350 void debug_print (Lisp_Object);
|
|
2351 void debug_short_backtrace (int);
|
|
2352 void temp_output_buffer_setup (CONST char *);
|
|
2353 void temp_output_buffer_show (Lisp_Object, Lisp_Object);
|
|
2354 /* NOTE: Do not call this with the data of a Lisp_String. Use princ.
|
|
2355 * Note: stream should be defaulted before calling
|
|
2356 * (eg Qnil means stdout, not Vstandard_output, etc) */
|
|
2357 void write_c_string (CONST char *, Lisp_Object);
|
|
2358 /* Same goes for this function. */
|
|
2359 void write_string_1 (CONST Bufbyte *, Bytecount, Lisp_Object);
|
|
2360 void print_cons (Lisp_Object, Lisp_Object, int);
|
|
2361 void print_vector (Lisp_Object, Lisp_Object, int);
|
|
2362 void print_string (Lisp_Object, Lisp_Object, int);
|
276
|
2363 void long_to_string (char *, long);
|
272
|
2364 void print_internal (Lisp_Object, Lisp_Object, int);
|
|
2365 void print_symbol (Lisp_Object, Lisp_Object, int);
|
|
2366 void print_float (Lisp_Object, Lisp_Object, int);
|
|
2367 void print_compiled_function (Lisp_Object, Lisp_Object, int);
|
|
2368 extern int print_escape_newlines;
|
|
2369 extern int print_readably;
|
|
2370 Lisp_Object internal_with_output_to_temp_buffer (CONST char *,
|
|
2371 Lisp_Object (*) (Lisp_Object),
|
|
2372 Lisp_Object, Lisp_Object);
|
|
2373 void float_to_string (char *, double);
|
|
2374 void internal_object_printer (Lisp_Object, Lisp_Object, int);
|
|
2375
|
|
2376 /* Defined in profile.c */
|
|
2377 void mark_profiling_info (void (*) (Lisp_Object));
|
|
2378 void profile_increase_call_count (Lisp_Object);
|
|
2379 extern int profiling_active;
|
|
2380 extern int profiling_redisplay_flag;
|
|
2381
|
|
2382 /* Defined in rangetab.c */
|
|
2383 void put_range_table (Lisp_Object, EMACS_INT, EMACS_INT, Lisp_Object);
|
|
2384 int unified_range_table_bytes_needed (Lisp_Object);
|
|
2385 int unified_range_table_bytes_used (void *);
|
|
2386 void unified_range_table_copy_data (Lisp_Object, void *);
|
|
2387 Lisp_Object unified_range_table_lookup (void *, EMACS_INT, Lisp_Object);
|
|
2388 int unified_range_table_nentries (void *);
|
|
2389 void unified_range_table_get_range (void *, int, EMACS_INT *, EMACS_INT *,
|
|
2390 Lisp_Object *);
|
|
2391
|
|
2392 /* Defined in search.c */
|
|
2393 struct re_pattern_buffer;
|
|
2394 struct re_registers;
|
|
2395 Bufpos scan_buffer (struct buffer *, Emchar, Bufpos, Bufpos, int, int *, int);
|
|
2396 Bufpos find_next_newline (struct buffer *, Bufpos, int);
|
|
2397 Bufpos find_next_newline_no_quit (struct buffer *, Bufpos, int);
|
|
2398 Bytind bi_find_next_newline_no_quit (struct buffer *, Bytind, int);
|
|
2399 Bufpos find_before_next_newline (struct buffer *, Bufpos, Bufpos, int);
|
|
2400 struct re_pattern_buffer *compile_pattern (Lisp_Object, struct re_registers *,
|
|
2401 char *, int, Error_behavior);
|
|
2402 Bytecount fast_string_match (Lisp_Object, CONST Bufbyte *,
|
|
2403 Lisp_Object, Bytecount,
|
|
2404 Bytecount, int, Error_behavior, int);
|
|
2405 Bytecount fast_lisp_string_match (Lisp_Object, Lisp_Object);
|
|
2406 void restore_match_data (void);
|
|
2407
|
|
2408 /* Defined in signal.c */
|
|
2409 void init_interrupts_late (void);
|
|
2410 extern int dont_check_for_quit;
|
|
2411 void begin_dont_check_for_quit (void);
|
|
2412 void emacs_sleep (int);
|
|
2413
|
|
2414 /* Defined in sound.c */
|
|
2415 void init_device_sound (struct device *);
|
|
2416
|
|
2417 /* Defined in specifier.c */
|
|
2418 Lisp_Object specifier_instance (Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2419 Error_behavior, int, int, Lisp_Object);
|
|
2420 Lisp_Object specifier_instance_no_quit (Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2421 Error_behavior, int, Lisp_Object);
|
|
2422
|
|
2423 /* Defined in symbols.c */
|
|
2424 int hash_string (CONST Bufbyte *, Bytecount);
|
|
2425 Lisp_Object intern (CONST char *);
|
|
2426 Lisp_Object oblookup (Lisp_Object, CONST Bufbyte *, Bytecount);
|
|
2427 void map_obarray (Lisp_Object, int (*) (Lisp_Object, void *), void *);
|
|
2428 Lisp_Object indirect_function (Lisp_Object, int);
|
|
2429 Lisp_Object symbol_value_in_buffer (Lisp_Object, Lisp_Object);
|
|
2430 void kill_buffer_local_variables (struct buffer *);
|
|
2431 int symbol_value_buffer_local_info (Lisp_Object, struct buffer *);
|
|
2432 Lisp_Object find_symbol_value (Lisp_Object);
|
|
2433 Lisp_Object find_symbol_value_quickly (Lisp_Object, int);
|
|
2434 Lisp_Object top_level_value (Lisp_Object);
|
|
2435
|
|
2436 /* Defined in syntax.c */
|
|
2437 int scan_words (struct buffer *, int, int);
|
|
2438
|
|
2439 /* Defined in undo.c */
|
|
2440 Lisp_Object truncate_undo_list (Lisp_Object, int, int);
|
|
2441 void record_extent (Lisp_Object, int);
|
|
2442 void record_insert (struct buffer *, Bufpos, Charcount);
|
|
2443 void record_delete (struct buffer *, Bufpos, Charcount);
|
|
2444 void record_change (struct buffer *, Bufpos, Charcount);
|
|
2445
|
|
2446 /* Defined in unex*.c */
|
|
2447 int unexec (char *, char *, uintptr_t, uintptr_t, uintptr_t);
|
|
2448 #ifdef RUN_TIME_REMAP
|
|
2449 int run_time_remap (char *);
|
|
2450 #endif
|
|
2451
|
|
2452 /* Defined in vm-limit.c */
|
|
2453 void memory_warnings (void *, void (*) (CONST char *));
|
|
2454
|
|
2455 /* Defined in window.c */
|
|
2456 Lisp_Object save_window_excursion_unwind (Lisp_Object);
|
|
2457 Lisp_Object display_buffer (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2458
|
|
2459 /* The following were machine generated 19980312 */
|
|
2460
|
|
2461
|
|
2462 EXFUN (Faccept_process_output, 3);
|
|
2463 EXFUN (Fadd1, 1);
|
|
2464 EXFUN (Fadd_spec_to_specifier, 5);
|
|
2465 EXFUN (Fadd_timeout, 4);
|
|
2466 EXFUN (Fappend, MANY);
|
|
2467 EXFUN (Fapply, MANY);
|
|
2468 EXFUN (Faref, 2);
|
|
2469 EXFUN (Faset, 3);
|
|
2470 EXFUN (Fassoc, 2);
|
|
2471 EXFUN (Fassq, 2);
|
|
2472 EXFUN (Fbacktrace, 2);
|
|
2473 EXFUN (Fbeginning_of_line, 2);
|
|
2474 EXFUN (Fbobp, 1);
|
|
2475 EXFUN (Fbolp, 1);
|
|
2476 EXFUN (Fboundp, 1);
|
|
2477 EXFUN (Fbuffer_substring, 3);
|
|
2478 EXFUN (Fbuilt_in_variable_type, 1);
|
|
2479 EXFUN (Fbyte_code, 3);
|
|
2480 EXFUN (Fcall_interactively, 3);
|
|
2481 EXFUN (Fcanonicalize_lax_plist, 2);
|
|
2482 EXFUN (Fcanonicalize_plist, 2);
|
|
2483 EXFUN (Fcar, 1);
|
|
2484 EXFUN (Fcar_safe, 1);
|
|
2485 EXFUN (Fcdr, 1);
|
|
2486 EXFUN (Fchar_after, 2);
|
|
2487 EXFUN (Fchar_to_string, 1);
|
|
2488 EXFUN (Fcheck_valid_plist, 1);
|
|
2489 EXFUN (Fclear_range_table, 1);
|
|
2490 EXFUN (Fclrhash, 1);
|
|
2491 EXFUN (Fcoding_category_list, 0);
|
|
2492 EXFUN (Fcoding_category_system, 1);
|
|
2493 EXFUN (Fcoding_priority_list, 0);
|
|
2494 EXFUN (Fcoding_system_charset, 2);
|
|
2495 EXFUN (Fcoding_system_doc_string, 1);
|
|
2496 EXFUN (Fcoding_system_list, 0);
|
|
2497 EXFUN (Fcoding_system_name, 1);
|
|
2498 EXFUN (Fcoding_system_p, 1);
|
|
2499 EXFUN (Fcoding_system_property, 2);
|
|
2500 EXFUN (Fcoding_system_type, 1);
|
|
2501 EXFUN (Fcommand_execute, 3);
|
|
2502 EXFUN (Fcommandp, 1);
|
|
2503 EXFUN (Fcompiled_function_domain, 1);
|
|
2504 EXFUN (Fconcat, MANY);
|
|
2505 EXFUN (Fcons, 2);
|
|
2506 EXFUN (Fcopy_alist, 1);
|
|
2507 EXFUN (Fcopy_coding_system, 2);
|
|
2508 EXFUN (Fcopy_event, 2);
|
|
2509 EXFUN (Fcopy_marker, 2);
|
|
2510 EXFUN (Fcopy_sequence, 1);
|
|
2511 EXFUN (Fcopy_tree, 2);
|
|
2512 EXFUN (Fcurrent_window_configuration, 1);
|
|
2513 EXFUN (Fdecode_big5_char, 1);
|
|
2514 EXFUN (Fdecode_coding_region, 4);
|
|
2515 EXFUN (Fdecode_shift_jis_char, 1);
|
|
2516 EXFUN (Fdefault_boundp, 1);
|
|
2517 EXFUN (Fdefault_value, 1);
|
|
2518 EXFUN (Fdefine_key, 3);
|
|
2519 EXFUN (Fdelete_region, 3);
|
|
2520 EXFUN (Fdelq, 2);
|
|
2521 EXFUN (Fdestructive_alist_to_plist, 1);
|
|
2522 EXFUN (Fdetect_coding_region, 3);
|
|
2523 EXFUN (Fdgettext, 2);
|
|
2524 EXFUN (Fding, 3);
|
|
2525 EXFUN (Fdirectory_file_name, 1);
|
|
2526 EXFUN (Fdisable_timeout, 1);
|
|
2527 EXFUN (Fdiscard_input, 0);
|
|
2528 EXFUN (Fdispatch_event, 1);
|
|
2529 EXFUN (Fdisplay_error, 2);
|
|
2530 EXFUN (Fdo_auto_save, 2);
|
|
2531 EXFUN (Fdowncase, 2);
|
|
2532 EXFUN (Felt, 2);
|
|
2533 EXFUN (Fencode_big5_char, 1);
|
|
2534 EXFUN (Fencode_coding_region, 4);
|
|
2535 EXFUN (Fencode_shift_jis_char, 1);
|
|
2536 EXFUN (Fend_of_line, 2);
|
|
2537 EXFUN (Fenqueue_eval_event, 2);
|
|
2538 EXFUN (Feobp, 1);
|
|
2539 EXFUN (Feolp, 1);
|
|
2540 EXFUN (Fequal, 2);
|
|
2541 EXFUN (Ferror_message_string, 1);
|
|
2542 EXFUN (Feval, 1);
|
|
2543 EXFUN (Fevent_to_character, 4);
|
|
2544 EXFUN (Fexecute_kbd_macro, 2);
|
|
2545 EXFUN (Fexpand_abbrev, 0);
|
|
2546 EXFUN (Fexpand_file_name, 2);
|
|
2547 EXFUN (Fextent_at, 5);
|
|
2548 EXFUN (Fextent_property, 3);
|
|
2549 EXFUN (Ffboundp, 1);
|
|
2550 EXFUN (Ffile_accessible_directory_p, 1);
|
|
2551 EXFUN (Ffile_directory_p, 1);
|
|
2552 EXFUN (Ffile_executable_p, 1);
|
|
2553 EXFUN (Ffile_exists_p, 1);
|
|
2554 EXFUN (Ffile_name_absolute_p, 1);
|
|
2555 EXFUN (Ffile_name_as_directory, 1);
|
|
2556 EXFUN (Ffile_name_directory, 1);
|
|
2557 EXFUN (Ffile_name_nondirectory, 1);
|
|
2558 EXFUN (Ffile_readable_p, 1);
|
|
2559 EXFUN (Ffile_symlink_p, 1);
|
|
2560 EXFUN (Ffile_truename, 2);
|
|
2561 EXFUN (Ffind_coding_system, 1);
|
|
2562 EXFUN (Ffind_file_name_handler, 2);
|
|
2563 EXFUN (Ffollowing_char, 1);
|
|
2564 EXFUN (Fformat, MANY);
|
|
2565 EXFUN (Fforward_char, 2);
|
|
2566 EXFUN (Fforward_line, 2);
|
|
2567 EXFUN (Ffset, 2);
|
|
2568 EXFUN (Ffuncall, MANY);
|
280
|
2569 EXFUN (Fgeq, MANY);
|
272
|
2570 EXFUN (Fget, 3);
|
|
2571 EXFUN (Fget_buffer_process, 1);
|
|
2572 EXFUN (Fget_coding_system, 1);
|
|
2573 EXFUN (Fget_process, 1);
|
|
2574 EXFUN (Fget_range_table, 3);
|
|
2575 EXFUN (Fgethash, 3);
|
|
2576 EXFUN (Fgettext, 1);
|
|
2577 EXFUN (Fgoto_char, 2);
|
280
|
2578 EXFUN (Fgtr, MANY);
|
272
|
2579 EXFUN (Fhashtablep, 1);
|
|
2580 EXFUN (Findent_to, 3);
|
|
2581 EXFUN (Findirect_function, 1);
|
|
2582 EXFUN (Finsert, MANY);
|
|
2583 EXFUN (Finsert_buffer_substring, 3);
|
|
2584 EXFUN (Finsert_char, 4);
|
|
2585 EXFUN (Finsert_file_contents_internal, 7);
|
|
2586 EXFUN (Finteractive_p, 0);
|
|
2587 EXFUN (Fintern, 2);
|
|
2588 EXFUN (Fintern_soft, 2);
|
|
2589 EXFUN (Fkey_description, 1);
|
|
2590 EXFUN (Fkill_emacs, 1);
|
|
2591 EXFUN (Fkill_local_variable, 1);
|
|
2592 EXFUN (Flax_plist_get, 3);
|
|
2593 EXFUN (Flax_plist_remprop, 2);
|
|
2594 EXFUN (Flength, 1);
|
280
|
2595 EXFUN (Fleq, MANY);
|
272
|
2596 EXFUN (Flist, MANY);
|
|
2597 EXFUN (Flistp, 1);
|
280
|
2598 EXFUN (Flss, MANY);
|
272
|
2599 EXFUN (Fmake_byte_code, MANY);
|
|
2600 EXFUN (Fmake_coding_system, 4);
|
|
2601 EXFUN (Fmake_glyph_internal, 1);
|
|
2602 EXFUN (Fmake_hashtable, 2);
|
|
2603 EXFUN (Fmake_list, 2);
|
|
2604 EXFUN (Fmake_marker, 0);
|
|
2605 EXFUN (Fmake_range_table, 0);
|
|
2606 EXFUN (Fmake_sparse_keymap, 1);
|
|
2607 EXFUN (Fmake_string, 2);
|
|
2608 EXFUN (Fmake_symbol, 1);
|
|
2609 EXFUN (Fmake_vector, 2);
|
|
2610 EXFUN (Fmapcar, 2);
|
|
2611 EXFUN (Fmarker_buffer, 1);
|
|
2612 EXFUN (Fmarker_position, 1);
|
|
2613 EXFUN (Fmatch_beginning, 1);
|
|
2614 EXFUN (Fmatch_end, 1);
|
|
2615 EXFUN (Fmax, MANY);
|
|
2616 EXFUN (Fmember, 2);
|
|
2617 EXFUN (Fmemq, 2);
|
|
2618 EXFUN (Fmin, MANY);
|
|
2619 EXFUN (Fminus, MANY);
|
|
2620 EXFUN (Fnarrow_to_region, 3);
|
|
2621 EXFUN (Fnconc, MANY);
|
|
2622 EXFUN (Fnext_event, 2);
|
|
2623 EXFUN (Fnreverse, 1);
|
|
2624 EXFUN (Fnthcdr, 2);
|
|
2625 EXFUN (Fnumber_to_string, 1);
|
|
2626 EXFUN (Fold_assq, 2);
|
|
2627 EXFUN (Fold_equal, 2);
|
|
2628 EXFUN (Fold_member, 2);
|
|
2629 EXFUN (Fold_memq, 2);
|
|
2630 EXFUN (Fplist_get, 3);
|
|
2631 EXFUN (Fplist_put, 3);
|
|
2632 EXFUN (Fplus, MANY);
|
|
2633 EXFUN (Fpoint, 1);
|
|
2634 EXFUN (Fpoint_marker, 2);
|
|
2635 EXFUN (Fpoint_max, 1);
|
|
2636 EXFUN (Fpoint_min, 1);
|
|
2637 EXFUN (Fpreceding_char, 1);
|
|
2638 EXFUN (Fprefix_numeric_value, 1);
|
|
2639 EXFUN (Fprin1, 2);
|
|
2640 EXFUN (Fprin1_to_string, 2);
|
|
2641 EXFUN (Fprinc, 2);
|
|
2642 EXFUN (Fprint, 2);
|
|
2643 EXFUN (Fprocess_status, 1);
|
|
2644 EXFUN (Fprogn, UNEVALLED);
|
|
2645 EXFUN (Fprovide, 1);
|
|
2646 EXFUN (Fpurecopy, 1);
|
|
2647 EXFUN (Fput, 3);
|
|
2648 EXFUN (Fput_range_table, 4);
|
|
2649 EXFUN (Fput_text_property, 5);
|
|
2650 EXFUN (Fputhash, 3);
|
|
2651 EXFUN (Fquo, MANY);
|
|
2652 EXFUN (Frassq, 2);
|
|
2653 EXFUN (Fread, 1);
|
|
2654 EXFUN (Fread_key_sequence, 3);
|
|
2655 EXFUN (Freally_free, 1);
|
|
2656 EXFUN (Frem, 2);
|
|
2657 EXFUN (Fremassq, 2);
|
|
2658 EXFUN (Fselected_frame, 1);
|
|
2659 EXFUN (Fset, 2);
|
|
2660 EXFUN (Fset_coding_category_system, 2);
|
|
2661 EXFUN (Fset_coding_priority_list, 1);
|
|
2662 EXFUN (Fset_default, 2);
|
|
2663 EXFUN (Fset_marker, 3);
|
|
2664 EXFUN (Fset_standard_case_table, 1);
|
|
2665 EXFUN (Fsetcar, 2);
|
|
2666 EXFUN (Fsetcdr, 2);
|
|
2667 EXFUN (Fsignal, 2);
|
|
2668 EXFUN (Fsit_for, 2);
|
|
2669 EXFUN (Fskip_chars_backward, 3);
|
|
2670 EXFUN (Fskip_chars_forward, 3);
|
|
2671 EXFUN (Fsleep_for, 1);
|
|
2672 EXFUN (Fsort, 2);
|
|
2673 EXFUN (Fspecifier_spec_list, 4);
|
|
2674 EXFUN (Fstring_equal, 2);
|
|
2675 EXFUN (Fstring_lessp, 2);
|
|
2676 EXFUN (Fstring_match, 4);
|
|
2677 EXFUN (Fsub1, 1);
|
|
2678 EXFUN (Fsubr_max_args, 1);
|
|
2679 EXFUN (Fsubr_min_args, 1);
|
|
2680 EXFUN (Fsubsidiary_coding_system, 2);
|
|
2681 EXFUN (Fsubstitute_command_keys, 1);
|
|
2682 EXFUN (Fsubstitute_in_file_name, 1);
|
|
2683 EXFUN (Fsubstring, 3);
|
|
2684 EXFUN (Fsymbol_function, 1);
|
|
2685 EXFUN (Fsymbol_name, 1);
|
|
2686 EXFUN (Fsymbol_plist, 1);
|
|
2687 EXFUN (Fsymbol_value, 1);
|
|
2688 EXFUN (Fthrow, 2);
|
|
2689 EXFUN (Ftimes, MANY);
|
|
2690 EXFUN (Ftruncate, 1);
|
|
2691 EXFUN (Fundo_boundary, 0);
|
|
2692 EXFUN (Funhandled_file_name_directory, 1);
|
|
2693 EXFUN (Funlock_buffer, 0);
|
|
2694 EXFUN (Fupcase, 2);
|
|
2695 EXFUN (Fupcase_initials, 2);
|
|
2696 EXFUN (Fupcase_initials_region, 3);
|
|
2697 EXFUN (Fupcase_region, 3);
|
|
2698 EXFUN (Fuser_login_name, 1);
|
|
2699 EXFUN (Fvector, MANY);
|
|
2700 EXFUN (Fverify_visited_file_modtime, 1);
|
|
2701 EXFUN (Fvertical_motion, 2);
|
|
2702 EXFUN (Fwiden, 1);
|
|
2703
|
|
2704
|
|
2705 extern Lisp_Object Q_style, Qactually_requested, Qafter, Qall, Qand;
|
|
2706 extern Lisp_Object Qarith_error, Qarrayp, Qassoc, Qat, Qautodetect, Qautoload;
|
|
2707 extern Lisp_Object Qbackground, Qbackground_pixmap, Qbad_variable, Qbefore;
|
|
2708 extern Lisp_Object Qbeginning_of_buffer, Qbig5, Qbinary, Qbitp, Qblinking;
|
|
2709 extern Lisp_Object Qboolean, Qbottom, Qbuffer, Qbuffer_file_coding_system;
|
|
2710 extern Lisp_Object Qbuffer_glyph_p, Qbuffer_live_p, Qbuffer_read_only, Qbutton;
|
|
2711 extern Lisp_Object Qbyte_code, Qcall_interactively, Qcategory;
|
|
2712 extern Lisp_Object Qcategory_designator_p, Qcategory_table_value_p, Qccl, Qcdr;
|
|
2713 extern Lisp_Object Qchannel, Qchar, Qchar_or_string_p, Qcharacter, Qcharacterp;
|
|
2714 extern Lisp_Object Qchars, Qcharset_g0, Qcharset_g1, Qcharset_g2, Qcharset_g3;
|
|
2715 extern Lisp_Object Qcircular_property_list, Qcoding_system_error;
|
|
2716 extern Lisp_Object Qcoding_system_p, Qcolor, Qcolor_pixmap_image_instance_p;
|
|
2717 extern Lisp_Object Qcolumns, Qcommand, Qcommandp, Qcompletion_ignore_case;
|
|
2718 extern Lisp_Object Qconsole, Qconsole_live_p, Qconst_specifier, Qcr, Qcritical;
|
|
2719 extern Lisp_Object Qcrlf, Qctext, Qcurrent_menubar;
|
|
2720 extern Lisp_Object Qcyclic_variable_indirection, Qdata, Qdead, Qdecode;
|
|
2721 extern Lisp_Object Qdefault, Qdefun, Qdelete, Qdelq, Qdevice, Qdevice_live_p;
|
|
2722 extern Lisp_Object Qdim, Qdimension, Qdisabled, Qdisplay, Qdisplay_table;
|
|
2723 extern Lisp_Object Qdnd_data, Qdoc_string, Qdomain_error, Qdynarr_overhead;
|
|
2724 extern Lisp_Object Qempty, Qencode, Qend_of_buffer, Qend_of_file, Qend_open;
|
|
2725 extern Lisp_Object Qeol_cr, Qeol_crlf, Qeol_lf, Qeol_type, Qeq, Qeql, Qequal;
|
|
2726 extern Lisp_Object Qerror, Qerror_conditions, Qerror_message, Qescape_quoted;
|
|
2727 extern Lisp_Object Qeval, Qevent_live_p, Qexit, Qextent_live_p, Qextents;
|
|
2728 extern Lisp_Object Qexternal_debugging_output, Qface, Qfeaturep, Qfile_error;
|
|
2729 extern Lisp_Object Qfont, Qforce_g0_on_output, Qforce_g1_on_output;
|
|
2730 extern Lisp_Object Qforce_g2_on_output, Qforce_g3_on_output, Qforeground;
|
|
2731 extern Lisp_Object Qformat, Qframe, Qframe_live_p, Qfunction, Qgap_overhead;
|
|
2732 extern Lisp_Object Qgeneric, Qgeometry, Qglobal, Qheight, Qhighlight;
|
|
2733 extern Lisp_Object Qicon_glyph_p, Qid, Qidentity, Qimage, Qinfo, Qinherit;
|
|
2734 extern Lisp_Object Qinhibit_quit, Qinhibit_read_only;
|
|
2735 extern Lisp_Object Qinput_charset_conversion, Qinteger;
|
|
2736 extern Lisp_Object Qinteger_char_or_marker_p, Qinteger_or_char_p;
|
|
2737 extern Lisp_Object Qinteger_or_marker_p, Qintegerp, Qinteractive, Qinternal;
|
|
2738 extern Lisp_Object Qinvalid_function, Qinvalid_read_syntax, Qio_error;
|
|
2739 extern Lisp_Object Qiso2022, Qkey, Qkey_assoc, Qkeymap, Qlambda, Qleft, Qlf;
|
|
2740 extern Lisp_Object Qlist, Qlistp, Qload, Qlock_shift, Qmacro, Qmagic;
|
|
2741 extern Lisp_Object Qmalformed_property_list, Qmalloc_overhead, Qmark, Qmarkers;
|
|
2742 extern Lisp_Object Qmax, Qmemory, Qmessage, Qminus, Qmnemonic, Qmodifiers;
|
|
2743 extern Lisp_Object Qmono_pixmap_image_instance_p, Qmotion;
|
|
2744 extern Lisp_Object Qmouse_leave_buffer_hook, Qmswindows, Qname, Qnas, Qnatnump;
|
|
2745 extern Lisp_Object Qnil, Qno_ascii_cntl, Qno_ascii_eol, Qno_catch;
|
|
2746 extern Lisp_Object Qno_conversion, Qno_iso6429, Qnone, Qnot, Qnothing;
|
|
2747 extern Lisp_Object Qnothing_image_instance_p, Qnotice;
|
|
2748 extern Lisp_Object Qnumber_char_or_marker_p, Qnumber_or_marker_p, Qnumberp;
|
|
2749 extern Lisp_Object Qobject, Qold_assoc, Qold_delete, Qold_delq, Qold_rassoc;
|
|
2750 extern Lisp_Object Qold_rassq, Qonly, Qor, Qother, Qoutput_charset_conversion;
|
|
2751 extern Lisp_Object Qoverflow_error, Qpath, Qpoint, Qpointer, Qpointer_glyph_p;
|
|
2752 extern Lisp_Object Qpointer_image_instance_p, Qpost_read_conversion;
|
|
2753 extern Lisp_Object Qpre_write_conversion, Qprint, Qprint_length;
|
|
2754 extern Lisp_Object Qprint_string_length, Qprocess, Qprogn, Qprovide, Qquit;
|
|
2755 extern Lisp_Object Qquote, Qrange_error, Qrassoc, Qrassq, Qread_char;
|
|
2756 extern Lisp_Object Qread_from_minibuffer, Qreally_early_error_handler;
|
|
2757 extern Lisp_Object Qregion_beginning, Qregion_end, Qrequire, Qresource;
|
|
2758 extern Lisp_Object Qreturn, Qreverse, Qright, Qrun_hooks, Qsans_modifiers;
|
|
2759 extern Lisp_Object Qsave_buffers_kill_emacs, Qsearch, Qself_insert_command;
|
|
2760 extern Lisp_Object Qsequencep, Qsetting_constant, Qseven, Qshift_jis, Qshort;
|
|
2761 extern Lisp_Object Qsignal, Qsimple, Qsingularity_error, Qsize, Qspace;
|
|
2762 extern Lisp_Object Qspecifier, Qstandard_input, Qstandard_output, Qstart_open;
|
|
2763 extern Lisp_Object Qstream, Qstring, Qstring_lessp;
|
|
2764 extern Lisp_Object Qsubwindow_image_instance_p, Qsymbol, Qsyntax, Qt, Qtest;
|
|
2765 extern Lisp_Object Qtext, Qtext_image_instance_p, Qtimeout, Qtimestamp;
|
|
2766 extern Lisp_Object Qtoolbar, Qtop, Qtop_level, Qtrue_list_p, Qtty, Qtype;
|
|
2767 extern Lisp_Object Qunbound, Qundecided, Qundefined, Qunderflow_error;
|
|
2768 extern Lisp_Object Qunderline, Qunimplemented, Qvalue_assoc, Qvalues;
|
|
2769 extern Lisp_Object Qvariable_documentation, Qvariable_domain, Qvector;
|
|
2770 extern Lisp_Object Qvoid_function, Qvoid_variable, Qwarning, Qwidth, Qwindow;
|
|
2771 extern Lisp_Object Qwindow_live_p, Qwindow_system, Qwrong_number_of_arguments;
|
|
2772 extern Lisp_Object Qwrong_type_argument, Qx, Qy, Qyes_or_no_p;
|
|
2773 extern Lisp_Object Vactivate_menubar_hook, Vascii_canon_table;
|
|
2774 extern Lisp_Object Vascii_downcase_table, Vascii_eqv_table;
|
|
2775 extern Lisp_Object Vascii_upcase_table, Vautoload_queue, Vbinary_process_input;
|
|
2776 extern Lisp_Object Vbinary_process_output, Vblank_menubar;
|
|
2777 extern Lisp_Object Vcharset_ascii, Vcharset_composite, Vcharset_control_1;
|
|
2778 extern Lisp_Object Vcoding_system_for_read, Vcoding_system_for_write;
|
|
2779 extern Lisp_Object Vcoding_system_hashtable, Vcommand_history;
|
|
2780 extern Lisp_Object Vcommand_line_args, Vconfigure_info_directory;
|
|
2781 extern Lisp_Object Vconsole_list, Vcontrolling_terminal;
|
|
2782 extern Lisp_Object Vcurrent_compiled_function_annotation, Vcurrent_load_list;
|
|
2783 extern Lisp_Object Vcurrent_mouse_event, Vcurrent_prefix_arg, Vdata_directory;
|
|
2784 extern Lisp_Object Vdisabled_command_hook, Vdoc_directory, Vinternal_doc_file_name;
|
|
2785 extern Lisp_Object Vecho_area_buffer, Vemacs_major_version;
|
|
2786 extern Lisp_Object Vemacs_minor_version, Vexec_directory, Vexec_path;
|
|
2787 extern Lisp_Object Vexecuting_macro, Vfeatures, Vfile_domain;
|
|
2788 extern Lisp_Object Vfile_name_coding_system, Vinhibit_quit;
|
|
2789 extern Lisp_Object Vinvocation_directory, Vinvocation_name;
|
|
2790 extern Lisp_Object Vkeyboard_coding_system, Vlast_command, Vlast_command_char;
|
|
2791 extern Lisp_Object Vlast_command_event, Vlast_input_event;
|
|
2792 extern Lisp_Object Vload_file_name_internal;
|
|
2793 extern Lisp_Object Vload_file_name_internal_the_purecopy, Vload_history;
|
|
2794 extern Lisp_Object Vload_path, Vmark_even_if_inactive, Vmenubar_configuration;
|
|
2795 extern Lisp_Object Vminibuf_preprompt, Vminibuf_prompt, Vminibuffer_zero;
|
|
2796 extern Lisp_Object Vmirror_ascii_canon_table, Vmirror_ascii_downcase_table;
|
|
2797 extern Lisp_Object Vmirror_ascii_eqv_table, Vmirror_ascii_upcase_table;
|
|
2798 extern Lisp_Object Vmswindows_downcase_file_names;
|
|
2799 extern Lisp_Object Vmswindows_get_true_file_attributes, Vobarray;
|
|
2800 extern Lisp_Object Vprint_length, Vprint_level, Vprocess_environment;
|
|
2801 extern Lisp_Object Vpure_uninterned_symbol_table, Vquit_flag;
|
|
2802 extern Lisp_Object Vrecent_keys_ring, Vshell_file_name, Vsite_directory;
|
|
2803 extern Lisp_Object Vstandard_input, Vstandard_output, Vstdio_str;
|
|
2804 extern Lisp_Object Vsynchronous_sounds, Vsystem_name, Vterminal_coding_system;
|
|
2805 extern Lisp_Object Vthis_command_keys, Vunread_command_event;
|
|
2806 extern Lisp_Object Vwin32_generate_fake_inodes, Vwin32_pipe_read_delay;
|
|
2807 extern Lisp_Object Vx_initial_argv_list;
|
|
2808
|
0
|
2809
|
|
2810 #endif /* _XEMACS_LISP_H_ */
|