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