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