annotate src/lisp.h @ 420:41dbb7a9d5f2 r21-2-18

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