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