428
|
1 /* Fundamental definitions for XEmacs Lisp interpreter.
|
|
2 Copyright (C) 1985-1987, 1992-1995 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1993-1996 Richard Mlynarik.
|
771
|
4 Copyright (C) 1995, 1996, 2000, 2001, 2002 Ben Wing.
|
428
|
5
|
|
6 This file is part of XEmacs.
|
|
7
|
|
8 XEmacs is free software; you can redistribute it and/or modify it
|
|
9 under the terms of the GNU General Public License as published by the
|
|
10 Free Software Foundation; either version 2, or (at your option) any
|
|
11 later version.
|
|
12
|
|
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
16 for more details.
|
|
17
|
|
18 You should have received a copy of the GNU General Public License
|
|
19 along with XEmacs; see the file COPYING. If not, write to
|
|
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
21 Boston, MA 02111-1307, USA. */
|
|
22
|
|
23 /* Synched up with: FSF 19.30. */
|
|
24
|
440
|
25 #ifndef INCLUDED_lisp_h_
|
|
26 #define INCLUDED_lisp_h_
|
428
|
27
|
|
28 /************************************************************************/
|
|
29 /* general definitions */
|
|
30 /************************************************************************/
|
|
31
|
442
|
32 /* ------------------------ include files ------------------- */
|
|
33
|
428
|
34 /* We include the following generally useful header files so that you
|
|
35 don't have to worry about prototypes when using the standard C
|
|
36 library functions and macros. These files shouldn't be excessively
|
|
37 large so they shouldn't cause that much of a slowdown. */
|
|
38
|
|
39 #include <stdlib.h>
|
|
40 #include <string.h> /* primarily for memcpy, etc. */
|
|
41 #include <stdio.h> /* NULL, etc. */
|
|
42 #include <ctype.h>
|
|
43 #include <stdarg.h>
|
|
44 #include <stddef.h> /* offsetof */
|
|
45 #include <sys/types.h>
|
442
|
46 #include <limits.h>
|
|
47
|
647
|
48 /* ------------------------ definition of EMACS_INT ------------------- */
|
|
49
|
|
50 /* EMACS_INT is the underlying integral type into which a Lisp_Object must fit.
|
|
51 In particular, it must be large enough to contain a pointer.
|
|
52 config.h can override this, e.g. to use `long long' for bigger lisp ints.
|
|
53
|
|
54 #### In point of fact, it would NOT be a good idea for config.h to mess
|
|
55 with EMACS_INT. A lot of code makes the basic assumption that EMACS_INT
|
|
56 is the size of a pointer. */
|
|
57
|
|
58 #ifndef SIZEOF_EMACS_INT
|
|
59 # define SIZEOF_EMACS_INT SIZEOF_VOID_P
|
|
60 #endif
|
|
61
|
|
62 #ifndef EMACS_INT
|
|
63 # if SIZEOF_EMACS_INT == SIZEOF_LONG
|
|
64 # define EMACS_INT long
|
|
65 # elif SIZEOF_EMACS_INT == SIZEOF_INT
|
|
66 # define EMACS_INT int
|
|
67 # elif SIZEOF_EMACS_INT == SIZEOF_LONG_LONG
|
|
68 # define EMACS_INT long long
|
|
69 # else
|
|
70 # error Unable to determine suitable type for EMACS_INT
|
|
71 # endif
|
|
72 #endif
|
|
73
|
|
74 #ifndef EMACS_UINT
|
|
75 # define EMACS_UINT unsigned EMACS_INT
|
|
76 #endif
|
|
77
|
|
78 #define BITS_PER_EMACS_INT (SIZEOF_EMACS_INT * BITS_PER_CHAR)
|
|
79
|
|
80 /* ------------------------ basic char/int typedefs ------------------- */
|
|
81
|
|
82 /* The definitions we put here use typedefs to attribute specific meaning
|
|
83 to types that by themselves are pretty general. Stuff pointed to by a
|
|
84 char * or unsigned char * will nearly always be one of four types:
|
|
85 a) pointer to internally-formatted text; b) pointer to text in some
|
|
86 external format, which can be defined as all formats other than the
|
|
87 internal one; c) pure ASCII text; d) binary data that is not meant to
|
|
88 be interpreted as text. [A fifth possible type "e) a general pointer
|
|
89 to memory" should be replaced with void *.] Using these more specific
|
|
90 types rather than the general ones helps avoid the confusions that
|
|
91 occur when the semantics of a char * argument being studied are unclear.
|
|
92
|
|
93 Note that these typedefs are purely for documentation purposes; from
|
|
94 the C code's perspective, they are exactly equivalent to `char *',
|
|
95 `unsigned char *', etc., so you can freely use them with library
|
|
96 functions declared as such. */
|
|
97
|
|
98 /* The data representing the text in a buffer is logically a set
|
665
|
99 of Intbytes, declared as follows. */
|
|
100
|
|
101 typedef unsigned char Intbyte;
|
647
|
102
|
|
103 /* The following should be used when you are working with internal data
|
|
104 but for whatever reason need to have it declared a "char *". Examples
|
|
105 are function arguments whose values are most commonly literal strings,
|
|
106 or where you have to apply a stdlib string function to internal data.
|
|
107
|
665
|
108 In general, you should avoid this where possible and use Intbyte instead,
|
647
|
109 for consistency. For example, the new Mule workspace contains
|
665
|
110 Intbyte versions of the stdlib string functions. */
|
|
111
|
|
112 typedef char CIntbyte;
|
647
|
113
|
|
114 /* The data representing a string in "external" format (binary or any
|
|
115 external encoding) is logically a set of Extbytes, declared as
|
|
116 follows. Extbyte is guaranteed to be just a char, so for example
|
|
117 strlen (Extbyte *) is OK. Extbyte is only a documentation device
|
|
118 for referring to external text. */
|
|
119
|
|
120 typedef char Extbyte;
|
771
|
121 typedef unsigned char UExtbyte;
|
647
|
122
|
|
123 /* A byte in a string in binary format: */
|
|
124 typedef char Char_Binary;
|
|
125 typedef signed char SChar_Binary;
|
|
126 typedef unsigned char UChar_Binary;
|
|
127
|
|
128 /* A byte in a string in entirely US-ASCII format: (Nothing outside
|
|
129 the range 00 - 7F) */
|
|
130
|
|
131 typedef char Char_ASCII;
|
|
132 typedef unsigned char UChar_ASCII;
|
|
133
|
|
134
|
|
135 /* To the user, a buffer is made up of characters, declared as follows.
|
665
|
136 In the non-Mule world, characters and Intbytes are equivalent.
|
647
|
137 In the Mule world, a character requires (typically) 1 to 4
|
665
|
138 Intbytes for its representation in a buffer. */
|
647
|
139
|
|
140 typedef int Emchar;
|
|
141
|
|
142 /* Different ways of referring to a position in a buffer. We use
|
|
143 the typedefs in preference to 'EMACS_INT' to make it clearer what
|
|
144 sort of position is being used. See extents.c for a description
|
|
145 of the different positions. We put them here instead of in
|
|
146 buffer.h (where they rightfully belong) to avoid syntax errors
|
|
147 in function prototypes. */
|
|
148
|
665
|
149 typedef EMACS_INT Charbpos;
|
|
150 typedef EMACS_INT Bytebpos;
|
|
151 typedef EMACS_INT Membpos;
|
647
|
152
|
|
153 /* Counts of bytes or chars */
|
|
154 typedef EMACS_INT Bytecount;
|
|
155 typedef EMACS_INT Charcount;
|
665
|
156 /* Counts of elements */
|
|
157 typedef EMACS_INT Elemcount;
|
|
158 /* Hash codes */
|
|
159 typedef unsigned long Hashcode;
|
647
|
160
|
771
|
161 #ifdef HAVE_INTTYPES_H
|
|
162 #include <inttypes.h>
|
|
163 #elif SIZEOF_VOID_P == SIZEOF_INT
|
|
164 typedef int intptr_t;
|
|
165 typedef unsigned int uintptr_t;
|
|
166 #elif SIZEOF_VOID_P == SIZEOF_LONG
|
|
167 typedef long intptr_t;
|
|
168 typedef unsigned long uintptr_t;
|
|
169 #elif defined(SIZEOF_LONG_LONG) && SIZEOF_VOID_P == SIZEOF_LONG_LONG
|
|
170 typedef long long intptr_t;
|
|
171 typedef unsigned long long uintptr_t;
|
|
172 #else
|
|
173 /* Just pray. May break, may not. */
|
|
174 typedef long intptr_t;
|
|
175 typedef unsigned long uintptr_t;
|
|
176 #endif
|
|
177
|
442
|
178 /* ------------------------ dynamic arrays ------------------- */
|
428
|
179
|
|
180 #define Dynarr_declare(type) \
|
|
181 type *base; \
|
|
182 int elsize; \
|
|
183 int cur; \
|
|
184 int largest; \
|
|
185 int max
|
|
186
|
|
187 typedef struct dynarr
|
|
188 {
|
|
189 Dynarr_declare (void);
|
|
190 } Dynarr;
|
|
191
|
|
192 void *Dynarr_newf (int elsize);
|
|
193 void Dynarr_resize (void *dy, int size);
|
442
|
194 void Dynarr_insert_many (void *d, const void *el, int len, int start);
|
428
|
195 void Dynarr_delete_many (void *d, int start, int len);
|
|
196 void Dynarr_free (void *d);
|
|
197
|
440
|
198 #define Dynarr_new(type) ((type##_dynarr *) Dynarr_newf (sizeof (type)))
|
442
|
199 #define Dynarr_new2(dynarr_type, type) \
|
|
200 ((dynarr_type *) Dynarr_newf (sizeof (type)))
|
428
|
201 #define Dynarr_at(d, pos) ((d)->base[pos])
|
|
202 #define Dynarr_atp(d, pos) (&Dynarr_at (d, pos))
|
452
|
203 #define Dynarr_begin(d) Dynarr_atp (d, 0)
|
|
204 #define Dynarr_end(d) Dynarr_atp (d, Dynarr_length (d))
|
|
205 #define Dynarr_sizeof(d) ((d)->cur * (d)->elsize)
|
428
|
206 #define Dynarr_length(d) ((d)->cur)
|
|
207 #define Dynarr_largest(d) ((d)->largest)
|
|
208 #define Dynarr_reset(d) ((d)->cur = 0)
|
|
209 #define Dynarr_add_many(d, el, len) Dynarr_insert_many (d, el, len, (d)->cur)
|
|
210 #define Dynarr_insert_many_at_start(d, el, len) \
|
|
211 Dynarr_insert_many (d, el, len, 0)
|
440
|
212 #define Dynarr_add_literal_string(d, s) Dynarr_add_many (d, s, sizeof (s) - 1)
|
771
|
213 #define Dynarr_add_lisp_string(d, s, codesys) \
|
|
214 do { \
|
|
215 Lisp_Object dyna_ls_s = (s); \
|
|
216 Lisp_Object dyna_ls_cs = (codesys); \
|
|
217 Extbyte *dyna_ls_eb; \
|
|
218 Bytecount dyna_ls_bc; \
|
|
219 \
|
|
220 TO_EXTERNAL_FORMAT (LISP_STRING, dyna_ls_s, \
|
|
221 ALLOCA, (dyna_ls_eb, dyna_ls_bc), \
|
|
222 dyna_ls_cs); \
|
|
223 Dynarr_add_many (d, dyna_ls_eb, dyna_ls_bc); \
|
428
|
224 } while (0)
|
|
225
|
|
226 #define Dynarr_add(d, el) ( \
|
|
227 (d)->cur >= (d)->max ? Dynarr_resize ((d), (d)->cur+1) : (void) 0, \
|
|
228 ((d)->base)[(d)->cur++] = (el), \
|
|
229 (d)->cur > (d)->largest ? (d)->largest = (d)->cur : (int) 0)
|
|
230
|
|
231 /* The following defines will get you into real trouble if you aren't
|
|
232 careful. But they can save a lot of execution time when used wisely. */
|
|
233 #define Dynarr_increment(d) ((d)->cur++)
|
|
234 #define Dynarr_set_size(d, n) ((d)->cur = n)
|
|
235
|
771
|
236 #define Dynarr_pop(d) \
|
|
237 (assert ((d)->cur > 0), (d)->cur--, Dynarr_at (d, (d)->cur))
|
|
238 #define Dynarr_delete(d, i) Dynarr_delete_many (d, i, len)
|
|
239 #define Dynarr_delete_by_pointer(d, p) \
|
|
240 Dynarr_delete_many (d, (p) - ((d)->base), 1)
|
|
241
|
428
|
242 #ifdef MEMORY_USAGE_STATS
|
|
243 struct overhead_stats;
|
665
|
244 Bytecount Dynarr_memory_usage (void *d, struct overhead_stats *stats);
|
428
|
245 #endif
|
|
246
|
|
247 /* Also define min() and max(). (Some compilers put them in strange
|
|
248 places that won't be referenced by the above include files, such
|
|
249 as 'macros.h' under Solaris.) */
|
|
250
|
|
251 #ifndef min
|
|
252 #define min(a,b) (((a) <= (b)) ? (a) : (b))
|
|
253 #endif
|
|
254 #ifndef max
|
|
255 #define max(a,b) (((a) > (b)) ? (a) : (b))
|
|
256 #endif
|
|
257
|
|
258 /* Memory allocation */
|
442
|
259 void malloc_warning (const char *);
|
665
|
260 void *xmalloc (Bytecount size);
|
|
261 void *xmalloc_and_zero (Bytecount size);
|
|
262 void *xrealloc (void *, Bytecount size);
|
442
|
263 char *xstrdup (const char *);
|
428
|
264 /* generally useful */
|
438
|
265 #define countof(x) ((int) (sizeof(x)/sizeof((x)[0])))
|
428
|
266 #define xnew(type) ((type *) xmalloc (sizeof (type)))
|
|
267 #define xnew_array(type, len) ((type *) xmalloc ((len) * sizeof (type)))
|
|
268 #define xnew_and_zero(type) ((type *) xmalloc_and_zero (sizeof (type)))
|
438
|
269 #define xzero(lvalue) ((void) memset (&(lvalue), '\0', sizeof (lvalue)))
|
428
|
270 #define xnew_array_and_zero(type, len) ((type *) xmalloc_and_zero ((len) * sizeof (type)))
|
|
271 #define XREALLOC_ARRAY(ptr, type, len) ((void) (ptr = (type *) xrealloc (ptr, (len) * sizeof (type))))
|
771
|
272 #define alloca_new(type) ((type *) alloca (sizeof (type)))
|
428
|
273 #define alloca_array(type, len) ((type *) alloca ((len) * sizeof (type)))
|
|
274
|
|
275 /* also generally useful if you want to avoid arbitrary size limits
|
|
276 but don't need a full dynamic array. Assumes that BASEVAR points
|
|
277 to a malloced array of TYPE objects (or possibly a NULL pointer,
|
|
278 if SIZEVAR is 0), with the total size stored in SIZEVAR. This
|
|
279 macro will realloc BASEVAR as necessary so that it can hold at
|
|
280 least NEEDED_SIZE objects. The reallocing is done by doubling,
|
|
281 which ensures constant amortized time per element. */
|
430
|
282 #define DO_REALLOC(basevar, sizevar, needed_size, type) do { \
|
665
|
283 Bytecount do_realloc_needed_size = (needed_size); \
|
430
|
284 if ((sizevar) < do_realloc_needed_size) \
|
|
285 { \
|
|
286 if ((sizevar) < 32) \
|
|
287 (sizevar) = 32; \
|
|
288 while ((sizevar) < do_realloc_needed_size) \
|
|
289 (sizevar) *= 2; \
|
|
290 XREALLOC_ARRAY (basevar, type, (sizevar)); \
|
|
291 } \
|
428
|
292 } while (0)
|
|
293
|
|
294 #ifdef ERROR_CHECK_MALLOC
|
|
295 void xfree_1 (void *);
|
|
296 #define xfree(lvalue) do \
|
|
297 { \
|
|
298 void **xfree_ptr = (void **) &(lvalue); \
|
|
299 xfree_1 (*xfree_ptr); \
|
|
300 *xfree_ptr = (void *) 0xDEADBEEF; \
|
|
301 } while (0)
|
|
302 #else
|
|
303 void xfree (void *);
|
|
304 #endif /* ERROR_CHECK_MALLOC */
|
|
305
|
|
306 #ifndef PRINTF_ARGS
|
|
307 # if defined (__GNUC__) && (__GNUC__ >= 2)
|
|
308 # define PRINTF_ARGS(string_index,first_to_check) \
|
|
309 __attribute__ ((format (printf, string_index, first_to_check)))
|
|
310 # else
|
|
311 # define PRINTF_ARGS(string_index,first_to_check)
|
|
312 # endif /* GNUC */
|
|
313 #endif
|
|
314
|
|
315 #ifndef DOESNT_RETURN
|
|
316 # if defined __GNUC__
|
|
317 # if ((__GNUC__ > 2) || (__GNUC__ == 2) && (__GNUC_MINOR__ >= 5))
|
442
|
318 # define DOESNT_RETURN void
|
428
|
319 # define DECLARE_DOESNT_RETURN(decl) \
|
442
|
320 extern void decl __attribute__ ((noreturn))
|
428
|
321 # define DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS(decl,str,idx) \
|
|
322 /* Should be able to state multiple independent __attribute__s, but \
|
|
323 the losing syntax doesn't work that way, and screws losing cpp */ \
|
442
|
324 extern void decl \
|
428
|
325 __attribute__ ((noreturn, format (printf, str, idx)))
|
|
326 # else
|
|
327 # define DOESNT_RETURN void volatile
|
|
328 # define DECLARE_DOESNT_RETURN(decl) extern void volatile decl
|
|
329 # define DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS(decl,str,idx) \
|
|
330 extern void volatile decl PRINTF_ARGS(str,idx)
|
|
331 # endif /* GNUC 2.5 */
|
|
332 # else
|
|
333 # define DOESNT_RETURN void
|
|
334 # define DECLARE_DOESNT_RETURN(decl) extern void decl
|
|
335 # define DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS(decl,str,idx) \
|
|
336 extern void decl PRINTF_ARGS(str,idx)
|
|
337 # endif /* GNUC */
|
|
338 #endif
|
|
339
|
771
|
340 /* Another try to fix SunPro C compiler warnings */
|
|
341 /* "end-of-loop code not reached" */
|
|
342 /* "statement not reached */
|
|
343 #if defined __SUNPRO_C || defined __USLC__
|
|
344 #define RETURN_SANS_WARNINGS if (1) return
|
|
345 #define RETURN_NOT_REACHED(value)
|
|
346 #else
|
|
347 #define RETURN_SANS_WARNINGS return
|
|
348 #define RETURN_NOT_REACHED(value) return value;
|
|
349 #endif
|
|
350
|
454
|
351 /* No type has a greater alignment requirement than max_align_t.
|
|
352 (except perhaps for types we don't use, like long double) */
|
|
353 typedef union
|
|
354 {
|
|
355 struct { long l; } l;
|
|
356 struct { void *p; } p;
|
|
357 struct { void (*f)(void); } f;
|
|
358 struct { double d; } d;
|
|
359 } max_align_t;
|
|
360
|
771
|
361 /* ALIGNOF returns the required alignment of a type -- i.e. a value such
|
|
362 that data of this type must begin at a memory address which is a
|
|
363 multiple of that value. For simple types, this is often the same size
|
|
364 as the type itself. */
|
|
365
|
428
|
366 #ifndef ALIGNOF
|
|
367 # if defined (__GNUC__) && (__GNUC__ >= 2)
|
454
|
368 /* gcc has an extension that gives us exactly what we want. */
|
|
369 # define ALIGNOF(type) __alignof__ (type)
|
|
370 # elif ! defined (__cplusplus)
|
|
371 /* The following is mostly portable, except that:
|
|
372 - it doesn't work for inside out declarations like void (*) (void).
|
|
373 (so just call ALIGNOF with a typedef'ed name)
|
|
374 - it doesn't work with C++. The C++ committee has decided,
|
|
375 in its infinite wisdom, that:
|
|
376 "Types must be declared in declarations, not in expressions." */
|
|
377 # define ALIGNOF(type) offsetof (struct { char c; type member; }, member)
|
428
|
378 # else
|
456
|
379 /* C++ is annoying, but it has a big bag of tricks.
|
|
380 The following doesn't have the "inside out" declaration bug C does. */
|
458
|
381 template<typename T> struct alignment_trick { char c; T member; };
|
456
|
382 # define ALIGNOF(type) offsetof (alignment_trick<type>, member)
|
428
|
383 # endif
|
454
|
384 #endif /* ALIGNOF */
|
428
|
385
|
771
|
386 /* ALIGN_SIZE returns the smallest size greater than or equal to LEN which
|
|
387 is a multiple of UNIT. This can be used to assure that data that
|
|
388 follows a block of the returned size is of correct alignment for a type
|
|
389 whose alignment (as returned by ALIGNOF) is UNIT (provided that the
|
|
390 block itself is correctly aligned for this type; memory returned by
|
|
391 malloc() is guaranteed to be correctly aligned for all types). */
|
|
392
|
428
|
393 #define ALIGN_SIZE(len, unit) \
|
|
394 ((((len) + (unit) - 1) / (unit)) * (unit))
|
|
395
|
771
|
396 /* MAX_ALIGN_SIZE returns the smallest size greater than or equal to LEN
|
|
397 which guarantees that data following a block of such size is correctly
|
|
398 aligned for all types (provided that the block itself is so aligned,
|
|
399 which is the case for memory returned by malloc()). */
|
|
400
|
|
401 #define MAX_ALIGN_SIZE(len) ALIGN_SIZE (len, ALIGNOF (max_align_t))
|
|
402
|
428
|
403 /* #### Yuck, this is kind of evil */
|
|
404 #define ALIGN_PTR(ptr, unit) \
|
454
|
405 ((void *) ALIGN_SIZE ((size_t) (ptr), unit))
|
428
|
406
|
|
407 #ifndef DO_NOTHING
|
|
408 #define DO_NOTHING do {} while (0)
|
|
409 #endif
|
|
410
|
|
411 #ifndef DECLARE_NOTHING
|
|
412 #define DECLARE_NOTHING struct nosuchstruct
|
|
413 #endif
|
|
414
|
|
415 /* We define assert iff USE_ASSERTIONS or DEBUG_XEMACS is defined.
|
|
416 Otherwise we define it to be empty. Quantify has shown that the
|
|
417 time the assert checks take is measurable so let's not include them
|
771
|
418 in production binaries.
|
|
419
|
|
420 assert() returns 1 if the assert succeeded (or wasn't tried), 0 if
|
|
421 failed. (Normally, it would have aborted here, but with
|
|
422 ASSERTIONS_DONT_ABORT defined, it will continue. */
|
428
|
423
|
|
424 #ifdef USE_ASSERTIONS
|
|
425 /* Highly dubious kludge */
|
|
426 /* (thanks, Jamie, I feel better now -- ben) */
|
442
|
427 void assert_failed (const char *, int, const char *);
|
428
|
428 # define abort() (assert_failed (__FILE__, __LINE__, "abort()"))
|
|
429 # define assert(x) ((x) ? (void) 0 : assert_failed (__FILE__, __LINE__, #x))
|
|
430 #else
|
|
431 # ifdef DEBUG_XEMACS
|
|
432 # define assert(x) ((x) ? (void) 0 : (void) abort ())
|
|
433 # else
|
771
|
434 # define assert(x) ((void) 0)
|
428
|
435 # endif
|
|
436 #endif
|
|
437
|
771
|
438 #if 0
|
|
439 #ifdef USE_ASSERTIONS
|
|
440 /* Highly dubious kludge */
|
|
441 /* (thanks, Jamie, I feel better now -- ben) */
|
|
442 void assert_failed (const char *, int, const char *);
|
|
443 # define abort() (assert_failed (__FILE__, __LINE__, "abort()"))
|
|
444 # define assert(x) ((x) ? 1 : (assert_failed (__FILE__, __LINE__, #x), 0))
|
|
445 #else
|
|
446 # ifdef DEBUG_XEMACS
|
|
447 # define assert(x) ((x) ? 1 : ((void) abort (), 0))
|
|
448 # else
|
|
449 # define assert(x) (1)
|
|
450 # endif
|
|
451 #endif
|
|
452 #endif /* 0 */
|
|
453
|
428
|
454 /*#ifdef DEBUG_XEMACS*/
|
|
455 #define REGISTER
|
|
456 #define register
|
|
457 /*#else*/
|
|
458 /*#define REGISTER register*/
|
|
459 /*#endif*/
|
|
460
|
|
461
|
|
462
|
|
463 /************************************************************************/
|
|
464 /* typedefs */
|
|
465 /************************************************************************/
|
|
466
|
647
|
467 /* Note that the simplest typedefs are near the top of this file. */
|
|
468
|
428
|
469 /* We put typedefs here so that prototype declarations don't choke.
|
|
470 Note that we don't actually declare the structures here (except
|
|
471 maybe for simple structures like Dynarrs); that keeps them private
|
|
472 to the routines that actually use them. */
|
|
473
|
771
|
474 /* ------------------------------- */
|
|
475 /* Error_Behavior typedefs */
|
|
476 /* ------------------------------- */
|
|
477
|
|
478 #ifndef ERROR_CHECK_TYPECHECK
|
|
479
|
|
480 typedef enum error_behavior
|
428
|
481 {
|
771
|
482 ERROR_ME,
|
|
483 ERROR_ME_NOT,
|
|
484 ERROR_ME_WARN
|
|
485 } Error_Behavior;
|
|
486
|
|
487 #define ERRB_EQ(a, b) ((a) == (b))
|
|
488
|
|
489 #else
|
|
490
|
|
491 /* By defining it like this, we provide strict type-checking
|
|
492 for code that lazily uses ints. */
|
|
493
|
|
494 typedef struct _error_behavior_struct_
|
428
|
495 {
|
771
|
496 int really_unlikely_name_to_have_accidentally_in_a_non_errb_structure;
|
|
497 } Error_Behavior;
|
|
498
|
|
499 extern Error_Behavior ERROR_ME;
|
|
500 extern Error_Behavior ERROR_ME_NOT;
|
|
501 extern Error_Behavior ERROR_ME_WARN;
|
|
502
|
|
503 #define ERRB_EQ(a, b) \
|
|
504 ((a).really_unlikely_name_to_have_accidentally_in_a_non_errb_structure == \
|
|
505 (b).really_unlikely_name_to_have_accidentally_in_a_non_errb_structure)
|
|
506
|
|
507 #endif
|
|
508
|
|
509 /* ------------------------------- */
|
|
510 /* Empty structures and typedefs */
|
|
511 /* ------------------------------- */
|
428
|
512
|
|
513 struct buffer; /* "buffer.h" */
|
|
514 struct console; /* "console.h" */
|
|
515 struct device; /* "device.h" */
|
|
516 struct extent_fragment;
|
|
517 struct extent;
|
|
518 struct frame; /* "frame.h" */
|
|
519 struct window; /* "window.h" */
|
|
520 struct stat; /* <sys/stat.h> */
|
771
|
521 struct utimbuf; /* "systime.h" or <utime.h> */
|
428
|
522 struct display_line;
|
|
523 struct display_glyph_area;
|
|
524 struct display_box;
|
|
525 struct redisplay_info;
|
|
526 struct window_mirror;
|
|
527 struct scrollbar_instance;
|
|
528 struct font_metric_info;
|
|
529 struct face_cachel;
|
|
530 struct console_type_entry;
|
|
531
|
771
|
532 /* This is shared by process.h, events.h and others in future.
|
|
533 See events.h for description */
|
|
534 typedef unsigned int USID;
|
|
535 typedef int face_index;
|
|
536 typedef int glyph_index;
|
|
537 typedef struct lstream Lstream;
|
|
538 typedef struct extent *EXTENT;
|
|
539 typedef struct Lisp_Event Lisp_Event; /* "events.h" */
|
|
540 typedef struct Lisp_Face Lisp_Face; /* "faces.h" */
|
|
541 typedef struct Lisp_Process Lisp_Process; /* "procimpl.h" */
|
|
542 typedef struct Lisp_Color_Instance Lisp_Color_Instance;
|
|
543 typedef struct Lisp_Font_Instance Lisp_Font_Instance;
|
|
544 typedef struct Lisp_Image_Instance Lisp_Image_Instance;
|
|
545 typedef struct Lisp_Gui_Item Lisp_Gui_Item;
|
|
546
|
|
547 /* ------------------------------- */
|
|
548 /* Dynarr typedefs */
|
|
549 /* ------------------------------- */
|
|
550
|
|
551 /* Dynarr typedefs -- basic types first */
|
|
552
|
428
|
553 typedef struct
|
|
554 {
|
665
|
555 Dynarr_declare (Intbyte);
|
|
556 } Intbyte_dynarr;
|
428
|
557
|
|
558 typedef struct
|
|
559 {
|
|
560 Dynarr_declare (Extbyte);
|
|
561 } Extbyte_dynarr;
|
|
562
|
|
563 typedef struct
|
|
564 {
|
|
565 Dynarr_declare (Emchar);
|
|
566 } Emchar_dynarr;
|
|
567
|
|
568 typedef struct
|
|
569 {
|
|
570 Dynarr_declare (char);
|
|
571 } char_dynarr;
|
|
572
|
771
|
573 typedef struct
|
|
574 {
|
|
575 Dynarr_declare (char *);
|
|
576 } char_ptr_dynarr;
|
|
577
|
428
|
578 typedef unsigned char unsigned_char;
|
|
579 typedef struct
|
|
580 {
|
|
581 Dynarr_declare (unsigned char);
|
|
582 } unsigned_char_dynarr;
|
|
583
|
|
584 typedef unsigned long unsigned_long;
|
|
585 typedef struct
|
|
586 {
|
|
587 Dynarr_declare (unsigned long);
|
|
588 } unsigned_long_dynarr;
|
|
589
|
|
590 typedef struct
|
|
591 {
|
|
592 Dynarr_declare (int);
|
|
593 } int_dynarr;
|
|
594
|
|
595 typedef struct
|
|
596 {
|
665
|
597 Dynarr_declare (Charbpos);
|
|
598 } Charbpos_dynarr;
|
428
|
599
|
|
600 typedef struct
|
|
601 {
|
665
|
602 Dynarr_declare (Bytebpos);
|
|
603 } Bytebpos_dynarr;
|
428
|
604
|
|
605 typedef struct
|
|
606 {
|
|
607 Dynarr_declare (Charcount);
|
|
608 } Charcount_dynarr;
|
|
609
|
|
610 typedef struct
|
|
611 {
|
|
612 Dynarr_declare (Bytecount);
|
|
613 } Bytecount_dynarr;
|
|
614
|
771
|
615 /* Dynarr typedefs -- more complex types */
|
|
616
|
|
617 typedef struct
|
|
618 {
|
|
619 Dynarr_declare (struct face_cachel);
|
|
620 } face_cachel_dynarr;
|
|
621
|
|
622 typedef struct
|
|
623 {
|
|
624 Dynarr_declare (struct glyph_cachel);
|
|
625 } glyph_cachel_dynarr;
|
|
626
|
428
|
627 typedef struct
|
|
628 {
|
|
629 Dynarr_declare (struct console_type_entry);
|
|
630 } console_type_entry_dynarr;
|
|
631
|
771
|
632 /* ------------------------------- */
|
|
633 /* enum typedefs */
|
|
634 /* ------------------------------- */
|
|
635
|
428
|
636 enum run_hooks_condition
|
|
637 {
|
|
638 RUN_HOOKS_TO_COMPLETION,
|
|
639 RUN_HOOKS_UNTIL_SUCCESS,
|
|
640 RUN_HOOKS_UNTIL_FAILURE
|
|
641 };
|
|
642
|
|
643 #ifdef HAVE_TOOLBARS
|
|
644 enum toolbar_pos
|
|
645 {
|
|
646 TOP_TOOLBAR,
|
|
647 BOTTOM_TOOLBAR,
|
|
648 LEFT_TOOLBAR,
|
|
649 RIGHT_TOOLBAR
|
|
650 };
|
|
651 #endif
|
|
652
|
|
653 enum edge_style
|
|
654 {
|
|
655 EDGE_ETCHED_IN,
|
|
656 EDGE_ETCHED_OUT,
|
|
657 EDGE_BEVEL_IN,
|
|
658 EDGE_BEVEL_OUT
|
|
659 };
|
|
660
|
|
661 enum munge_me_out_the_door
|
|
662 {
|
|
663 MUNGE_ME_FUNCTION_KEY,
|
|
664 MUNGE_ME_KEY_TRANSLATION
|
|
665 };
|
|
666
|
771
|
667 /* ------------------------------- */
|
|
668 /* misc */
|
|
669 /* ------------------------------- */
|
|
670
|
|
671 #ifdef MEMORY_USAGE_STATS
|
|
672
|
|
673 /* This structure is used to keep statistics on the amount of memory
|
|
674 in use.
|
|
675
|
|
676 WAS_REQUESTED stores the actual amount of memory that was requested
|
|
677 of the allocation function. The *_OVERHEAD fields store the
|
|
678 additional amount of memory that was grabbed by the functions to
|
|
679 facilitate allocation, reallocation, etc. MALLOC_OVERHEAD is for
|
|
680 memory allocated with malloc(); DYNARR_OVERHEAD is for dynamic
|
|
681 arrays; GAP_OVERHEAD is for gap arrays. Note that for (e.g.)
|
|
682 dynamic arrays, there is both MALLOC_OVERHEAD and DYNARR_OVERHEAD
|
|
683 memory: The dynamic array allocates memory above and beyond what
|
|
684 was asked of it, and when it in turns allocates memory using
|
|
685 malloc(), malloc() allocates memory beyond what it was asked
|
|
686 to allocate.
|
|
687
|
|
688 Functions that accept a structure of this sort do not initialize
|
|
689 the fields to 0, and add any existing values to whatever was there
|
|
690 before; this way, you can get a cumulative effect. */
|
|
691
|
|
692 struct overhead_stats
|
|
693 {
|
|
694 int was_requested;
|
|
695 int malloc_overhead;
|
|
696 int dynarr_overhead;
|
|
697 int gap_overhead;
|
|
698 };
|
|
699
|
|
700 #endif /* MEMORY_USAGE_STATS */
|
|
701
|
428
|
702
|
|
703 /************************************************************************/
|
|
704 /* Definition of Lisp_Object data type */
|
|
705 /************************************************************************/
|
|
706
|
|
707 /* Define the fundamental Lisp data structures */
|
|
708
|
|
709 /* This is the set of Lisp data types */
|
|
710
|
|
711 enum Lisp_Type
|
|
712 {
|
|
713 Lisp_Type_Record,
|
|
714 Lisp_Type_Int_Even,
|
|
715 Lisp_Type_Char,
|
|
716 Lisp_Type_Int_Odd
|
|
717 };
|
|
718
|
|
719 #define POINTER_TYPE_P(type) ((type) == Lisp_Type_Record)
|
|
720
|
|
721 /* Overridden by m/next.h */
|
|
722 #ifndef ASSERT_VALID_POINTER
|
|
723 # define ASSERT_VALID_POINTER(pnt) (assert ((((EMACS_UINT) pnt) & 3) == 0))
|
|
724 #endif
|
|
725
|
|
726 #define GCMARKBITS 0
|
|
727 #define GCTYPEBITS 2
|
|
728 #define GCBITS 2
|
|
729 #define INT_GCBITS 1
|
|
730
|
|
731 #define INT_VALBITS (BITS_PER_EMACS_INT - INT_GCBITS)
|
|
732 #define VALBITS (BITS_PER_EMACS_INT - GCBITS)
|
542
|
733 #define EMACS_INT_MAX ((EMACS_INT) ((1UL << (INT_VALBITS - 1)) -1UL))
|
442
|
734 #define EMACS_INT_MIN (-(EMACS_INT_MAX) - 1)
|
428
|
735
|
|
736 #ifdef USE_UNION_TYPE
|
|
737 # include "lisp-union.h"
|
|
738 #else /* !USE_UNION_TYPE */
|
|
739 # include "lisp-disunion.h"
|
|
740 #endif /* !USE_UNION_TYPE */
|
|
741
|
|
742 #define XPNTR(x) ((void *) XPNTRVAL(x))
|
|
743
|
|
744 /* WARNING WARNING WARNING. You must ensure on your own that proper
|
|
745 GC protection is provided for the elements in this array. */
|
|
746 typedef struct
|
|
747 {
|
|
748 Dynarr_declare (Lisp_Object);
|
|
749 } Lisp_Object_dynarr;
|
|
750
|
452
|
751 typedef struct
|
|
752 {
|
|
753 Dynarr_declare (Lisp_Object *);
|
|
754 } Lisp_Object_ptr_dynarr;
|
|
755
|
428
|
756 /* Close your eyes now lest you vomit or spontaneously combust ... */
|
|
757
|
|
758 #define HACKEQ_UNSAFE(obj1, obj2) \
|
|
759 (EQ (obj1, obj2) || (!POINTER_TYPE_P (XTYPE (obj1)) \
|
|
760 && !POINTER_TYPE_P (XTYPE (obj2)) \
|
|
761 && XCHAR_OR_INT (obj1) == XCHAR_OR_INT (obj2)))
|
|
762
|
|
763 #ifdef DEBUG_XEMACS
|
|
764 extern int debug_issue_ebola_notices;
|
|
765 int eq_with_ebola_notice (Lisp_Object, Lisp_Object);
|
|
766 #define EQ_WITH_EBOLA_NOTICE(obj1, obj2) \
|
|
767 (debug_issue_ebola_notices ? eq_with_ebola_notice (obj1, obj2) \
|
|
768 : EQ (obj1, obj2))
|
|
769 #else
|
|
770 #define EQ_WITH_EBOLA_NOTICE(obj1, obj2) EQ (obj1, obj2)
|
|
771 #endif
|
|
772
|
|
773 /* OK, you can open them again */
|
|
774
|
|
775
|
|
776 /************************************************************************/
|
442
|
777 /** Definitions of basic Lisp objects **/
|
428
|
778 /************************************************************************/
|
|
779
|
|
780 #include "lrecord.h"
|
|
781
|
442
|
782 /*------------------------------ unbound -------------------------------*/
|
428
|
783
|
|
784 /* Qunbound is a special Lisp_Object (actually of type
|
|
785 symbol-value-forward), that can never be visible to
|
|
786 the Lisp caller and thus can be used in the C code
|
|
787 to mean "no such value". */
|
|
788
|
|
789 #define UNBOUNDP(val) EQ (val, Qunbound)
|
|
790
|
771
|
791 /* Evaluate expr, return it if it's not Qunbound. */
|
|
792 #define RETURN_IF_NOT_UNBOUND(expr) do \
|
|
793 { \
|
|
794 Lisp_Object ret_nunb_val = (expr); \
|
|
795 if (!UNBOUNDP (ret_nunb_val)) \
|
|
796 RETURN_SANS_WARNINGS ret_nunb_val; \
|
|
797 } while (0)
|
|
798
|
442
|
799 /*------------------------------- cons ---------------------------------*/
|
428
|
800
|
|
801 /* In a cons, the markbit of the car is the gc mark bit */
|
|
802
|
|
803 struct Lisp_Cons
|
|
804 {
|
|
805 struct lrecord_header lheader;
|
|
806 Lisp_Object car, cdr;
|
|
807 };
|
|
808 typedef struct Lisp_Cons Lisp_Cons;
|
|
809
|
|
810 #if 0 /* FSFmacs */
|
|
811 /* Like a cons, but records info on where the text lives that it was read from */
|
|
812 /* This is not really in use now */
|
|
813
|
|
814 struct Lisp_Buffer_Cons
|
|
815 {
|
|
816 Lisp_Object car, cdr;
|
|
817 struct buffer *buffer;
|
665
|
818 int charbpos;
|
428
|
819 };
|
|
820 #endif
|
|
821
|
|
822 DECLARE_LRECORD (cons, Lisp_Cons);
|
|
823 #define XCONS(x) XRECORD (x, cons, Lisp_Cons)
|
|
824 #define XSETCONS(x, p) XSETRECORD (x, p, cons)
|
617
|
825 #define wrap_cons(p) wrap_record (p, cons)
|
428
|
826 #define CONSP(x) RECORDP (x, cons)
|
|
827 #define CHECK_CONS(x) CHECK_RECORD (x, cons)
|
|
828 #define CONCHECK_CONS(x) CONCHECK_RECORD (x, cons)
|
|
829
|
|
830 #define CONS_MARKED_P(c) MARKED_RECORD_HEADER_P(&((c)->lheader))
|
|
831 #define MARK_CONS(c) MARK_RECORD_HEADER (&((c)->lheader))
|
|
832
|
|
833 extern Lisp_Object Qnil;
|
|
834
|
|
835 #define NILP(x) EQ (x, Qnil)
|
|
836 #define XCAR(a) (XCONS (a)->car)
|
|
837 #define XCDR(a) (XCONS (a)->cdr)
|
|
838 #define LISTP(x) (CONSP(x) || NILP(x))
|
|
839
|
|
840 #define CHECK_LIST(x) do { \
|
|
841 if (!LISTP (x)) \
|
|
842 dead_wrong_type_argument (Qlistp, x); \
|
|
843 } while (0)
|
|
844
|
|
845 #define CONCHECK_LIST(x) do { \
|
|
846 if (!LISTP (x)) \
|
|
847 x = wrong_type_argument (Qlistp, x); \
|
|
848 } while (0)
|
|
849
|
442
|
850 /*---------------------- list traversal macros -------------------------*/
|
|
851
|
|
852 /* Note: These macros are for traversing through a list in some format,
|
|
853 and executing code that you specify on each member of the list.
|
|
854
|
|
855 There are two kinds of macros, those requiring surrounding braces, and
|
|
856 those not requiring this. Which type of macro will be indicated.
|
|
857 The general format for using a brace-requiring macro is
|
|
858
|
|
859 {
|
|
860 LIST_LOOP_3 (elt, list, tail)
|
|
861 execute_code_here;
|
|
862 }
|
|
863
|
|
864 or
|
|
865
|
|
866 {
|
|
867 LIST_LOOP_3 (elt, list, tail)
|
|
868 {
|
|
869 execute_code_here;
|
|
870 }
|
|
871 }
|
|
872
|
|
873 You can put variable declarations between the brace and beginning of
|
|
874 macro, but NOTHING ELSE.
|
|
875
|
|
876 The brace-requiring macros typically declare themselves any arguments
|
|
877 that are initialized and iterated by the macros. If for some reason
|
|
878 you need to declare these arguments yourself (e.g. to do something on
|
|
879 them before the iteration starts, use the _NO_DECLARE versions of the
|
|
880 macros.)
|
|
881 */
|
|
882
|
|
883 /* There are two basic kinds of macros: those that handle "internal" lists
|
|
884 that are known to be correctly structured (i.e. first element is a cons
|
|
885 or nil, and the car of each cons is also a cons or nil, and there are
|
|
886 no circularities), and those that handle "external" lists, where the
|
|
887 list may have any sort of invalid formation. This is reflected in
|
|
888 the names: those with "EXTERNAL_" work with external lists, and those
|
|
889 without this prefix work with internal lists. The internal-list
|
|
890 macros will hit an assertion failure if the structure is ill-formed;
|
|
891 the external-list macros will signal an error in this case, either a
|
|
892 malformed-list error or a circular-list error.
|
|
893
|
|
894 Note also that the simplest external list iterator, EXTERNAL_LIST_LOOP,
|
|
895 does *NOT* check for circularities. Therefore, make sure you call
|
|
896 QUIT each iteration or so. However, it's probably easier just to use
|
|
897 EXTERNAL_LIST_LOOP_2, which is easier to use in any case.
|
|
898 */
|
|
899
|
|
900 /* LIST_LOOP and EXTERNAL_LIST_LOOP are the simplest macros. They don't
|
|
901 require brace surrounding, and iterate through a list, which may or may
|
|
902 not known to be syntactically correct. EXTERNAL_LIST_LOOP is for those
|
|
903 not known to be correct, and it detects and signals a malformed list
|
|
904 error when encountering a problem. Circularities, however, are not
|
|
905 handled, and cause looping forever, so make sure to include a QUIT.
|
|
906 These functions also accept two args, TAIL (set progressively to each
|
|
907 cons starting with the first), and LIST, the list to iterate over.
|
|
908 TAIL needs to be defined by the program.
|
|
909
|
|
910 In each iteration, you can retrieve the current list item using XCAR
|
|
911 (tail), or destructively modify the list using XSETCAR (tail,
|
|
912 ...). */
|
|
913
|
428
|
914 #define LIST_LOOP(tail, list) \
|
|
915 for (tail = list; \
|
|
916 !NILP (tail); \
|
|
917 tail = XCDR (tail))
|
|
918
|
|
919 #define EXTERNAL_LIST_LOOP(tail, list) \
|
|
920 for (tail = list; !NILP (tail); tail = XCDR (tail)) \
|
|
921 if (!CONSP (tail)) \
|
|
922 signal_malformed_list_error (list); \
|
|
923 else
|
|
924
|
442
|
925 /* The following macros are the "core" macros for list traversal.
|
|
926
|
|
927 *** ALL OF THESE MACROS MUST BE DECLARED INSIDE BRACES -- SEE ABOVE. ***
|
|
928
|
|
929 LIST_LOOP_2 and EXTERNAL_LIST_LOOP_2 are the standard, most-often used
|
|
930 macros. They take two arguments, an element variable ELT and the list
|
|
931 LIST. ELT is automatically declared, and set to each element in turn
|
|
932 from LIST.
|
|
933
|
|
934 LIST_LOOP_3 and EXTERNAL_LIST_LOOP_3 are the same, but they have a third
|
|
935 argument TAIL, another automatically-declared variable. At each iteration,
|
|
936 this one points to the cons cell for which ELT is the car.
|
|
937
|
|
938 EXTERNAL_LIST_LOOP_4 is like EXTERNAL_LIST_LOOP_3 but takes an additional
|
|
939 LEN argument, again automatically declared, which counts the number of
|
|
940 iterations gone by. It is 0 during the first iteration.
|
|
941
|
|
942 EXTERNAL_LIST_LOOP_4_NO_DECLARE is like EXTERNAL_LIST_LOOP_4 but none
|
|
943 of the variables are automatically declared, and so you need to declare
|
|
944 them yourself. (ELT and TAIL are Lisp_Objects, and LEN is an EMACS_INT.)
|
|
945 */
|
|
946
|
|
947 #define LIST_LOOP_2(elt, list) \
|
|
948 LIST_LOOP_3(elt, list, unused_tail_##elt)
|
|
949
|
|
950 #define LIST_LOOP_3(elt, list, tail) \
|
|
951 Lisp_Object elt, tail; \
|
|
952 for (tail = list; \
|
|
953 NILP (tail) ? \
|
|
954 0 : (elt = XCAR (tail), 1); \
|
|
955 tail = XCDR (tail))
|
428
|
956
|
|
957 /* The following macros are for traversing lisp lists.
|
|
958 Signal an error if LIST is not properly acyclic and nil-terminated.
|
|
959
|
|
960 Use tortoise/hare algorithm to check for cycles, but only if it
|
|
961 looks like the list is getting too long. Not only is the hare
|
|
962 faster than the tortoise; it even gets a head start! */
|
|
963
|
|
964 /* Optimized and safe macros for looping over external lists. */
|
|
965 #define CIRCULAR_LIST_SUSPICION_LENGTH 1024
|
|
966
|
|
967 #define EXTERNAL_LIST_LOOP_1(list) \
|
|
968 Lisp_Object ELL1_elt, ELL1_hare, ELL1_tortoise; \
|
442
|
969 EMACS_INT ELL1_len; \
|
|
970 PRIVATE_EXTERNAL_LIST_LOOP_6 (ELL1_elt, list, ELL1_len, ELL1_hare, \
|
428
|
971 ELL1_tortoise, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
972
|
|
973 #define EXTERNAL_LIST_LOOP_2(elt, list) \
|
442
|
974 Lisp_Object elt, hare_##elt, tortoise_##elt; \
|
|
975 EMACS_INT len_##elt; \
|
|
976 PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len_##elt, hare_##elt, \
|
428
|
977 tortoise_##elt, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
978
|
|
979 #define EXTERNAL_LIST_LOOP_3(elt, list, tail) \
|
442
|
980 Lisp_Object elt, tail, tortoise_##elt; \
|
|
981 EMACS_INT len_##elt; \
|
|
982 PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len_##elt, tail, \
|
|
983 tortoise_##elt, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
984
|
|
985 #define EXTERNAL_LIST_LOOP_4_NO_DECLARE(elt, list, tail, len) \
|
428
|
986 Lisp_Object tortoise_##elt; \
|
442
|
987 PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len, tail, \
|
428
|
988 tortoise_##elt, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
989
|
|
990 #define EXTERNAL_LIST_LOOP_4(elt, list, tail, len) \
|
442
|
991 Lisp_Object elt, tail, tortoise_##elt; \
|
|
992 EMACS_INT len; \
|
|
993 PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len, tail, \
|
428
|
994 tortoise_##elt, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
995
|
|
996
|
444
|
997 #define PRIVATE_EXTERNAL_LIST_LOOP_6(elt, list, len, hare, \
|
|
998 tortoise, suspicion_length) \
|
|
999 for (tortoise = hare = list, len = 0; \
|
|
1000 \
|
|
1001 (CONSP (hare) ? ((elt = XCAR (hare)), 1) : \
|
|
1002 (NILP (hare) ? 0 : \
|
|
1003 (signal_malformed_list_error (list), 0))); \
|
|
1004 \
|
|
1005 hare = XCDR (hare), \
|
|
1006 (void) \
|
|
1007 ((++len > suspicion_length) \
|
|
1008 && \
|
|
1009 ((((len & 1) != 0) && (tortoise = XCDR (tortoise), 0)), \
|
|
1010 (EQ (hare, tortoise) && (signal_circular_list_error (list), 0)))))
|
428
|
1011
|
442
|
1012 /* GET_LIST_LENGTH and GET_EXTERNAL_LIST_LENGTH:
|
|
1013
|
|
1014 These two macros return the length of LIST (either an internal or external
|
|
1015 list, according to which macro is used), stored into LEN (which must
|
|
1016 be declared by the caller). Circularities are trapped in external lists
|
|
1017 (and cause errors). Neither macro need be declared inside brackets. */
|
|
1018
|
|
1019 #define GET_LIST_LENGTH(list, len) do { \
|
|
1020 Lisp_Object GLL_tail; \
|
|
1021 for (GLL_tail = list, len = 0; \
|
|
1022 !NILP (GLL_tail); \
|
|
1023 GLL_tail = XCDR (GLL_tail), ++len) \
|
|
1024 DO_NOTHING; \
|
|
1025 } while (0)
|
|
1026
|
|
1027 #define GET_EXTERNAL_LIST_LENGTH(list, len) \
|
|
1028 do { \
|
|
1029 Lisp_Object GELL_elt, GELL_tail; \
|
|
1030 EXTERNAL_LIST_LOOP_4_NO_DECLARE (GELL_elt, list, GELL_tail, len) \
|
|
1031 ; \
|
|
1032 } while (0)
|
|
1033
|
|
1034 /* For a list that's known to be in valid list format, where we may
|
|
1035 be deleting the current element out of the list --
|
|
1036 will abort() if the list is not in valid format */
|
|
1037 #define LIST_LOOP_DELETING(consvar, nextconsvar, list) \
|
|
1038 for (consvar = list; \
|
|
1039 !NILP (consvar) ? (nextconsvar = XCDR (consvar), 1) :0; \
|
|
1040 consvar = nextconsvar)
|
|
1041
|
|
1042 /* LIST_LOOP_DELETE_IF and EXTERNAL_LIST_LOOP_DELETE_IF:
|
|
1043
|
|
1044 These two macros delete all elements of LIST (either an internal or
|
|
1045 external list, according to which macro is used) satisfying
|
|
1046 CONDITION, a C expression referring to variable ELT. ELT is
|
|
1047 automatically declared. Circularities are trapped in external
|
|
1048 lists (and cause errors). Neither macro need be declared inside
|
|
1049 brackets. */
|
|
1050
|
|
1051 #define LIST_LOOP_DELETE_IF(elt, list, condition) do { \
|
|
1052 /* Do not use ##list when creating new variables because \
|
|
1053 that may not be just a variable name. */ \
|
|
1054 Lisp_Object prev_tail_##elt = Qnil; \
|
|
1055 LIST_LOOP_3 (elt, list, tail_##elt) \
|
|
1056 { \
|
|
1057 if (condition) \
|
|
1058 { \
|
|
1059 if (NILP (prev_tail_##elt)) \
|
|
1060 list = XCDR (tail_##elt); \
|
|
1061 else \
|
|
1062 XCDR (prev_tail_##elt) = XCDR (tail_##elt); \
|
|
1063 } \
|
|
1064 else \
|
|
1065 prev_tail_##elt = tail_##elt; \
|
|
1066 } \
|
|
1067 } while (0)
|
|
1068
|
|
1069 #define EXTERNAL_LIST_LOOP_DELETE_IF(elt, list, condition) do { \
|
|
1070 Lisp_Object prev_tail_##elt = Qnil; \
|
|
1071 EXTERNAL_LIST_LOOP_4 (elt, list, tail_##elt, len_##elt) \
|
|
1072 { \
|
|
1073 if (condition) \
|
|
1074 { \
|
|
1075 if (NILP (prev_tail_##elt)) \
|
|
1076 list = XCDR (tail_##elt); \
|
|
1077 else \
|
|
1078 XCDR (prev_tail_##elt) = XCDR (tail_##elt); \
|
|
1079 /* Keep tortoise from ever passing hare. */ \
|
|
1080 len_##elt = 0; \
|
|
1081 } \
|
|
1082 else \
|
|
1083 prev_tail_##elt = tail_##elt; \
|
|
1084 } \
|
|
1085 } while (0)
|
|
1086
|
|
1087
|
|
1088 /* Macros for looping over external alists.
|
|
1089
|
|
1090 *** ALL OF THESE MACROS MUST BE DECLARED INSIDE BRACES -- SEE ABOVE. ***
|
|
1091
|
|
1092 EXTERNAL_ALIST_LOOP_4 is similar to EXTERNAL_LIST_LOOP_2, but it
|
|
1093 assumes the elements are aconses (the elements in an alist) and
|
|
1094 sets two additional argument variables ELT_CAR and ELT_CDR to the
|
|
1095 car and cdr of the acons. All of the variables ELT, ELT_CAR and
|
|
1096 ELT_CDR are automatically declared.
|
|
1097
|
|
1098 EXTERNAL_ALIST_LOOP_5 adds a TAIL argument to EXTERNAL_ALIST_LOOP_4,
|
|
1099 just like EXTERNAL_LIST_LOOP_3 does, and again TAIL is automatically
|
|
1100 declared.
|
|
1101
|
|
1102 EXTERNAL_ALIST_LOOP_6 adds a LEN argument to EXTERNAL_ALIST_LOOP_5,
|
|
1103 just like EXTERNAL_LIST_LOOP_4 does, and again LEN is automatically
|
|
1104 declared.
|
|
1105
|
|
1106 EXTERNAL_ALIST_LOOP_6_NO_DECLARE does not declare any of its arguments,
|
|
1107 just like EXTERNAL_LIST_LOOP_4_NO_DECLARE, and so these must be declared
|
|
1108 manually.
|
|
1109 */
|
428
|
1110
|
|
1111 /* Optimized and safe macros for looping over external alists. */
|
|
1112 #define EXTERNAL_ALIST_LOOP_4(elt, elt_car, elt_cdr, list) \
|
442
|
1113 Lisp_Object elt, elt_car, elt_cdr; \
|
428
|
1114 Lisp_Object hare_##elt, tortoise_##elt; \
|
|
1115 EMACS_INT len_##elt; \
|
442
|
1116 PRIVATE_EXTERNAL_ALIST_LOOP_8 (elt, elt_car, elt_cdr, list, \
|
428
|
1117 len_##elt, hare_##elt, tortoise_##elt, \
|
|
1118 CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1119
|
|
1120 #define EXTERNAL_ALIST_LOOP_5(elt, elt_car, elt_cdr, list, tail) \
|
442
|
1121 Lisp_Object elt, elt_car, elt_cdr, tail; \
|
428
|
1122 Lisp_Object tortoise_##elt; \
|
|
1123 EMACS_INT len_##elt; \
|
442
|
1124 PRIVATE_EXTERNAL_ALIST_LOOP_8 (elt, elt_car, elt_cdr, list, \
|
428
|
1125 len_##elt, tail, tortoise_##elt, \
|
|
1126 CIRCULAR_LIST_SUSPICION_LENGTH) \
|
|
1127
|
|
1128 #define EXTERNAL_ALIST_LOOP_6(elt, elt_car, elt_cdr, list, tail, len) \
|
442
|
1129 Lisp_Object elt, elt_car, elt_cdr, tail; \
|
|
1130 EMACS_INT len; \
|
428
|
1131 Lisp_Object tortoise_##elt; \
|
442
|
1132 PRIVATE_EXTERNAL_ALIST_LOOP_8 (elt, elt_car, elt_cdr, list, \
|
428
|
1133 len, tail, tortoise_##elt, \
|
|
1134 CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1135
|
442
|
1136 #define EXTERNAL_ALIST_LOOP_6_NO_DECLARE(elt, elt_car, elt_cdr, list, \
|
|
1137 tail, len) \
|
|
1138 Lisp_Object tortoise_##elt; \
|
|
1139 PRIVATE_EXTERNAL_ALIST_LOOP_8 (elt, elt_car, elt_cdr, list, \
|
|
1140 len, tail, tortoise_##elt, \
|
|
1141 CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1142
|
|
1143
|
|
1144 #define PRIVATE_EXTERNAL_ALIST_LOOP_8(elt, elt_car, elt_cdr, list, len, \
|
|
1145 hare, tortoise, suspicion_length) \
|
|
1146 PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len, hare, tortoise, \
|
|
1147 suspicion_length) \
|
428
|
1148 if (CONSP (elt) ? (elt_car = XCAR (elt), elt_cdr = XCDR (elt), 0) :1) \
|
|
1149 continue; \
|
|
1150 else
|
|
1151
|
442
|
1152 /* Macros for looping over external property lists.
|
|
1153
|
|
1154 *** ALL OF THESE MACROS MUST BE DECLARED INSIDE BRACES -- SEE ABOVE. ***
|
|
1155
|
|
1156 EXTERNAL_PROPERTY_LIST_LOOP_3 maps over an external list assumed to
|
|
1157 be a property list, consisting of alternating pairs of keys
|
|
1158 (typically symbols or keywords) and values. Each iteration
|
|
1159 processes one such pair out of LIST, assigning the two elements to
|
|
1160 KEY and VALUE respectively. Malformed lists and circularities are
|
|
1161 trapped as usual, and in addition, property lists with an odd number
|
|
1162 of elements also signal an error.
|
|
1163
|
|
1164 EXTERNAL_PROPERTY_LIST_LOOP_4 adds a TAIL argument to
|
|
1165 EXTERNAL_PROPERTY_LIST_LOOP_3, just like EXTERNAL_LIST_LOOP_3 does,
|
|
1166 and again TAIL is automatically declared.
|
|
1167
|
|
1168 EXTERNAL_PROPERTY_LIST_LOOP_5 adds a LEN argument to
|
|
1169 EXTERNAL_PROPERTY_LIST_LOOP_4, just like EXTERNAL_LIST_LOOP_4 does,
|
|
1170 and again LEN is automatically declared. Note that in this case,
|
|
1171 LEN counts the iterations, NOT the total number of list elements
|
|
1172 processed, which is 2 * LEN.
|
|
1173
|
|
1174 EXTERNAL_PROPERTY_LIST_LOOP_5_NO_DECLARE does not declare any of its
|
|
1175 arguments, just like EXTERNAL_LIST_LOOP_4_NO_DECLARE, and so these
|
|
1176 must be declared manually. */
|
428
|
1177
|
|
1178 /* Optimized and safe macros for looping over external property lists. */
|
|
1179 #define EXTERNAL_PROPERTY_LIST_LOOP_3(key, value, list) \
|
|
1180 Lisp_Object key, value, hare_##key, tortoise_##key; \
|
442
|
1181 EMACS_INT len_##key; \
|
428
|
1182 EXTERNAL_PROPERTY_LIST_LOOP_7 (key, value, list, len_##key, hare_##key, \
|
|
1183 tortoise_##key, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1184
|
|
1185 #define EXTERNAL_PROPERTY_LIST_LOOP_4(key, value, list, tail) \
|
|
1186 Lisp_Object key, value, tail, tortoise_##key; \
|
442
|
1187 EMACS_INT len_##key; \
|
428
|
1188 EXTERNAL_PROPERTY_LIST_LOOP_7 (key, value, list, len_##key, tail, \
|
|
1189 tortoise_##key, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1190
|
|
1191 #define EXTERNAL_PROPERTY_LIST_LOOP_5(key, value, list, tail, len) \
|
|
1192 Lisp_Object key, value, tail, tortoise_##key; \
|
|
1193 EMACS_INT len; \
|
|
1194 EXTERNAL_PROPERTY_LIST_LOOP_7 (key, value, list, len, tail, \
|
|
1195 tortoise_##key, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1196
|
442
|
1197 #define EXTERNAL_PROPERTY_LIST_LOOP_5_NO_DECLARE(key, value, list, \
|
|
1198 tail, len) \
|
|
1199 Lisp_Object tortoise_##key; \
|
|
1200 EXTERNAL_PROPERTY_LIST_LOOP_7 (key, value, list, len, tail, \
|
|
1201 tortoise_##key, CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1202
|
428
|
1203
|
|
1204 #define EXTERNAL_PROPERTY_LIST_LOOP_7(key, value, list, len, hare, \
|
|
1205 tortoise, suspicion_length) \
|
|
1206 for (tortoise = hare = list, len = 0; \
|
|
1207 \
|
|
1208 ((CONSP (hare) && \
|
|
1209 (key = XCAR (hare), \
|
|
1210 hare = XCDR (hare), \
|
442
|
1211 (CONSP (hare) ? 1 : \
|
|
1212 (signal_malformed_property_list_error (list), 0)))) ? \
|
428
|
1213 (value = XCAR (hare), 1) : \
|
|
1214 (NILP (hare) ? 0 : \
|
|
1215 (signal_malformed_property_list_error (list), 0))); \
|
|
1216 \
|
|
1217 hare = XCDR (hare), \
|
|
1218 ((++len < suspicion_length) ? \
|
|
1219 ((void) 0) : \
|
|
1220 (((len & 1) ? \
|
|
1221 ((void) (tortoise = XCDR (XCDR (tortoise)))) : \
|
|
1222 ((void) 0)) \
|
|
1223 , \
|
|
1224 (EQ (hare, tortoise) ? \
|
|
1225 ((void) signal_circular_property_list_error (list)) : \
|
|
1226 ((void) 0)))))
|
|
1227
|
|
1228 /* For a property list (alternating keywords/values) that may not be
|
|
1229 in valid list format -- will signal an error if the list is not in
|
|
1230 valid format. CONSVAR is used to keep track of the iterations
|
|
1231 without modifying PLIST.
|
|
1232
|
|
1233 We have to be tricky to still keep the same C format.*/
|
|
1234 #define EXTERNAL_PROPERTY_LIST_LOOP(tail, key, value, plist) \
|
|
1235 for (tail = plist; \
|
|
1236 (CONSP (tail) && CONSP (XCDR (tail)) ? \
|
|
1237 (key = XCAR (tail), value = XCAR (XCDR (tail))) : \
|
|
1238 (key = Qunbound, value = Qunbound)), \
|
|
1239 !NILP (tail); \
|
|
1240 tail = XCDR (XCDR (tail))) \
|
|
1241 if (UNBOUNDP (key)) \
|
|
1242 Fsignal (Qmalformed_property_list, list1 (plist)); \
|
|
1243 else
|
|
1244
|
|
1245 #define PROPERTY_LIST_LOOP(tail, key, value, plist) \
|
|
1246 for (tail = plist; \
|
|
1247 NILP (tail) ? 0 : \
|
|
1248 (key = XCAR (tail), tail = XCDR (tail), \
|
|
1249 value = XCAR (tail), tail = XCDR (tail), 1); \
|
|
1250 )
|
|
1251
|
|
1252 /* Return 1 if LIST is properly acyclic and nil-terminated, else 0. */
|
442
|
1253 INLINE_HEADER int TRUE_LIST_P (Lisp_Object object);
|
|
1254 INLINE_HEADER int
|
428
|
1255 TRUE_LIST_P (Lisp_Object object)
|
|
1256 {
|
|
1257 Lisp_Object hare, tortoise;
|
|
1258 EMACS_INT len;
|
|
1259
|
|
1260 for (hare = tortoise = object, len = 0;
|
|
1261 CONSP (hare);
|
|
1262 hare = XCDR (hare), len++)
|
|
1263 {
|
|
1264 if (len < CIRCULAR_LIST_SUSPICION_LENGTH)
|
|
1265 continue;
|
|
1266
|
|
1267 if (len & 1)
|
|
1268 tortoise = XCDR (tortoise);
|
|
1269 else if (EQ (hare, tortoise))
|
|
1270 return 0;
|
|
1271 }
|
|
1272
|
|
1273 return NILP (hare);
|
|
1274 }
|
|
1275
|
|
1276 /* Signal an error if LIST is not properly acyclic and nil-terminated. */
|
|
1277 #define CHECK_TRUE_LIST(list) do { \
|
|
1278 Lisp_Object CTL_list = (list); \
|
|
1279 Lisp_Object CTL_hare, CTL_tortoise; \
|
436
|
1280 EMACS_INT CTL_len; \
|
428
|
1281 \
|
|
1282 for (CTL_hare = CTL_tortoise = CTL_list, CTL_len = 0; \
|
|
1283 CONSP (CTL_hare); \
|
|
1284 CTL_hare = XCDR (CTL_hare), CTL_len++) \
|
|
1285 { \
|
|
1286 if (CTL_len < CIRCULAR_LIST_SUSPICION_LENGTH) \
|
|
1287 continue; \
|
|
1288 \
|
|
1289 if (CTL_len & 1) \
|
|
1290 CTL_tortoise = XCDR (CTL_tortoise); \
|
|
1291 else if (EQ (CTL_hare, CTL_tortoise)) \
|
|
1292 Fsignal (Qcircular_list, list1 (CTL_list)); \
|
|
1293 } \
|
|
1294 \
|
|
1295 if (! NILP (CTL_hare)) \
|
|
1296 signal_malformed_list_error (CTL_list); \
|
|
1297 } while (0)
|
|
1298
|
442
|
1299 /*------------------------------ string --------------------------------*/
|
428
|
1300
|
|
1301 struct Lisp_String
|
|
1302 {
|
771
|
1303 union
|
|
1304 {
|
|
1305 struct lrecord_header lheader;
|
|
1306 struct
|
|
1307 {
|
|
1308 /* WARNING: Everything before ascii_begin must agree exactly with
|
|
1309 struct lrecord_header */
|
|
1310 unsigned int type :8;
|
|
1311 unsigned int mark :1;
|
|
1312 unsigned int c_readonly :1;
|
|
1313 unsigned int lisp_readonly :1;
|
|
1314 /* Number of chars at beginning of string that are one byte in length
|
|
1315 (BYTE_ASCII_P) */
|
|
1316 unsigned int ascii_begin :21;
|
|
1317 } v;
|
|
1318 } u;
|
428
|
1319 Bytecount size;
|
665
|
1320 Intbyte *data;
|
428
|
1321 Lisp_Object plist;
|
|
1322 };
|
|
1323 typedef struct Lisp_String Lisp_String;
|
|
1324
|
771
|
1325 #define MAX_STRING_ASCII_BEGIN ((2 << 21) - 1)
|
|
1326
|
428
|
1327 DECLARE_LRECORD (string, Lisp_String);
|
|
1328 #define XSTRING(x) XRECORD (x, string, Lisp_String)
|
|
1329 #define XSETSTRING(x, p) XSETRECORD (x, p, string)
|
617
|
1330 #define wrap_string(p) wrap_record (p, string)
|
428
|
1331 #define STRINGP(x) RECORDP (x, string)
|
|
1332 #define CHECK_STRING(x) CHECK_RECORD (x, string)
|
|
1333 #define CONCHECK_STRING(x) CONCHECK_RECORD (x, string)
|
|
1334
|
|
1335 #ifdef MULE
|
|
1336
|
665
|
1337 Charcount bytecount_to_charcount (const Intbyte *ptr, Bytecount len);
|
|
1338 Bytecount charcount_to_bytecount (const Intbyte *ptr, Charcount len);
|
428
|
1339
|
|
1340 #else /* not MULE */
|
|
1341
|
|
1342 # define bytecount_to_charcount(ptr, len) (len)
|
|
1343 # define charcount_to_bytecount(ptr, len) (len)
|
|
1344
|
|
1345 #endif /* not MULE */
|
|
1346
|
|
1347 #define string_length(s) ((s)->size)
|
|
1348 #define XSTRING_LENGTH(s) string_length (XSTRING (s))
|
|
1349 #define string_data(s) ((s)->data + 0)
|
|
1350 #define XSTRING_DATA(s) string_data (XSTRING (s))
|
771
|
1351 #define string_ascii_begin(s) ((s)->u.v.ascii_begin + 0)
|
|
1352 #define XSTRING_ASCII_BEGIN(s) string_ascii_begin (XSTRING (s))
|
|
1353 #define string_char_length(s) string_index_byte_to_char (s, string_length (s))
|
|
1354 #define XSTRING_CHAR_LENGTH(s) string_char_length (XSTRING (s))
|
428
|
1355 #define string_byte(s, i) ((s)->data[i] + 0)
|
|
1356 #define XSTRING_BYTE(s, i) string_byte (XSTRING (s), i)
|
|
1357 #define string_byte_addr(s, i) (&((s)->data[i]))
|
771
|
1358 #define string_char(s, i) charptr_emchar (string_char_addr (s, i))
|
|
1359 #define XSTRING_CHAR(s, i) string_char (XSTRING (s), i)
|
|
1360 #define XSTRING_INDEX_CHAR_TO_BYTE(s, idx) \
|
|
1361 string_index_char_to_byte (XSTRING (s), idx)
|
|
1362 #define XSTRING_INDEX_BYTE_TO_CHAR(s, idx) \
|
|
1363 string_index_byte_to_char (XSTRING (s), idx)
|
|
1364 #define XSTRING_OFFSET_BYTE_TO_CHAR_LEN(s, off, len) \
|
|
1365 string_offset_byte_to_char_len (XSTRING (s), off, len)
|
|
1366 #define XSTRING_OFFSET_CHAR_TO_BYTE_LEN(s, off, len) \
|
|
1367 string_offset_char_to_byte_len (XSTRING (s), off, len)
|
428
|
1368 #define set_string_length(s, len) ((void) ((s)->size = (len)))
|
|
1369 #define set_string_data(s, ptr) ((void) ((s)->data = (ptr)))
|
771
|
1370 /* WARNING: If you modify an existing string, you must call
|
|
1371 bump_string_modiff() afterwards. */
|
442
|
1372 #define set_string_byte(s, i, b) ((void) ((s)->data[i] = (b)))
|
771
|
1373 #define set_string_ascii_begin(s, val) ((void) ((s)->u.v.ascii_begin = (val)))
|
|
1374
|
|
1375 #ifdef ERROR_CHECK_CHARBPOS
|
|
1376 #define SLEDGEHAMMER_CHECK_ASCII_BEGIN
|
|
1377 #endif
|
|
1378
|
|
1379 #ifdef SLEDGEHAMMER_CHECK_ASCII_BEGIN
|
|
1380 void sledgehammer_check_ascii_begin (Lisp_Object str);
|
|
1381 #else
|
|
1382 #define sledgehammer_check_ascii_begin(str)
|
|
1383 #endif
|
|
1384
|
|
1385 /* Make an alloca'd copy of a Lisp string */
|
|
1386 #define LISP_STRING_TO_ALLOCA(s, lval) \
|
|
1387 do { \
|
|
1388 Intbyte **_lta_ = (Intbyte **) &(lval); \
|
|
1389 Lisp_Object _lta_2 = (s); \
|
|
1390 *_lta_ = alloca_array (Intbyte, 1 + XSTRING_LENGTH (_lta_2)); \
|
|
1391 memcpy (*_lta_, XSTRING_DATA (_lta_2), 1 + XSTRING_LENGTH (_lta_2)); \
|
|
1392 } while (0)
|
|
1393
|
|
1394 /* Make an alloca'd copy of a Intbyte * */
|
|
1395 #define INTBYTE_STRING_TO_ALLOCA(p, lval) \
|
|
1396 do { \
|
|
1397 Intbyte **_bsta_ = (Intbyte **) &(lval); \
|
|
1398 const Intbyte *_bsta_2 = (p); \
|
|
1399 Bytecount _bsta_3 = qxestrlen (_bsta_2); \
|
|
1400 *_bsta_ = alloca_array (Intbyte, 1 + _bsta_3); \
|
|
1401 memcpy (*_bsta_, _bsta_2, 1 + _bsta_3); \
|
|
1402 } while (0)
|
|
1403
|
|
1404 #define alloca_intbytes(num) alloca_array (Intbyte, num)
|
|
1405 #define alloca_extbytes(num) alloca_array (Extbyte, num)
|
428
|
1406
|
|
1407 void resize_string (Lisp_String *s, Bytecount pos, Bytecount delta);
|
|
1408
|
|
1409 #ifdef MULE
|
|
1410
|
771
|
1411 /* Convert a byte index into a string into a char index. */
|
|
1412 DECLARE_INLINE_HEADER (
|
|
1413 Charcount
|
|
1414 string_index_byte_to_char (Lisp_String *s, Bytecount idx)
|
|
1415 )
|
|
1416 {
|
|
1417 Charcount retval;
|
|
1418 if (idx <= (Bytecount) string_ascii_begin (s))
|
|
1419 retval = idx;
|
|
1420 else
|
|
1421 retval = (string_ascii_begin (s) +
|
|
1422 bytecount_to_charcount (string_data (s) + string_ascii_begin (s),
|
|
1423 idx - string_ascii_begin (s)));
|
|
1424 #ifdef SLEDGEHAMMER_CHECK_ASCII_BEGIN
|
|
1425 assert (retval == bytecount_to_charcount (string_data (s), idx));
|
|
1426 #endif
|
|
1427 return retval;
|
|
1428 }
|
|
1429
|
|
1430 /* Convert a char index into a string into a byte index. */
|
|
1431 DECLARE_INLINE_HEADER (
|
|
1432 Bytecount
|
|
1433 string_index_char_to_byte (Lisp_String *s, Charcount idx)
|
|
1434 )
|
|
1435 {
|
|
1436 Bytecount retval;
|
|
1437 if (idx <= (Charcount) string_ascii_begin (s))
|
|
1438 retval = idx;
|
|
1439 else
|
|
1440 retval = (string_ascii_begin (s) +
|
|
1441 charcount_to_bytecount (string_data (s) + string_ascii_begin (s),
|
|
1442 idx - string_ascii_begin (s)));
|
|
1443 #ifdef SLEDGEHAMMER_CHECK_ASCII_BEGIN
|
|
1444 assert (retval == charcount_to_bytecount (string_data (s), idx));
|
|
1445 #endif
|
|
1446 return retval;
|
|
1447 }
|
|
1448
|
|
1449 /* Convert a substring length (starting at byte offset OFF) from bytes to
|
|
1450 chars. */
|
|
1451 DECLARE_INLINE_HEADER (
|
|
1452 Charcount
|
|
1453 string_offset_byte_to_char_len (Lisp_String *s, Bytecount off, Bytecount len)
|
|
1454 )
|
428
|
1455 {
|
771
|
1456 Charcount retval;
|
|
1457 if (off + len <= (Bytecount) string_ascii_begin (s))
|
|
1458 retval = len;
|
|
1459 else if (off < (Bytecount) string_ascii_begin (s))
|
|
1460 retval =
|
|
1461 string_ascii_begin (s) - off +
|
|
1462 bytecount_to_charcount (string_data (s) + string_ascii_begin (s),
|
|
1463 len - (string_ascii_begin (s) - off));
|
|
1464 else
|
|
1465 retval = bytecount_to_charcount (string_data (s) + off, len);
|
|
1466 #ifdef SLEDGEHAMMER_CHECK_ASCII_BEGIN
|
|
1467 assert (retval == bytecount_to_charcount (string_data (s) + off, len));
|
|
1468 #endif
|
|
1469 return retval;
|
428
|
1470 }
|
|
1471
|
771
|
1472 /* Convert a substring length (starting at byte offset OFF) from chars to
|
|
1473 bytes. */
|
|
1474 DECLARE_INLINE_HEADER (
|
|
1475 Bytecount
|
|
1476 string_offset_char_to_byte_len (Lisp_String *s, Bytecount off, Charcount len)
|
|
1477 )
|
|
1478 {
|
|
1479 Bytecount retval;
|
|
1480 if (off + len <= (Bytecount) string_ascii_begin (s))
|
|
1481 retval = len;
|
|
1482 else if (off < (Bytecount) string_ascii_begin (s))
|
|
1483 retval =
|
|
1484 string_ascii_begin (s) - off +
|
|
1485 charcount_to_bytecount (string_data (s) + string_ascii_begin (s),
|
|
1486 len - (string_ascii_begin (s) - off));
|
|
1487 else
|
|
1488 retval = charcount_to_bytecount (string_data (s) + off, len);
|
|
1489 #ifdef SLEDGEHAMMER_CHECK_ASCII_BEGIN
|
|
1490 assert (retval == charcount_to_bytecount (string_data (s) + off, len));
|
|
1491 #endif
|
|
1492 return retval;
|
|
1493 }
|
|
1494
|
|
1495 DECLARE_INLINE_HEADER (
|
|
1496 Intbyte *
|
|
1497 string_char_addr (Lisp_String *s, Charcount idx)
|
|
1498 )
|
|
1499 {
|
|
1500 return string_data (s) + string_index_char_to_byte (s, idx);
|
|
1501 }
|
|
1502
|
428
|
1503 void set_string_char (Lisp_String *s, Charcount i, Emchar c);
|
|
1504
|
|
1505 #else /* not MULE */
|
|
1506
|
771
|
1507 #define string_index_byte_to_char(s, idx) (idx)
|
|
1508 #define string_index_char_to_byte(s, idx) (idx)
|
|
1509 #define string_offset_byte_to_char_len(s, off, len) (len)
|
|
1510 #define string_offset_char_to_byte_len(s, off, len) (len)
|
428
|
1511 # define string_char_addr(s, i) string_byte_addr (s, i)
|
771
|
1512 /* WARNING: If you modify an existing string, you must call
|
|
1513 bump_string_modiff() afterwards. */
|
|
1514 # define set_string_char(s, i, c) set_string_byte (s, i, (Intbyte) c)
|
428
|
1515
|
|
1516 #endif /* not MULE */
|
|
1517
|
456
|
1518 /* Return the true aligned size of a struct whose last member is a
|
|
1519 variable-length array field. (this is known as the "struct hack") */
|
|
1520 /* Implementation: in practice, structtype and fieldtype usually have
|
|
1521 the same alignment, but we can't be sure. We need to use
|
|
1522 ALIGN_SIZE to be absolutely sure of getting the correct alignment.
|
|
1523 To help the compiler's optimizer, we use a ternary expression that
|
|
1524 only a very stupid compiler would fail to correctly simplify. */
|
|
1525 #define FLEXIBLE_ARRAY_STRUCT_SIZEOF(structtype, \
|
|
1526 fieldtype, \
|
|
1527 fieldname, \
|
|
1528 array_length) \
|
|
1529 (ALIGNOF (structtype) == ALIGNOF (fieldtype) \
|
|
1530 ? (offsetof (structtype, fieldname) + \
|
|
1531 (offsetof (structtype, fieldname[1]) - \
|
|
1532 offsetof (structtype, fieldname[0])) * \
|
|
1533 (array_length)) \
|
|
1534 : (ALIGN_SIZE \
|
|
1535 ((offsetof (structtype, fieldname) + \
|
|
1536 (offsetof (structtype, fieldname[1]) - \
|
|
1537 offsetof (structtype, fieldname[0])) * \
|
|
1538 (array_length)), \
|
|
1539 ALIGNOF (structtype))))
|
442
|
1540
|
|
1541 /*------------------------------ vector --------------------------------*/
|
428
|
1542
|
|
1543 struct Lisp_Vector
|
|
1544 {
|
|
1545 struct lcrecord_header header;
|
|
1546 long size;
|
|
1547 /* next is now chained through v->contents[size], terminated by Qzero.
|
|
1548 This means that pure vectors don't need a "next" */
|
|
1549 /* struct Lisp_Vector *next; */
|
|
1550 Lisp_Object contents[1];
|
|
1551 };
|
|
1552 typedef struct Lisp_Vector Lisp_Vector;
|
|
1553
|
|
1554 DECLARE_LRECORD (vector, Lisp_Vector);
|
|
1555 #define XVECTOR(x) XRECORD (x, vector, Lisp_Vector)
|
|
1556 #define XSETVECTOR(x, p) XSETRECORD (x, p, vector)
|
617
|
1557 #define wrap_vector(p) wrap_record (p, vector)
|
428
|
1558 #define VECTORP(x) RECORDP (x, vector)
|
|
1559 #define CHECK_VECTOR(x) CHECK_RECORD (x, vector)
|
|
1560 #define CONCHECK_VECTOR(x) CONCHECK_RECORD (x, vector)
|
|
1561
|
|
1562 #define vector_length(v) ((v)->size)
|
|
1563 #define XVECTOR_LENGTH(s) vector_length (XVECTOR (s))
|
|
1564 #define vector_data(v) ((v)->contents)
|
|
1565 #define XVECTOR_DATA(s) vector_data (XVECTOR (s))
|
|
1566
|
442
|
1567 /*---------------------------- bit vectors -----------------------------*/
|
428
|
1568
|
|
1569 #if (LONGBITS < 16)
|
|
1570 #error What the hell?!
|
|
1571 #elif (LONGBITS < 32)
|
|
1572 # define LONGBITS_LOG2 4
|
|
1573 # define LONGBITS_POWER_OF_2 16
|
|
1574 #elif (LONGBITS < 64)
|
|
1575 # define LONGBITS_LOG2 5
|
|
1576 # define LONGBITS_POWER_OF_2 32
|
|
1577 #elif (LONGBITS < 128)
|
|
1578 # define LONGBITS_LOG2 6
|
|
1579 # define LONGBITS_POWER_OF_2 64
|
|
1580 #else
|
|
1581 #error You really have 128-bit integers?!
|
|
1582 #endif
|
|
1583
|
|
1584 struct Lisp_Bit_Vector
|
|
1585 {
|
|
1586 struct lrecord_header lheader;
|
|
1587 Lisp_Object next;
|
665
|
1588 Elemcount size;
|
428
|
1589 unsigned long bits[1];
|
|
1590 };
|
|
1591 typedef struct Lisp_Bit_Vector Lisp_Bit_Vector;
|
|
1592
|
|
1593 DECLARE_LRECORD (bit_vector, Lisp_Bit_Vector);
|
|
1594 #define XBIT_VECTOR(x) XRECORD (x, bit_vector, Lisp_Bit_Vector)
|
|
1595 #define XSETBIT_VECTOR(x, p) XSETRECORD (x, p, bit_vector)
|
617
|
1596 #define wrap_bit_vector(p) wrap_record (p, bit_vector)
|
428
|
1597 #define BIT_VECTORP(x) RECORDP (x, bit_vector)
|
|
1598 #define CHECK_BIT_VECTOR(x) CHECK_RECORD (x, bit_vector)
|
|
1599 #define CONCHECK_BIT_VECTOR(x) CONCHECK_RECORD (x, bit_vector)
|
|
1600
|
|
1601 #define BITP(x) (INTP (x) && (XINT (x) == 0 || XINT (x) == 1))
|
|
1602
|
|
1603 #define CHECK_BIT(x) do { \
|
|
1604 if (!BITP (x)) \
|
|
1605 dead_wrong_type_argument (Qbitp, x);\
|
|
1606 } while (0)
|
|
1607
|
|
1608 #define CONCHECK_BIT(x) do { \
|
|
1609 if (!BITP (x)) \
|
|
1610 x = wrong_type_argument (Qbitp, x); \
|
|
1611 } while (0)
|
|
1612
|
|
1613 #define bit_vector_length(v) ((v)->size)
|
|
1614 #define bit_vector_next(v) ((v)->next)
|
|
1615
|
665
|
1616 INLINE_HEADER int bit_vector_bit (Lisp_Bit_Vector *v, Elemcount n);
|
442
|
1617 INLINE_HEADER int
|
665
|
1618 bit_vector_bit (Lisp_Bit_Vector *v, Elemcount n)
|
428
|
1619 {
|
|
1620 return ((v->bits[n >> LONGBITS_LOG2] >> (n & (LONGBITS_POWER_OF_2 - 1)))
|
|
1621 & 1);
|
|
1622 }
|
|
1623
|
665
|
1624 INLINE_HEADER void set_bit_vector_bit (Lisp_Bit_Vector *v, Elemcount n, int value);
|
442
|
1625 INLINE_HEADER void
|
665
|
1626 set_bit_vector_bit (Lisp_Bit_Vector *v, Elemcount n, int value)
|
428
|
1627 {
|
|
1628 if (value)
|
|
1629 v->bits[n >> LONGBITS_LOG2] |= (1UL << (n & (LONGBITS_POWER_OF_2 - 1)));
|
|
1630 else
|
|
1631 v->bits[n >> LONGBITS_LOG2] &= ~(1UL << (n & (LONGBITS_POWER_OF_2 - 1)));
|
|
1632 }
|
|
1633
|
|
1634 /* Number of longs required to hold LEN bits */
|
|
1635 #define BIT_VECTOR_LONG_STORAGE(len) \
|
|
1636 (((len) + LONGBITS_POWER_OF_2 - 1) >> LONGBITS_LOG2)
|
|
1637
|
442
|
1638 /*------------------------------ symbol --------------------------------*/
|
428
|
1639
|
440
|
1640 typedef struct Lisp_Symbol Lisp_Symbol;
|
428
|
1641 struct Lisp_Symbol
|
|
1642 {
|
|
1643 struct lrecord_header lheader;
|
|
1644 /* next symbol in this obarray bucket */
|
440
|
1645 Lisp_Symbol *next;
|
|
1646 Lisp_String *name;
|
428
|
1647 Lisp_Object value;
|
|
1648 Lisp_Object function;
|
|
1649 Lisp_Object plist;
|
|
1650 };
|
|
1651
|
|
1652 #define SYMBOL_IS_KEYWORD(sym) \
|
|
1653 ((string_byte (symbol_name (XSYMBOL (sym)), 0) == ':') \
|
|
1654 && EQ (sym, oblookup (Vobarray, \
|
|
1655 string_data (symbol_name (XSYMBOL (sym))), \
|
|
1656 string_length (symbol_name (XSYMBOL (sym))))))
|
|
1657 #define KEYWORDP(obj) (SYMBOLP (obj) && SYMBOL_IS_KEYWORD (obj))
|
|
1658
|
|
1659 DECLARE_LRECORD (symbol, Lisp_Symbol);
|
|
1660 #define XSYMBOL(x) XRECORD (x, symbol, Lisp_Symbol)
|
|
1661 #define XSETSYMBOL(x, p) XSETRECORD (x, p, symbol)
|
617
|
1662 #define wrap_symbol(p) wrap_record (p, symbol)
|
428
|
1663 #define SYMBOLP(x) RECORDP (x, symbol)
|
|
1664 #define CHECK_SYMBOL(x) CHECK_RECORD (x, symbol)
|
|
1665 #define CONCHECK_SYMBOL(x) CONCHECK_RECORD (x, symbol)
|
|
1666
|
|
1667 #define symbol_next(s) ((s)->next)
|
|
1668 #define symbol_name(s) ((s)->name)
|
|
1669 #define symbol_value(s) ((s)->value)
|
|
1670 #define symbol_function(s) ((s)->function)
|
|
1671 #define symbol_plist(s) ((s)->plist)
|
|
1672
|
442
|
1673 /*------------------------------- subr ---------------------------------*/
|
428
|
1674
|
|
1675 typedef Lisp_Object (*lisp_fn_t) (void);
|
|
1676
|
|
1677 struct Lisp_Subr
|
|
1678 {
|
|
1679 struct lrecord_header lheader;
|
442
|
1680 short min_args;
|
|
1681 short max_args;
|
|
1682 const char *prompt;
|
|
1683 const char *doc;
|
|
1684 const char *name;
|
428
|
1685 lisp_fn_t subr_fn;
|
|
1686 };
|
|
1687 typedef struct Lisp_Subr Lisp_Subr;
|
|
1688
|
|
1689 DECLARE_LRECORD (subr, Lisp_Subr);
|
|
1690 #define XSUBR(x) XRECORD (x, subr, Lisp_Subr)
|
|
1691 #define XSETSUBR(x, p) XSETRECORD (x, p, subr)
|
617
|
1692 #define wrap_subr(p) wrap_record (p, subr)
|
428
|
1693 #define SUBRP(x) RECORDP (x, subr)
|
|
1694 #define CHECK_SUBR(x) CHECK_RECORD (x, subr)
|
|
1695 #define CONCHECK_SUBR(x) CONCHECK_RECORD (x, subr)
|
|
1696
|
436
|
1697 #define subr_function(subr) ((subr)->subr_fn)
|
|
1698 #define SUBR_FUNCTION(subr,max_args) \
|
|
1699 ((Lisp_Object (*) (EXFUN_##max_args)) (subr)->subr_fn)
|
|
1700 #define subr_name(subr) ((subr)->name)
|
428
|
1701
|
442
|
1702 /*------------------------------ marker --------------------------------*/
|
|
1703
|
428
|
1704
|
440
|
1705 typedef struct Lisp_Marker Lisp_Marker;
|
428
|
1706 struct Lisp_Marker
|
|
1707 {
|
|
1708 struct lrecord_header lheader;
|
440
|
1709 Lisp_Marker *next;
|
|
1710 Lisp_Marker *prev;
|
428
|
1711 struct buffer *buffer;
|
665
|
1712 Membpos membpos;
|
428
|
1713 char insertion_type;
|
|
1714 };
|
|
1715
|
|
1716 DECLARE_LRECORD (marker, Lisp_Marker);
|
|
1717 #define XMARKER(x) XRECORD (x, marker, Lisp_Marker)
|
|
1718 #define XSETMARKER(x, p) XSETRECORD (x, p, marker)
|
617
|
1719 #define wrap_marker(p) wrap_record (p, marker)
|
428
|
1720 #define MARKERP(x) RECORDP (x, marker)
|
|
1721 #define CHECK_MARKER(x) CHECK_RECORD (x, marker)
|
|
1722 #define CONCHECK_MARKER(x) CONCHECK_RECORD (x, marker)
|
|
1723
|
|
1724 /* The second check was looking for GCed markers still in use */
|
|
1725 /* if (INTP (XMARKER (x)->lheader.next.v)) abort (); */
|
|
1726
|
|
1727 #define marker_next(m) ((m)->next)
|
|
1728 #define marker_prev(m) ((m)->prev)
|
|
1729
|
442
|
1730 /*------------------------------- char ---------------------------------*/
|
428
|
1731
|
|
1732 #define CHARP(x) (XTYPE (x) == Lisp_Type_Char)
|
|
1733
|
|
1734 #ifdef ERROR_CHECK_TYPECHECK
|
|
1735
|
442
|
1736 INLINE_HEADER Emchar XCHAR (Lisp_Object obj);
|
|
1737 INLINE_HEADER Emchar
|
428
|
1738 XCHAR (Lisp_Object obj)
|
|
1739 {
|
|
1740 assert (CHARP (obj));
|
|
1741 return XCHARVAL (obj);
|
|
1742 }
|
|
1743
|
|
1744 #else
|
|
1745
|
442
|
1746 #define XCHAR(x) ((Emchar)XCHARVAL (x))
|
428
|
1747
|
|
1748 #endif
|
|
1749
|
|
1750 #define CHECK_CHAR(x) CHECK_NONRECORD (x, Lisp_Type_Char, Qcharacterp)
|
|
1751 #define CONCHECK_CHAR(x) CONCHECK_NONRECORD (x, Lisp_Type_Char, Qcharacterp)
|
|
1752
|
|
1753
|
442
|
1754 /*------------------------------ float ---------------------------------*/
|
428
|
1755
|
|
1756 #ifdef LISP_FLOAT_TYPE
|
|
1757
|
|
1758 /* Note: the 'unused_next_' field exists only to ensure that the
|
|
1759 `next' pointer fits within the structure, for the purposes of the
|
|
1760 free list. This makes a difference in the unlikely case of
|
|
1761 sizeof(double) being smaller than sizeof(void *). */
|
|
1762
|
|
1763 struct Lisp_Float
|
|
1764 {
|
|
1765 struct lrecord_header lheader;
|
|
1766 union { double d; struct Lisp_Float *unused_next_; } data;
|
|
1767 };
|
|
1768 typedef struct Lisp_Float Lisp_Float;
|
|
1769
|
|
1770 DECLARE_LRECORD (float, Lisp_Float);
|
|
1771 #define XFLOAT(x) XRECORD (x, float, Lisp_Float)
|
|
1772 #define XSETFLOAT(x, p) XSETRECORD (x, p, float)
|
617
|
1773 #define wrap_float(p) wrap_record (p, float)
|
428
|
1774 #define FLOATP(x) RECORDP (x, float)
|
|
1775 #define CHECK_FLOAT(x) CHECK_RECORD (x, float)
|
|
1776 #define CONCHECK_FLOAT(x) CONCHECK_RECORD (x, float)
|
|
1777
|
|
1778 #define float_data(f) ((f)->data.d)
|
|
1779 #define XFLOAT_DATA(x) float_data (XFLOAT (x))
|
|
1780
|
|
1781 #define XFLOATINT(n) extract_float (n)
|
|
1782
|
|
1783 #define CHECK_INT_OR_FLOAT(x) do { \
|
|
1784 if (!INT_OR_FLOATP (x)) \
|
|
1785 dead_wrong_type_argument (Qnumberp, x); \
|
|
1786 } while (0)
|
|
1787
|
|
1788 #define CONCHECK_INT_OR_FLOAT(x) do { \
|
|
1789 if (!INT_OR_FLOATP (x)) \
|
|
1790 x = wrong_type_argument (Qnumberp, x); \
|
|
1791 } while (0)
|
|
1792
|
|
1793 # define INT_OR_FLOATP(x) (INTP (x) || FLOATP (x))
|
|
1794
|
|
1795 #else /* not LISP_FLOAT_TYPE */
|
|
1796
|
|
1797 #define XFLOAT(x) --- error! No float support. ---
|
|
1798 #define XSETFLOAT(x, p) --- error! No float support. ---
|
|
1799 #define FLOATP(x) 0
|
|
1800 #define CHECK_FLOAT(x) --- error! No float support. ---
|
|
1801 #define CONCHECK_FLOAT(x) --- error! No float support. ---
|
|
1802
|
|
1803 #define XFLOATINT(n) XINT(n)
|
|
1804 #define CHECK_INT_OR_FLOAT CHECK_INT
|
|
1805 #define CONCHECK_INT_OR_FLOAT CONCHECK_INT
|
|
1806 #define INT_OR_FLOATP(x) INTP (x)
|
|
1807
|
|
1808 #endif /* not LISP_FLOAT_TYPE */
|
|
1809
|
442
|
1810 /*-------------------------------- int ---------------------------------*/
|
428
|
1811
|
|
1812 #define ZEROP(x) EQ (x, Qzero)
|
|
1813
|
|
1814 #ifdef ERROR_CHECK_TYPECHECK
|
|
1815
|
442
|
1816 INLINE_HEADER EMACS_INT XINT (Lisp_Object obj);
|
|
1817 INLINE_HEADER EMACS_INT
|
428
|
1818 XINT (Lisp_Object obj)
|
|
1819 {
|
|
1820 assert (INTP (obj));
|
|
1821 return XREALINT (obj);
|
|
1822 }
|
|
1823
|
442
|
1824 INLINE_HEADER EMACS_INT XCHAR_OR_INT (Lisp_Object obj);
|
|
1825 INLINE_HEADER EMACS_INT
|
428
|
1826 XCHAR_OR_INT (Lisp_Object obj)
|
|
1827 {
|
|
1828 assert (INTP (obj) || CHARP (obj));
|
|
1829 return CHARP (obj) ? XCHAR (obj) : XINT (obj);
|
|
1830 }
|
|
1831
|
|
1832 #else /* no error checking */
|
|
1833
|
|
1834 #define XINT(obj) XREALINT (obj)
|
|
1835 #define XCHAR_OR_INT(obj) (CHARP (obj) ? XCHAR (obj) : XINT (obj))
|
|
1836
|
|
1837 #endif /* no error checking */
|
|
1838
|
|
1839 #define CHECK_INT(x) do { \
|
|
1840 if (!INTP (x)) \
|
|
1841 dead_wrong_type_argument (Qintegerp, x); \
|
|
1842 } while (0)
|
|
1843
|
|
1844 #define CONCHECK_INT(x) do { \
|
|
1845 if (!INTP (x)) \
|
|
1846 x = wrong_type_argument (Qintegerp, x); \
|
|
1847 } while (0)
|
|
1848
|
|
1849 #define NATNUMP(x) (INTP (x) && XINT (x) >= 0)
|
|
1850
|
|
1851 #define CHECK_NATNUM(x) do { \
|
|
1852 if (!NATNUMP (x)) \
|
|
1853 dead_wrong_type_argument (Qnatnump, x); \
|
|
1854 } while (0)
|
|
1855
|
|
1856 #define CONCHECK_NATNUM(x) do { \
|
|
1857 if (!NATNUMP (x)) \
|
|
1858 x = wrong_type_argument (Qnatnump, x); \
|
|
1859 } while (0)
|
|
1860
|
|
1861 /* next three always continuable because they coerce their arguments. */
|
|
1862 #define CHECK_INT_COERCE_CHAR(x) do { \
|
|
1863 if (INTP (x)) \
|
|
1864 ; \
|
|
1865 else if (CHARP (x)) \
|
|
1866 x = make_int (XCHAR (x)); \
|
|
1867 else \
|
|
1868 x = wrong_type_argument (Qinteger_or_char_p, x); \
|
|
1869 } while (0)
|
|
1870
|
|
1871 #define CHECK_INT_COERCE_MARKER(x) do { \
|
|
1872 if (INTP (x)) \
|
|
1873 ; \
|
|
1874 else if (MARKERP (x)) \
|
|
1875 x = make_int (marker_position (x)); \
|
|
1876 else \
|
|
1877 x = wrong_type_argument (Qinteger_or_marker_p, x); \
|
|
1878 } while (0)
|
|
1879
|
|
1880 #define CHECK_INT_COERCE_CHAR_OR_MARKER(x) do { \
|
|
1881 if (INTP (x)) \
|
|
1882 ; \
|
|
1883 else if (CHARP (x)) \
|
|
1884 x = make_int (XCHAR (x)); \
|
|
1885 else if (MARKERP (x)) \
|
|
1886 x = make_int (marker_position (x)); \
|
|
1887 else \
|
|
1888 x = wrong_type_argument (Qinteger_char_or_marker_p, x); \
|
|
1889 } while (0)
|
|
1890
|
|
1891
|
442
|
1892 /*--------------------------- readonly objects -------------------------*/
|
440
|
1893
|
428
|
1894 #define CHECK_C_WRITEABLE(obj) \
|
|
1895 do { if (c_readonly (obj)) c_write_error (obj); } while (0)
|
|
1896
|
|
1897 #define CHECK_LISP_WRITEABLE(obj) \
|
|
1898 do { if (lisp_readonly (obj)) lisp_write_error (obj); } while (0)
|
|
1899
|
|
1900 #define C_READONLY(obj) (C_READONLY_RECORD_HEADER_P(XRECORD_LHEADER (obj)))
|
|
1901 #define LISP_READONLY(obj) (LISP_READONLY_RECORD_HEADER_P(XRECORD_LHEADER (obj)))
|
|
1902
|
442
|
1903 /*----------------------------- structrures ----------------------------*/
|
428
|
1904
|
|
1905 typedef struct structure_keyword_entry structure_keyword_entry;
|
|
1906 struct structure_keyword_entry
|
|
1907 {
|
|
1908 Lisp_Object keyword;
|
|
1909 int (*validate) (Lisp_Object keyword, Lisp_Object value,
|
578
|
1910 Error_Behavior errb);
|
428
|
1911 };
|
|
1912
|
|
1913 typedef struct
|
|
1914 {
|
|
1915 Dynarr_declare (structure_keyword_entry);
|
|
1916 } structure_keyword_entry_dynarr;
|
|
1917
|
|
1918 typedef struct structure_type structure_type;
|
|
1919 struct structure_type
|
|
1920 {
|
|
1921 Lisp_Object type;
|
|
1922 structure_keyword_entry_dynarr *keywords;
|
578
|
1923 int (*validate) (Lisp_Object data, Error_Behavior errb);
|
428
|
1924 Lisp_Object (*instantiate) (Lisp_Object data);
|
|
1925 };
|
|
1926
|
|
1927 typedef struct
|
|
1928 {
|
|
1929 Dynarr_declare (structure_type);
|
|
1930 } structure_type_dynarr;
|
|
1931
|
|
1932 struct structure_type *define_structure_type (Lisp_Object type,
|
|
1933 int (*validate)
|
|
1934 (Lisp_Object data,
|
578
|
1935 Error_Behavior errb),
|
428
|
1936 Lisp_Object (*instantiate)
|
|
1937 (Lisp_Object data));
|
|
1938 void define_structure_type_keyword (struct structure_type *st,
|
|
1939 Lisp_Object keyword,
|
|
1940 int (*validate) (Lisp_Object keyword,
|
|
1941 Lisp_Object value,
|
578
|
1942 Error_Behavior errb));
|
428
|
1943
|
442
|
1944 /*---------------------------- weak lists ------------------------------*/
|
428
|
1945
|
|
1946 enum weak_list_type
|
|
1947 {
|
|
1948 /* element disappears if it's unmarked. */
|
|
1949 WEAK_LIST_SIMPLE,
|
|
1950 /* element disappears if it's a cons and either its car or
|
|
1951 cdr is unmarked. */
|
|
1952 WEAK_LIST_ASSOC,
|
|
1953 /* element disappears if it's a cons and its car is unmarked. */
|
|
1954 WEAK_LIST_KEY_ASSOC,
|
|
1955 /* element disappears if it's a cons and its cdr is unmarked. */
|
442
|
1956 WEAK_LIST_VALUE_ASSOC,
|
|
1957 /* element disappears if it's a cons and neither its car nor
|
|
1958 its cdr is marked. */
|
|
1959 WEAK_LIST_FULL_ASSOC
|
428
|
1960 };
|
|
1961
|
|
1962 struct weak_list
|
|
1963 {
|
|
1964 struct lcrecord_header header;
|
|
1965 Lisp_Object list; /* don't mark through this! */
|
|
1966 enum weak_list_type type;
|
|
1967 Lisp_Object next_weak; /* don't mark through this! */
|
|
1968 };
|
|
1969
|
|
1970 DECLARE_LRECORD (weak_list, struct weak_list);
|
|
1971 #define XWEAK_LIST(x) XRECORD (x, weak_list, struct weak_list)
|
|
1972 #define XSETWEAK_LIST(x, p) XSETRECORD (x, p, weak_list)
|
617
|
1973 #define wrap_weak_list(p) wrap_record (p, weak_list)
|
428
|
1974 #define WEAK_LISTP(x) RECORDP (x, weak_list)
|
|
1975 #define CHECK_WEAK_LIST(x) CHECK_RECORD (x, weak_list)
|
|
1976 #define CONCHECK_WEAK_LIST(x) CONCHECK_RECORD (x, weak_list)
|
|
1977
|
|
1978 #define weak_list_list(w) ((w)->list)
|
|
1979 #define XWEAK_LIST_LIST(w) (XWEAK_LIST (w)->list)
|
|
1980
|
|
1981 Lisp_Object make_weak_list (enum weak_list_type type);
|
|
1982 /* The following two are only called by the garbage collector */
|
|
1983 int finish_marking_weak_lists (void);
|
|
1984 void prune_weak_lists (void);
|
|
1985
|
442
|
1986 /*-------------------------- lcrecord-list -----------------------------*/
|
428
|
1987
|
|
1988 struct lcrecord_list
|
|
1989 {
|
|
1990 struct lcrecord_header header;
|
|
1991 Lisp_Object free;
|
665
|
1992 Elemcount size;
|
442
|
1993 const struct lrecord_implementation *implementation;
|
428
|
1994 };
|
|
1995
|
|
1996 DECLARE_LRECORD (lcrecord_list, struct lcrecord_list);
|
|
1997 #define XLCRECORD_LIST(x) XRECORD (x, lcrecord_list, struct lcrecord_list)
|
|
1998 #define XSETLCRECORD_LIST(x, p) XSETRECORD (x, p, lcrecord_list)
|
617
|
1999 #define wrap_lcrecord_list(p) wrap_record (p, lcrecord_list)
|
428
|
2000 #define LCRECORD_LISTP(x) RECORDP (x, lcrecord_list)
|
|
2001 /* #define CHECK_LCRECORD_LIST(x) CHECK_RECORD (x, lcrecord_list)
|
|
2002 Lcrecord lists should never escape to the Lisp level, so
|
|
2003 functions should not be doing this. */
|
|
2004
|
665
|
2005 Lisp_Object make_lcrecord_list (Elemcount size,
|
442
|
2006 const struct lrecord_implementation
|
428
|
2007 *implementation);
|
|
2008 Lisp_Object allocate_managed_lcrecord (Lisp_Object lcrecord_list);
|
|
2009 void free_managed_lcrecord (Lisp_Object lcrecord_list, Lisp_Object lcrecord);
|
|
2010
|
|
2011
|
|
2012 /************************************************************************/
|
771
|
2013 /* Definitions related to the format of text and of characters */
|
|
2014 /************************************************************************/
|
|
2015
|
|
2016 /* Note:
|
|
2017
|
|
2018 "internally formatted text" and the term "internal format" in
|
|
2019 general are likely to refer to the format of text in buffers and
|
|
2020 strings; "externally formatted text" and the term "external format"
|
|
2021 refer to any text format used in the O.S. or elsewhere outside of
|
|
2022 XEmacs. The format of text and of a character are related and
|
|
2023 there must be a one-to-one relationship (hopefully through a
|
|
2024 relatively simple algorithmic means of conversion) between a string
|
|
2025 of text and an equivalent array of characters, but the conversion
|
|
2026 between the two is NOT necessarily trivial.
|
|
2027
|
|
2028 In a non-Mule XEmacs, allowed characters are numbered 0 through
|
|
2029 255, where no fixed meaning is assigned to them, but (when
|
|
2030 representing text, rather than bytes in a binary file) in practice
|
|
2031 the lower half represents ASCII and the upper half some other 8-bit
|
|
2032 character set (chosen by setting the font, case tables, syntax
|
|
2033 tables, etc. appropriately for the character set through ad-hoc
|
|
2034 means such as the `iso-8859-1' file and the
|
|
2035 `standard-display-european' function).
|
|
2036
|
|
2037 #### Finish this.
|
|
2038
|
|
2039 */
|
|
2040 #include "text.h"
|
|
2041
|
|
2042
|
|
2043 /************************************************************************/
|
428
|
2044 /* Definitions of primitive Lisp functions and variables */
|
|
2045 /************************************************************************/
|
|
2046
|
|
2047
|
|
2048 /* DEFUN - Define a built-in Lisp-visible C function or `subr'.
|
|
2049 `lname' should be the name to give the function in Lisp,
|
|
2050 as a null-terminated C string.
|
|
2051 `Fname' should be the C equivalent of `lname', using only characters
|
|
2052 valid in a C identifier, with an "F" prepended.
|
|
2053 The name of the C constant structure that records information
|
|
2054 on this function for internal use is "S" concatenated with Fname.
|
|
2055 `min_args' should be a number, the minimum number of arguments allowed.
|
|
2056 `max_args' should be a number, the maximum number of arguments allowed,
|
|
2057 or else MANY or UNEVALLED.
|
|
2058 MANY means pass a vector of evaluated arguments,
|
|
2059 in the form of an integer number-of-arguments
|
|
2060 followed by the address of a vector of Lisp_Objects
|
|
2061 which contains the argument values.
|
|
2062 UNEVALLED means pass the list of unevaluated arguments.
|
|
2063 `prompt' says how to read arguments for an interactive call.
|
|
2064 See the doc string for `interactive'.
|
|
2065 A null string means call interactively with no arguments.
|
|
2066 `arglist' are the comma-separated arguments (always Lisp_Objects) for
|
|
2067 the function.
|
|
2068 The docstring for the function is placed as a "C" comment between
|
|
2069 the prompt and the `args' argument. make-docfile reads the
|
|
2070 comment and creates the DOC file from it.
|
|
2071 */
|
|
2072
|
|
2073 #define EXFUN_0 void
|
|
2074 #define EXFUN_1 Lisp_Object
|
|
2075 #define EXFUN_2 Lisp_Object,Lisp_Object
|
|
2076 #define EXFUN_3 Lisp_Object,Lisp_Object,Lisp_Object
|
|
2077 #define EXFUN_4 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object
|
|
2078 #define EXFUN_5 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object
|
|
2079 #define EXFUN_6 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object, \
|
|
2080 Lisp_Object
|
|
2081 #define EXFUN_7 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object, \
|
|
2082 Lisp_Object,Lisp_Object
|
|
2083 #define EXFUN_8 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object, \
|
|
2084 Lisp_Object,Lisp_Object,Lisp_Object
|
|
2085 #define EXFUN_MANY int, Lisp_Object*
|
|
2086 #define EXFUN_UNEVALLED Lisp_Object
|
|
2087 #define EXFUN(sym, max_args) Lisp_Object sym (EXFUN_##max_args)
|
|
2088
|
|
2089 #define SUBR_MAX_ARGS 8
|
|
2090 #define MANY -2
|
|
2091 #define UNEVALLED -1
|
|
2092
|
|
2093 /* Can't be const, because then subr->doc is read-only and
|
|
2094 Snarf_documentation chokes */
|
|
2095
|
|
2096 #define DEFUN(lname, Fname, min_args, max_args, prompt, arglist) \
|
|
2097 Lisp_Object Fname (EXFUN_##max_args); \
|
442
|
2098 static struct Lisp_Subr S##Fname = \
|
|
2099 { \
|
|
2100 { /* struct lrecord_header */ \
|
|
2101 lrecord_type_subr, /* lrecord_type_index */ \
|
|
2102 1, /* mark bit */ \
|
|
2103 1, /* c_readonly bit */ \
|
|
2104 1 /* lisp_readonly bit */ \
|
|
2105 }, \
|
|
2106 min_args, \
|
|
2107 max_args, \
|
|
2108 prompt, \
|
|
2109 0, /* doc string */ \
|
|
2110 lname, \
|
|
2111 (lisp_fn_t) Fname \
|
|
2112 }; \
|
428
|
2113 Lisp_Object Fname (DEFUN_##max_args arglist)
|
|
2114
|
|
2115 /* Heavy ANSI C preprocessor hackery to get DEFUN to declare a
|
|
2116 prototype that matches max_args, and add the obligatory
|
|
2117 `Lisp_Object' type declaration to the formal C arguments. */
|
|
2118
|
|
2119 #define DEFUN_MANY(named_int, named_Lisp_Object) named_int, named_Lisp_Object
|
|
2120 #define DEFUN_UNEVALLED(args) Lisp_Object args
|
|
2121 #define DEFUN_0() void
|
|
2122 #define DEFUN_1(a) Lisp_Object a
|
|
2123 #define DEFUN_2(a,b) DEFUN_1(a), Lisp_Object b
|
|
2124 #define DEFUN_3(a,b,c) DEFUN_2(a,b), Lisp_Object c
|
|
2125 #define DEFUN_4(a,b,c,d) DEFUN_3(a,b,c), Lisp_Object d
|
|
2126 #define DEFUN_5(a,b,c,d,e) DEFUN_4(a,b,c,d), Lisp_Object e
|
|
2127 #define DEFUN_6(a,b,c,d,e,f) DEFUN_5(a,b,c,d,e), Lisp_Object f
|
|
2128 #define DEFUN_7(a,b,c,d,e,f,g) DEFUN_6(a,b,c,d,e,f), Lisp_Object g
|
|
2129 #define DEFUN_8(a,b,c,d,e,f,g,h) DEFUN_7(a,b,c,d,e,f,g),Lisp_Object h
|
|
2130
|
|
2131 /* WARNING: If you add defines here for higher values of max_args,
|
|
2132 make sure to also fix the clauses in PRIMITIVE_FUNCALL(),
|
|
2133 and change the define of SUBR_MAX_ARGS above. */
|
|
2134
|
|
2135 #include "symeval.h"
|
|
2136
|
|
2137 /* `specpdl' is the special binding/unwind-protect stack.
|
|
2138
|
|
2139 Knuth says (see the Jargon File):
|
|
2140 At MIT, `pdl' [abbreviation for `Push Down List'] used to
|
|
2141 be a more common synonym for `stack'.
|
|
2142 Everywhere else `stack' seems to be the preferred term.
|
|
2143
|
|
2144 specpdl_depth is the current depth of `specpdl'.
|
771
|
2145 Save this for use later as arg to `unbind_to_1'. */
|
428
|
2146 extern int specpdl_depth_counter;
|
|
2147 #define specpdl_depth() specpdl_depth_counter
|
|
2148
|
442
|
2149
|
|
2150 #define CHECK_FUNCTION(fun) do { \
|
|
2151 while (NILP (Ffunctionp (fun))) \
|
|
2152 signal_invalid_function_error (fun); \
|
|
2153 } while (0)
|
|
2154
|
428
|
2155
|
|
2156 /************************************************************************/
|
|
2157 /* Checking for QUIT */
|
|
2158 /************************************************************************/
|
|
2159
|
|
2160 /* Asynchronous events set something_happened, and then are processed
|
|
2161 within the QUIT macro. At this point, we are guaranteed to not be in
|
|
2162 any sensitive code. */
|
|
2163
|
|
2164 extern volatile int something_happened;
|
771
|
2165 extern int dont_check_for_quit;
|
428
|
2166 int check_what_happened (void);
|
|
2167
|
|
2168 extern volatile int quit_check_signal_happened;
|
|
2169 extern volatile int quit_check_signal_tick_count;
|
|
2170 int check_quit (void);
|
|
2171
|
|
2172 void signal_quit (void);
|
|
2173
|
771
|
2174 #define QUIT_FLAG_SAYS_SHOULD_QUIT \
|
|
2175 (!NILP (Vquit_flag) && \
|
|
2176 (NILP (Vinhibit_quit) \
|
|
2177 || (EQ (Vquit_flag, Qcritical) && !dont_check_for_quit)))
|
|
2178
|
428
|
2179 /* Nonzero if ought to quit now. */
|
|
2180 #define QUITP \
|
|
2181 ((quit_check_signal_happened ? check_quit () : 0), \
|
771
|
2182 QUIT_FLAG_SAYS_SHOULD_QUIT)
|
428
|
2183
|
|
2184 /* QUIT used to call QUITP, but there are some places where QUITP
|
|
2185 is called directly, and check_what_happened() should only be called
|
|
2186 when Emacs is actually ready to quit because it could do things
|
|
2187 like switch threads. */
|
|
2188 #define INTERNAL_QUITP \
|
|
2189 ((something_happened ? check_what_happened () : 0), \
|
771
|
2190 QUIT_FLAG_SAYS_SHOULD_QUIT)
|
428
|
2191
|
|
2192 #define INTERNAL_REALLY_QUITP \
|
|
2193 (check_what_happened (), \
|
771
|
2194 QUIT_FLAG_SAYS_SHOULD_QUIT)
|
428
|
2195
|
|
2196 /* Check quit-flag and quit if it is non-nil. Also do any other things
|
|
2197 that might have gotten queued until it was safe. */
|
|
2198 #define QUIT do { if (INTERNAL_QUITP) signal_quit (); } while (0)
|
|
2199
|
|
2200 #define REALLY_QUIT do { if (INTERNAL_REALLY_QUITP) signal_quit (); } while (0)
|
|
2201
|
|
2202
|
|
2203 /************************************************************************/
|
|
2204 /* hashing */
|
|
2205 /************************************************************************/
|
|
2206
|
|
2207 /* #### for a 64-bit machine, we should substitute a prime just over 2^32 */
|
|
2208 #define GOOD_HASH 65599 /* prime number just over 2^16; Dragon book, p. 435 */
|
|
2209 #define HASH2(a,b) (GOOD_HASH * (a) + (b))
|
|
2210 #define HASH3(a,b,c) (GOOD_HASH * HASH2 (a,b) + (c))
|
|
2211 #define HASH4(a,b,c,d) (GOOD_HASH * HASH3 (a,b,c) + (d))
|
|
2212 #define HASH5(a,b,c,d,e) (GOOD_HASH * HASH4 (a,b,c,d) + (e))
|
|
2213 #define HASH6(a,b,c,d,e,f) (GOOD_HASH * HASH5 (a,b,c,d,e) + (f))
|
|
2214 #define HASH7(a,b,c,d,e,f,g) (GOOD_HASH * HASH6 (a,b,c,d,e,f) + (g))
|
|
2215 #define HASH8(a,b,c,d,e,f,g,h) (GOOD_HASH * HASH7 (a,b,c,d,e,f,g) + (h))
|
|
2216 #define HASH9(a,b,c,d,e,f,g,h,i) (GOOD_HASH * HASH8 (a,b,c,d,e,f,g,h) + (i))
|
|
2217
|
|
2218 #define LISP_HASH(obj) ((unsigned long) LISP_TO_VOID (obj))
|
442
|
2219 unsigned long string_hash (const char *xv);
|
665
|
2220 unsigned long memory_hash (const void *xv, Bytecount size);
|
428
|
2221 unsigned long internal_hash (Lisp_Object obj, int depth);
|
|
2222 unsigned long internal_array_hash (Lisp_Object *arr, int size, int depth);
|
|
2223
|
|
2224
|
|
2225 /************************************************************************/
|
|
2226 /* String translation */
|
|
2227 /************************************************************************/
|
|
2228
|
771
|
2229 /* When support for message translation exists, GETTEXT() translates a
|
|
2230 string from English into the language defined by
|
|
2231 `current-language-environment'. This is done by looking the string
|
|
2232 up in a large predefined table; if no translation is found, the
|
|
2233 original string is returned, and the failure is possibly logged so
|
|
2234 that the translation can later be entered into the table.
|
|
2235
|
|
2236 In addition to this, there is a mechanism to snarf message strings
|
|
2237 out of the source code so that they can be entered into the tables.
|
|
2238 This is what make-msgfile.lex does.
|
|
2239
|
|
2240 Handling `format' strings is more difficult: The format string
|
|
2241 should get translated, but not under all circumstances. When the
|
|
2242 format string is a Lisp string, what should happen is that
|
|
2243 Fformat() should format the untranslated args[0] and return that,
|
|
2244 and also call Fgettext() on args[0] and, if that is different,
|
|
2245 format it and store it in the `string-translatable' property of the
|
|
2246 returned string. See Fgettext().
|
|
2247
|
|
2248 CGETTEXT() is the same as GETTEXT() but works with char * strings
|
|
2249 instead of Intbyte * strings.
|
|
2250
|
|
2251 build_msg_string() is a shorthand for build_string (GETTEXT (x)).
|
|
2252 build_msg_intstring() is a shorthand for build_intstring (GETTEXT (x)).
|
|
2253 */
|
|
2254
|
|
2255 #define GETTEXT(x) (x)
|
|
2256 #define CGETTEXT(x) (x)
|
|
2257 #define LISP_GETTEXT(x) (x)
|
428
|
2258
|
|
2259 /* DEFER_GETTEXT is used to identify strings which are translated when
|
|
2260 they are referenced instead of when they are defined.
|
|
2261 These include Qerror_messages and initialized arrays of strings.
|
|
2262 */
|
|
2263 #define DEFER_GETTEXT(x) (x)
|
|
2264
|
|
2265
|
|
2266 /************************************************************************/
|
|
2267 /* Garbage collection / GC-protection */
|
|
2268 /************************************************************************/
|
|
2269
|
|
2270 /* number of bytes of structure consed since last GC */
|
|
2271
|
|
2272 extern EMACS_INT consing_since_gc;
|
|
2273
|
|
2274 /* threshold for doing another gc */
|
|
2275
|
458
|
2276 extern Fixnum gc_cons_threshold;
|
428
|
2277
|
|
2278 /* Structure for recording stack slots that need marking */
|
|
2279
|
|
2280 /* This is a chain of structures, each of which points at a Lisp_Object
|
|
2281 variable whose value should be marked in garbage collection.
|
|
2282 Normally every link of the chain is an automatic variable of a function,
|
|
2283 and its `val' points to some argument or local variable of the function.
|
|
2284 On exit to the function, the chain is set back to the value it had on
|
|
2285 entry. This way, no link remains in the chain when the stack frame
|
|
2286 containing the link disappears.
|
|
2287
|
|
2288 Every function that can call Feval must protect in this fashion all
|
|
2289 Lisp_Object variables whose contents will be used again. */
|
|
2290
|
|
2291 extern struct gcpro *gcprolist;
|
|
2292
|
|
2293 struct gcpro
|
|
2294 {
|
|
2295 struct gcpro *next;
|
771
|
2296 const Lisp_Object *var; /* Address of first protected variable */
|
428
|
2297 int nvars; /* Number of consecutive protected variables */
|
|
2298 };
|
|
2299
|
|
2300 /* Normally, you declare variables gcpro1, gcpro2, ... and use the
|
|
2301 GCPROn() macros. However, if you need to have nested gcpro's,
|
|
2302 declare ngcpro1, ngcpro2, ... and use NGCPROn(). If you need
|
|
2303 to nest another level, use nngcpro1, nngcpro2, ... and use
|
|
2304 NNGCPROn(). If you need to nest yet another level, create
|
|
2305 the appropriate macros. */
|
|
2306
|
|
2307 #ifdef DEBUG_GCPRO
|
|
2308
|
|
2309 void debug_gcpro1 (char *, int, struct gcpro *, Lisp_Object *);
|
|
2310 void debug_gcpro2 (char *, int, struct gcpro *, struct gcpro *,
|
|
2311 Lisp_Object *, Lisp_Object *);
|
|
2312 void debug_gcpro3 (char *, int, struct gcpro *, struct gcpro *, struct gcpro *,
|
|
2313 Lisp_Object *, Lisp_Object *, Lisp_Object *);
|
|
2314 void debug_gcpro4 (char *, int, struct gcpro *, struct gcpro *, struct gcpro *,
|
|
2315 struct gcpro *, Lisp_Object *, Lisp_Object *, Lisp_Object *,
|
|
2316 Lisp_Object *);
|
|
2317 void debug_gcpro5 (char *, int, struct gcpro *, struct gcpro *, struct gcpro *,
|
|
2318 struct gcpro *, struct gcpro *, Lisp_Object *, Lisp_Object *,
|
|
2319 Lisp_Object *, Lisp_Object *, Lisp_Object *);
|
|
2320 void debug_ungcpro(char *, int, struct gcpro *);
|
|
2321
|
|
2322 #define GCPRO1(v) \
|
|
2323 debug_gcpro1 (__FILE__, __LINE__,&gcpro1,&v)
|
|
2324 #define GCPRO2(v1,v2) \
|
|
2325 debug_gcpro2 (__FILE__, __LINE__,&gcpro1,&gcpro2,&v1,&v2)
|
|
2326 #define GCPRO3(v1,v2,v3) \
|
|
2327 debug_gcpro3 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&v1,&v2,&v3)
|
|
2328 #define GCPRO4(v1,v2,v3,v4) \
|
|
2329 debug_gcpro4 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&gcpro4,\
|
|
2330 &v1,&v2,&v3,&v4)
|
|
2331 #define GCPRO5(v1,v2,v3,v4,v5) \
|
|
2332 debug_gcpro5 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&gcpro4,&gcpro5,\
|
|
2333 &v1,&v2,&v3,&v4,&v5)
|
|
2334 #define UNGCPRO \
|
|
2335 debug_ungcpro(__FILE__, __LINE__,&gcpro1)
|
|
2336
|
|
2337 #define NGCPRO1(v) \
|
|
2338 debug_gcpro1 (__FILE__, __LINE__,&ngcpro1,&v)
|
|
2339 #define NGCPRO2(v1,v2) \
|
|
2340 debug_gcpro2 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&v1,&v2)
|
|
2341 #define NGCPRO3(v1,v2,v3) \
|
|
2342 debug_gcpro3 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&v1,&v2,&v3)
|
|
2343 #define NGCPRO4(v1,v2,v3,v4) \
|
|
2344 debug_gcpro4 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&ngcpro4,\
|
|
2345 &v1,&v2,&v3,&v4)
|
|
2346 #define NGCPRO5(v1,v2,v3,v4,v5) \
|
|
2347 debug_gcpro5 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&ngcpro4,\
|
|
2348 &ngcpro5,&v1,&v2,&v3,&v4,&v5)
|
|
2349 #define NUNGCPRO \
|
|
2350 debug_ungcpro(__FILE__, __LINE__,&ngcpro1)
|
|
2351
|
|
2352 #define NNGCPRO1(v) \
|
|
2353 debug_gcpro1 (__FILE__, __LINE__,&nngcpro1,&v)
|
|
2354 #define NNGCPRO2(v1,v2) \
|
|
2355 debug_gcpro2 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&v1,&v2)
|
|
2356 #define NNGCPRO3(v1,v2,v3) \
|
|
2357 debug_gcpro3 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&v1,&v2,&v3)
|
|
2358 #define NNGCPRO4(v1,v2,v3,v4) \
|
|
2359 debug_gcpro4 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&nngcpro4,\
|
|
2360 &v1,&v2,&v3,&v4)
|
|
2361 #define NNGCPRO5(v1,v2,v3,v4,v5) \
|
|
2362 debug_gcpro5 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&nngcpro4,\
|
|
2363 &nngcpro5,&v1,&v2,&v3,&v4,&v5)
|
|
2364 #define NNUNGCPRO \
|
|
2365 debug_ungcpro(__FILE__, __LINE__,&nngcpro1)
|
|
2366
|
|
2367 #else /* ! DEBUG_GCPRO */
|
|
2368
|
|
2369 #define GCPRO1(var1) ((void) ( \
|
|
2370 gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \
|
|
2371 gcprolist = &gcpro1 ))
|
|
2372
|
|
2373 #define GCPRO2(var1, var2) ((void) ( \
|
|
2374 gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \
|
|
2375 gcpro2.next = &gcpro1, gcpro2.var = &var2, gcpro2.nvars = 1, \
|
|
2376 gcprolist = &gcpro2 ))
|
|
2377
|
|
2378 #define GCPRO3(var1, var2, var3) ((void) ( \
|
|
2379 gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \
|
|
2380 gcpro2.next = &gcpro1, gcpro2.var = &var2, gcpro2.nvars = 1, \
|
|
2381 gcpro3.next = &gcpro2, gcpro3.var = &var3, gcpro3.nvars = 1, \
|
|
2382 gcprolist = &gcpro3 ))
|
|
2383
|
|
2384 #define GCPRO4(var1, var2, var3, var4) ((void) ( \
|
|
2385 gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \
|
|
2386 gcpro2.next = &gcpro1, gcpro2.var = &var2, gcpro2.nvars = 1, \
|
|
2387 gcpro3.next = &gcpro2, gcpro3.var = &var3, gcpro3.nvars = 1, \
|
|
2388 gcpro4.next = &gcpro3, gcpro4.var = &var4, gcpro4.nvars = 1, \
|
|
2389 gcprolist = &gcpro4 ))
|
|
2390
|
|
2391 #define GCPRO5(var1, var2, var3, var4, var5) ((void) ( \
|
|
2392 gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \
|
|
2393 gcpro2.next = &gcpro1, gcpro2.var = &var2, gcpro2.nvars = 1, \
|
|
2394 gcpro3.next = &gcpro2, gcpro3.var = &var3, gcpro3.nvars = 1, \
|
|
2395 gcpro4.next = &gcpro3, gcpro4.var = &var4, gcpro4.nvars = 1, \
|
|
2396 gcpro5.next = &gcpro4, gcpro5.var = &var5, gcpro5.nvars = 1, \
|
|
2397 gcprolist = &gcpro5 ))
|
|
2398
|
|
2399 #define UNGCPRO ((void) (gcprolist = gcpro1.next))
|
|
2400
|
|
2401 #define NGCPRO1(var1) ((void) ( \
|
|
2402 ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \
|
|
2403 gcprolist = &ngcpro1 ))
|
|
2404
|
|
2405 #define NGCPRO2(var1, var2) ((void) ( \
|
|
2406 ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \
|
|
2407 ngcpro2.next = &ngcpro1, ngcpro2.var = &var2, ngcpro2.nvars = 1, \
|
|
2408 gcprolist = &ngcpro2 ))
|
|
2409
|
|
2410 #define NGCPRO3(var1, var2, var3) ((void) ( \
|
|
2411 ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \
|
|
2412 ngcpro2.next = &ngcpro1, ngcpro2.var = &var2, ngcpro2.nvars = 1, \
|
|
2413 ngcpro3.next = &ngcpro2, ngcpro3.var = &var3, ngcpro3.nvars = 1, \
|
|
2414 gcprolist = &ngcpro3 ))
|
|
2415
|
|
2416 #define NGCPRO4(var1, var2, var3, var4) ((void) ( \
|
|
2417 ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \
|
|
2418 ngcpro2.next = &ngcpro1, ngcpro2.var = &var2, ngcpro2.nvars = 1, \
|
|
2419 ngcpro3.next = &ngcpro2, ngcpro3.var = &var3, ngcpro3.nvars = 1, \
|
|
2420 ngcpro4.next = &ngcpro3, ngcpro4.var = &var4, ngcpro4.nvars = 1, \
|
|
2421 gcprolist = &ngcpro4 ))
|
|
2422
|
|
2423 #define NGCPRO5(var1, var2, var3, var4, var5) ((void) ( \
|
|
2424 ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \
|
|
2425 ngcpro2.next = &ngcpro1, ngcpro2.var = &var2, ngcpro2.nvars = 1, \
|
|
2426 ngcpro3.next = &ngcpro2, ngcpro3.var = &var3, ngcpro3.nvars = 1, \
|
|
2427 ngcpro4.next = &ngcpro3, ngcpro4.var = &var4, ngcpro4.nvars = 1, \
|
|
2428 ngcpro5.next = &ngcpro4, ngcpro5.var = &var5, ngcpro5.nvars = 1, \
|
|
2429 gcprolist = &ngcpro5 ))
|
|
2430
|
|
2431 #define NUNGCPRO ((void) (gcprolist = ngcpro1.next))
|
|
2432
|
|
2433 #define NNGCPRO1(var1) ((void) ( \
|
|
2434 nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \
|
|
2435 gcprolist = &nngcpro1 ))
|
|
2436
|
|
2437 #define NNGCPRO2(var1, var2) ((void) ( \
|
|
2438 nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \
|
|
2439 nngcpro2.next = &nngcpro1, nngcpro2.var = &var2, nngcpro2.nvars = 1, \
|
|
2440 gcprolist = &nngcpro2 ))
|
|
2441
|
|
2442 #define NNGCPRO3(var1, var2, var3) ((void) ( \
|
|
2443 nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \
|
|
2444 nngcpro2.next = &nngcpro1, nngcpro2.var = &var2, nngcpro2.nvars = 1, \
|
|
2445 nngcpro3.next = &nngcpro2, nngcpro3.var = &var3, nngcpro3.nvars = 1, \
|
|
2446 gcprolist = &nngcpro3 ))
|
|
2447
|
|
2448 #define NNGCPRO4(var1, var2, var3, var4) ((void) ( \
|
|
2449 nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \
|
|
2450 nngcpro2.next = &nngcpro1, nngcpro2.var = &var2, nngcpro2.nvars = 1, \
|
|
2451 nngcpro3.next = &nngcpro2, nngcpro3.var = &var3, nngcpro3.nvars = 1, \
|
|
2452 nngcpro4.next = &nngcpro3, nngcpro4.var = &var4, nngcpro4.nvars = 1, \
|
|
2453 gcprolist = &nngcpro4 ))
|
|
2454
|
|
2455 #define NNGCPRO5(var1, var2, var3, var4, var5) ((void) ( \
|
|
2456 nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \
|
|
2457 nngcpro2.next = &nngcpro1, nngcpro2.var = &var2, nngcpro2.nvars = 1, \
|
|
2458 nngcpro3.next = &nngcpro2, nngcpro3.var = &var3, nngcpro3.nvars = 1, \
|
|
2459 nngcpro4.next = &nngcpro3, nngcpro4.var = &var4, nngcpro4.nvars = 1, \
|
|
2460 nngcpro5.next = &nngcpro4, nngcpro5.var = &var5, nngcpro5.nvars = 1, \
|
|
2461 gcprolist = &nngcpro5 ))
|
|
2462
|
|
2463 #define NNUNGCPRO ((void) (gcprolist = nngcpro1.next))
|
|
2464
|
|
2465 #endif /* ! DEBUG_GCPRO */
|
|
2466
|
|
2467 /* Evaluate expr, UNGCPRO, and then return the value of expr. */
|
|
2468 #define RETURN_UNGCPRO(expr) do \
|
|
2469 { \
|
|
2470 Lisp_Object ret_ungc_val = (expr); \
|
|
2471 UNGCPRO; \
|
|
2472 RETURN_SANS_WARNINGS ret_ungc_val; \
|
|
2473 } while (0)
|
|
2474
|
|
2475 /* Evaluate expr, NUNGCPRO, UNGCPRO, and then return the value of expr. */
|
|
2476 #define RETURN_NUNGCPRO(expr) do \
|
|
2477 { \
|
|
2478 Lisp_Object ret_ungc_val = (expr); \
|
|
2479 NUNGCPRO; \
|
|
2480 UNGCPRO; \
|
|
2481 RETURN_SANS_WARNINGS ret_ungc_val; \
|
|
2482 } while (0)
|
|
2483
|
|
2484 /* Evaluate expr, NNUNGCPRO, NUNGCPRO, UNGCPRO, and then return the
|
|
2485 value of expr. */
|
|
2486 #define RETURN_NNUNGCPRO(expr) do \
|
|
2487 { \
|
|
2488 Lisp_Object ret_ungc_val = (expr); \
|
|
2489 NNUNGCPRO; \
|
|
2490 NUNGCPRO; \
|
|
2491 UNGCPRO; \
|
|
2492 RETURN_SANS_WARNINGS ret_ungc_val; \
|
|
2493 } while (0)
|
|
2494
|
452
|
2495 extern Lisp_Object_ptr_dynarr *staticpros;
|
|
2496
|
771
|
2497 #ifdef DEBUG_XEMACS
|
|
2498
|
|
2499 /* Help debug crashes gc-marking a staticpro'ed object. */
|
|
2500
|
|
2501 void staticpro_1 (Lisp_Object *, char *);
|
|
2502 void staticpro_nodump_1 (Lisp_Object *, char *);
|
|
2503 #define staticpro(ptr) staticpro_1 (ptr, #ptr)
|
|
2504 #define staticpro_nodump(ptr) staticpro_nodump_1 (ptr, #ptr)
|
|
2505
|
|
2506 #else
|
611
|
2507
|
428
|
2508 /* Call staticpro (&var) to protect static variable `var'. */
|
|
2509 void staticpro (Lisp_Object *);
|
|
2510
|
|
2511 /* Call staticpro_nodump (&var) to protect static variable `var'. */
|
|
2512 /* var will not be saved at dump time */
|
|
2513 void staticpro_nodump (Lisp_Object *);
|
|
2514
|
771
|
2515 #endif
|
|
2516
|
|
2517 void register_post_gc_action (void (*fun) (void *), void *arg);
|
|
2518 int begin_gc_forbidden (void);
|
|
2519 void end_gc_forbidden (int count);
|
|
2520
|
|
2521
|
|
2522 /************************************************************************/
|
|
2523 /* Dumping */
|
|
2524 /************************************************************************/
|
|
2525
|
|
2526 /* dump_add_root_struct_ptr (&var, &desc) dumps the structure pointed to by
|
|
2527 `var'. This is for a single relocatable pointer located in the data
|
|
2528 segment (i.e. the block pointed to is in the heap). */
|
452
|
2529 #ifdef PDUMP
|
|
2530 void dump_add_root_struct_ptr (void *, const struct struct_description *);
|
|
2531 #else
|
|
2532 #define dump_add_root_struct_ptr(varaddr,descaddr) DO_NOTHING
|
|
2533 #endif
|
|
2534
|
771
|
2535 /* dump_add_opaque (&var, size) dumps the opaque static structure `var'.
|
|
2536 This is for a static block of memory (in the data segment, not the
|
|
2537 heap), with no relocatable pointers in it. */
|
452
|
2538 #ifdef PDUMP
|
665
|
2539 void dump_add_opaque (const void *, Bytecount);
|
452
|
2540 #else
|
|
2541 #define dump_add_opaque(varaddr,size) DO_NOTHING
|
|
2542 #endif
|
|
2543
|
771
|
2544 /* dump_add_root_block (&var, &desc) dumps the static structure located at
|
|
2545 `var' and described by DESC. This is for a static block of memory (in
|
|
2546 the data segment, not the heap), with relocatable pointers in it, as
|
|
2547 described by DESC. (#### Not yet implemented) */
|
|
2548 #ifdef PDUMP
|
|
2549 void dump_add_root_block (void *ptraddress,
|
|
2550 const struct lrecord_description *desc);
|
|
2551 #else
|
|
2552 #define dump_add_root_block(ptraddress,desc) DO_NOTHING
|
|
2553 #endif
|
|
2554
|
458
|
2555 /* Call dump_add_opaque_int (&int_var) to dump `int_var', of type `int'. */
|
|
2556 #ifdef PDUMP
|
|
2557 #define dump_add_opaque_int(int_varaddr) do { \
|
|
2558 int *dao_ = (int_varaddr); /* type check */ \
|
|
2559 dump_add_opaque (dao_, sizeof (*dao_)); \
|
|
2560 } while (0)
|
|
2561 #else
|
|
2562 #define dump_add_opaque_int(int_varaddr) DO_NOTHING
|
|
2563 #endif
|
|
2564
|
|
2565 /* Call dump_add_opaque_fixnum (&fixnum_var) to dump `fixnum_var', of type `Fixnum'. */
|
|
2566 #ifdef PDUMP
|
|
2567 #define dump_add_opaque_fixnum(fixnum_varaddr) do { \
|
|
2568 Fixnum *dao_ = (fixnum_varaddr); /* type check */ \
|
|
2569 dump_add_opaque (dao_, sizeof (*dao_)); \
|
|
2570 } while (0)
|
|
2571 #else
|
|
2572 #define dump_add_opaque_fixnum(fixnum_varaddr) DO_NOTHING
|
|
2573 #endif
|
|
2574
|
452
|
2575 /* Call dump_add_root_object (&var) to ensure that var is properly updated after pdump. */
|
|
2576 #ifdef PDUMP
|
|
2577 void dump_add_root_object (Lisp_Object *);
|
|
2578 #else
|
|
2579 #define dump_add_root_object(varaddr) DO_NOTHING
|
|
2580 #endif
|
|
2581
|
|
2582 /* Call dump_add_root_object (&var) to ensure that var is properly updated after
|
|
2583 pdump. var must point to a linked list of objects out of which
|
428
|
2584 some may not be dumped */
|
452
|
2585 #ifdef PDUMP
|
|
2586 void dump_add_weak_object_chain (Lisp_Object *);
|
|
2587 #else
|
|
2588 #define dump_add_weak_object_chain(varaddr) DO_NOTHING
|
|
2589 #endif
|
428
|
2590
|
|
2591 /* Nonzero means Emacs has already been initialized.
|
|
2592 Used during startup to detect startup of dumped Emacs. */
|
|
2593 extern int initialized;
|
|
2594
|
771
|
2595
|
|
2596
|
|
2597 /************************************************************************/
|
|
2598 /* Misc definitions */
|
|
2599 /************************************************************************/
|
442
|
2600
|
|
2601 /************************************************************************/
|
|
2602 /* prototypes */
|
|
2603 /************************************************************************/
|
|
2604
|
|
2605 /* NOTE: Prototypes should go HERE, not in various header files, unless
|
|
2606 they specifically reference a type that's not defined in lisp.h.
|
|
2607 (And even then, you might consider adding the type to lisp.h.)
|
|
2608
|
|
2609 The idea is that header files typically contain the innards of objects,
|
|
2610 and we want to minimize the number of "dependencies" of one file on
|
|
2611 the specifics of such objects. Putting prototypes here minimizes the
|
|
2612 number of header files that need to be included -- good for a number
|
|
2613 of reasons. --ben */
|
|
2614
|
|
2615 /*--------------- prototypes for various public c functions ------------*/
|
|
2616
|
|
2617 /* Prototypes for all init/syms_of/vars_of initialization functions. */
|
|
2618 #include "symsinit.h"
|
|
2619
|
428
|
2620 /* Defined in alloc.c */
|
|
2621 void release_breathing_space (void);
|
|
2622 Lisp_Object noseeum_cons (Lisp_Object, Lisp_Object);
|
665
|
2623 Lisp_Object make_vector (Elemcount, Lisp_Object);
|
428
|
2624 Lisp_Object vector1 (Lisp_Object);
|
|
2625 Lisp_Object vector2 (Lisp_Object, Lisp_Object);
|
|
2626 Lisp_Object vector3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
665
|
2627 Lisp_Object make_bit_vector (Elemcount, Lisp_Object);
|
|
2628 Lisp_Object make_bit_vector_from_byte_vector (unsigned char *, Elemcount);
|
428
|
2629 Lisp_Object noseeum_make_marker (void);
|
|
2630 void garbage_collect_1 (void);
|
|
2631 Lisp_Object acons (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2632 Lisp_Object cons3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2633 Lisp_Object list1 (Lisp_Object);
|
|
2634 Lisp_Object list2 (Lisp_Object, Lisp_Object);
|
|
2635 Lisp_Object list3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2636 Lisp_Object list4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2637 Lisp_Object list5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2638 Lisp_Object);
|
|
2639 Lisp_Object list6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2640 Lisp_Object, Lisp_Object);
|
|
2641 DECLARE_DOESNT_RETURN (memory_full (void));
|
|
2642 void disksave_object_finalization (void);
|
|
2643 extern int purify_flag;
|
|
2644 extern int gc_currently_forbidden;
|
|
2645 extern EMACS_INT gc_generation_number[1];
|
|
2646 int c_readonly (Lisp_Object);
|
|
2647 int lisp_readonly (Lisp_Object);
|
771
|
2648 Lisp_Object build_intstring (const Intbyte *);
|
665
|
2649 Lisp_Object build_string (const CIntbyte *);
|
609
|
2650 Lisp_Object build_ext_string (const Extbyte *, Lisp_Object);
|
771
|
2651 Lisp_Object build_msg_intstring (const Intbyte *);
|
|
2652 Lisp_Object build_msg_string (const CIntbyte *);
|
665
|
2653 Lisp_Object make_string (const Intbyte *, Bytecount);
|
442
|
2654 Lisp_Object make_ext_string (const Extbyte *, EMACS_INT, Lisp_Object);
|
771
|
2655 void init_string_ascii_begin (Lisp_Object string);
|
428
|
2656 Lisp_Object make_uninit_string (Bytecount);
|
|
2657 Lisp_Object make_float (double);
|
665
|
2658 Lisp_Object make_string_nocopy (const Intbyte *, Bytecount);
|
428
|
2659 void free_cons (Lisp_Cons *);
|
|
2660 void free_list (Lisp_Object);
|
|
2661 void free_alist (Lisp_Object);
|
|
2662 void mark_conses_in_list (Lisp_Object);
|
|
2663 void free_marker (Lisp_Marker *);
|
|
2664 int object_dead_p (Lisp_Object);
|
|
2665 void mark_object (Lisp_Object obj);
|
|
2666 int marked_p (Lisp_Object obj);
|
|
2667
|
|
2668 #ifdef MEMORY_USAGE_STATS
|
665
|
2669 Bytecount malloced_storage_size (void *, Bytecount, struct overhead_stats *);
|
|
2670 Bytecount fixed_type_block_overhead (Bytecount);
|
428
|
2671 #endif
|
|
2672 #ifdef PDUMP
|
|
2673 void pdump (void);
|
442
|
2674 int pdump_load (const char *);
|
428
|
2675
|
|
2676 extern char *pdump_start, *pdump_end;
|
|
2677 #define DUMPEDP(adr) ((((char *)(adr)) < pdump_end) && (((char *)(adr)) >= pdump_start))
|
|
2678 #else
|
|
2679 #define DUMPEDP(adr) 0
|
|
2680 #endif
|
|
2681
|
|
2682 /* Defined in buffer.c */
|
|
2683 Lisp_Object get_truename_buffer (Lisp_Object);
|
|
2684 void switch_to_buffer (Lisp_Object, Lisp_Object);
|
|
2685 extern int find_file_compare_truenames;
|
|
2686 extern int find_file_use_truenames;
|
771
|
2687 Intbyte *get_initial_directory (Intbyte *pathname, Bytecount size);
|
|
2688 extern Lisp_Object Vbuffer_alist;
|
|
2689 void set_buffer_internal (struct buffer *b);
|
|
2690 struct buffer *decode_buffer (Lisp_Object buffer, int allow_string);
|
|
2691
|
|
2692 void record_buffer (Lisp_Object buf);
|
|
2693 Lisp_Object get_buffer (Lisp_Object name,
|
|
2694 int error_if_deleted_or_does_not_exist);
|
|
2695 int map_over_sharing_buffers (struct buffer *buf,
|
|
2696 int (*mapfun) (struct buffer *buf,
|
|
2697 void *closure),
|
|
2698 void *closure);
|
|
2699
|
|
2700 extern struct buffer *current_buffer;
|
|
2701
|
|
2702 extern void init_initial_directory (void); /* initialize initial_directory */
|
|
2703
|
|
2704 EXFUN (Fbuffer_disable_undo, 1);
|
|
2705 EXFUN (Fbuffer_modified_p, 1);
|
|
2706 EXFUN (Fbuffer_name, 1);
|
|
2707 EXFUN (Fcurrent_buffer, 0);
|
|
2708 EXFUN (Ferase_buffer, 1);
|
|
2709 EXFUN (Fget_buffer, 1);
|
|
2710 EXFUN (Fget_buffer_create, 1);
|
|
2711 EXFUN (Fget_file_buffer, 1);
|
|
2712 EXFUN (Fkill_buffer, 1);
|
|
2713 EXFUN (Fother_buffer, 3);
|
|
2714 EXFUN (Frecord_buffer, 1);
|
|
2715 EXFUN (Fset_buffer, 1);
|
|
2716 EXFUN (Fset_buffer_modified_p, 2);
|
|
2717
|
|
2718 extern Lisp_Object QSscratch, Qafter_change_function, Qafter_change_functions;
|
|
2719 extern Lisp_Object Qbefore_change_function, Qbefore_change_functions;
|
|
2720 extern Lisp_Object Qbuffer_or_string_p, Qdefault_directory, Qfirst_change_hook;
|
|
2721 extern Lisp_Object Qpermanent_local, Vafter_change_function;
|
|
2722 extern Lisp_Object Vafter_change_functions, Vbefore_change_function;
|
|
2723 extern Lisp_Object Vbefore_change_functions, Vbuffer_alist, Vbuffer_defaults;
|
|
2724 extern Lisp_Object Vinhibit_read_only, Vtransient_mark_mode;
|
428
|
2725
|
563
|
2726 /* Defined in bytecode.c */
|
593
|
2727 DECLARE_DOESNT_RETURN (invalid_byte_code
|
665
|
2728 (const CIntbyte *reason, Lisp_Object frob));
|
563
|
2729
|
428
|
2730 /* Defined in callproc.c */
|
771
|
2731 Intbyte *egetenv (const CIntbyte *var);
|
|
2732 void eputenv (const CIntbyte *var, const CIntbyte *value);
|
|
2733 extern int env_initted;
|
428
|
2734
|
|
2735 /* Defined in console.c */
|
|
2736 void stuff_buffered_input (Lisp_Object);
|
|
2737
|
442
|
2738 /* Defined in console-msw.c */
|
|
2739 EXFUN (Fmswindows_message_box, 3);
|
|
2740 extern int mswindows_message_outputted;
|
771
|
2741 void mswindows_hide_console (void);
|
|
2742 int mswindows_output_console_string (const Intbyte *ptr, Bytecount len);
|
|
2743 void write_string_to_mswindows_debugging_output (Intbyte *str, Bytecount len);
|
442
|
2744
|
428
|
2745 /* Defined in data.c */
|
|
2746 DECLARE_DOESNT_RETURN (c_write_error (Lisp_Object));
|
|
2747 DECLARE_DOESNT_RETURN (lisp_write_error (Lisp_Object));
|
|
2748 DECLARE_DOESNT_RETURN (args_out_of_range (Lisp_Object, Lisp_Object));
|
|
2749 DECLARE_DOESNT_RETURN (args_out_of_range_3 (Lisp_Object, Lisp_Object,
|
|
2750 Lisp_Object));
|
|
2751 Lisp_Object wrong_type_argument (Lisp_Object, Lisp_Object);
|
|
2752 DECLARE_DOESNT_RETURN (dead_wrong_type_argument (Lisp_Object, Lisp_Object));
|
|
2753 void check_int_range (EMACS_INT, EMACS_INT, EMACS_INT);
|
|
2754
|
771
|
2755 EXFUN (Fint_to_char, 1);
|
|
2756 EXFUN (Fchar_to_int, 1);
|
|
2757
|
428
|
2758 enum arith_comparison {
|
|
2759 arith_equal,
|
|
2760 arith_notequal,
|
|
2761 arith_less,
|
|
2762 arith_grtr,
|
|
2763 arith_less_or_equal,
|
|
2764 arith_grtr_or_equal };
|
|
2765 Lisp_Object arithcompare (Lisp_Object, Lisp_Object, enum arith_comparison);
|
|
2766
|
707
|
2767 /* Do NOT use word_to_lisp or wasteful_word_to_lisp to decode time_t's
|
|
2768 unless you KNOW arg is non-negative. They cannot return negative
|
|
2769 values! Use make_time. */
|
428
|
2770 Lisp_Object word_to_lisp (unsigned int);
|
|
2771 unsigned int lisp_to_word (Lisp_Object);
|
|
2772
|
|
2773 /* Defined in dired.c */
|
771
|
2774 Lisp_Object make_directory_hash_table (const Intbyte *);
|
428
|
2775 Lisp_Object wasteful_word_to_lisp (unsigned int);
|
|
2776
|
|
2777 /* Defined in doc.c */
|
771
|
2778 Lisp_Object unparesseuxify_doc_string (int, EMACS_INT, Intbyte *, Lisp_Object);
|
428
|
2779 Lisp_Object read_doc_string (Lisp_Object);
|
|
2780
|
|
2781 /* Defined in doprnt.c */
|
771
|
2782
|
|
2783 Bytecount emacs_doprnt_va (Lisp_Object stream, const Intbyte *format_nonreloc,
|
|
2784 Bytecount format_length, Lisp_Object format_reloc,
|
|
2785 va_list vargs);
|
|
2786 Bytecount emacs_doprnt (Lisp_Object stream, const Intbyte *format_nonreloc,
|
|
2787 Bytecount format_length, Lisp_Object format_reloc,
|
|
2788 int nargs, const Lisp_Object *largs, ...);
|
|
2789 Lisp_Object emacs_vsprintf_string_lisp (const CIntbyte *format_nonreloc,
|
|
2790 Lisp_Object format_reloc, int nargs,
|
|
2791 const Lisp_Object *largs);
|
|
2792 Lisp_Object emacs_sprintf_string_lisp (const CIntbyte *format_nonreloc,
|
|
2793 Lisp_Object format_reloc, int nargs, ...);
|
|
2794 Intbyte *emacs_vsprintf_malloc_lisp (const CIntbyte *format_nonreloc,
|
|
2795 Lisp_Object format_reloc, int nargs,
|
|
2796 const Lisp_Object *largs,
|
|
2797 Bytecount *len_out);
|
|
2798 Intbyte *emacs_sprintf_malloc_lisp (Bytecount *len_out,
|
|
2799 const CIntbyte *format_nonreloc,
|
|
2800 Lisp_Object format_reloc, int nargs, ...);
|
|
2801 Lisp_Object emacs_vsprintf_string (const CIntbyte *format, va_list vargs);
|
|
2802 Lisp_Object emacs_sprintf_string (const CIntbyte *format, ...)
|
|
2803 PRINTF_ARGS (1, 2);
|
|
2804 Intbyte *emacs_vsprintf_malloc (const CIntbyte *format, va_list vargs,
|
|
2805 Bytecount *len_out);
|
|
2806 Intbyte *emacs_sprintf_malloc (Bytecount *len_out, const CIntbyte *format, ...)
|
|
2807 PRINTF_ARGS (2, 3);
|
|
2808 Bytecount emacs_vsprintf (Intbyte *output, const CIntbyte *format,
|
|
2809 va_list vargs);
|
|
2810 Bytecount emacs_sprintf (Intbyte *output, const CIntbyte *format, ...)
|
|
2811 PRINTF_ARGS (2, 3);
|
|
2812
|
428
|
2813
|
|
2814 /* Defined in editfns.c */
|
|
2815 void uncache_home_directory (void);
|
771
|
2816 Intbyte *get_home_directory (void);
|
|
2817 Intbyte *user_login_name (uid_t *);
|
665
|
2818 Charbpos charbpos_clip_to_bounds (Charbpos, Charbpos, Charbpos);
|
|
2819 Bytebpos bytebpos_clip_to_bounds (Bytebpos, Bytebpos, Bytebpos);
|
428
|
2820 void buffer_insert1 (struct buffer *, Lisp_Object);
|
665
|
2821 Lisp_Object make_string_from_buffer (struct buffer *, Charbpos, Charcount);
|
|
2822 Lisp_Object make_string_from_buffer_no_extents (struct buffer *, Charbpos, Charcount);
|
707
|
2823 Lisp_Object make_time (time_t);
|
428
|
2824 Lisp_Object save_excursion_save (void);
|
|
2825 Lisp_Object save_restriction_save (void);
|
|
2826 Lisp_Object save_excursion_restore (Lisp_Object);
|
|
2827 Lisp_Object save_restriction_restore (Lisp_Object);
|
771
|
2828 void widen_buffer (struct buffer *b, int no_clip);
|
|
2829 int beginning_of_line_p (struct buffer *b, Charbpos pt);
|
428
|
2830
|
|
2831 /* Defined in emacsfns.c */
|
|
2832 Lisp_Object save_current_buffer_restore (Lisp_Object);
|
|
2833
|
|
2834 /* Defined in emacs.c */
|
|
2835 SIGTYPE fatal_error_signal (int);
|
442
|
2836 Lisp_Object make_arg_list (int, Extbyte **);
|
|
2837 void make_argc_argv (Lisp_Object, int *, Extbyte ***);
|
|
2838 void free_argc_argv (Extbyte **);
|
771
|
2839 Lisp_Object split_external_path (const Extbyte *path);
|
|
2840 Lisp_Object split_env_path (const CIntbyte *evarname, const Intbyte *default_);
|
|
2841
|
428
|
2842 /* Nonzero means don't do interactive redisplay and don't change tty modes */
|
442
|
2843 extern int noninteractive, noninteractive1;
|
771
|
2844 extern int inhibit_non_essential_printing_operations;
|
428
|
2845 extern int preparing_for_armageddon;
|
458
|
2846 extern Fixnum emacs_priority;
|
428
|
2847 extern int running_asynch_code;
|
|
2848 extern int suppress_early_error_handler_backtrace;
|
771
|
2849 void debug_break (void);
|
|
2850 int debug_can_access_memory (void *ptr, Bytecount len);
|
|
2851 void really_abort (void);
|
428
|
2852
|
|
2853 /* Defined in eval.c */
|
563
|
2854 DECLARE_DOESNT_RETURN (signal_error_1 (Lisp_Object, Lisp_Object));
|
|
2855 void maybe_signal_error_1 (Lisp_Object, Lisp_Object, Lisp_Object,
|
578
|
2856 Error_Behavior);
|
563
|
2857 Lisp_Object maybe_signal_continuable_error_1 (Lisp_Object, Lisp_Object,
|
578
|
2858 Lisp_Object, Error_Behavior);
|
609
|
2859 DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS (signal_ferror
|
|
2860 (Lisp_Object,
|
665
|
2861 const CIntbyte *,
|
609
|
2862 ...), 2, 3);
|
578
|
2863 void maybe_signal_ferror (Lisp_Object, Lisp_Object, Error_Behavior,
|
665
|
2864 const CIntbyte *, ...) PRINTF_ARGS (4, 5);
|
|
2865 Lisp_Object signal_continuable_ferror (Lisp_Object, const CIntbyte *, ...)
|
442
|
2866 PRINTF_ARGS (2, 3);
|
563
|
2867 Lisp_Object maybe_signal_continuable_ferror (Lisp_Object, Lisp_Object,
|
578
|
2868 Error_Behavior,
|
665
|
2869 const CIntbyte *, ...)
|
442
|
2870 PRINTF_ARGS (4, 5);
|
563
|
2871
|
665
|
2872 Lisp_Object build_error_data (const CIntbyte *reason, Lisp_Object frob);
|
|
2873 DECLARE_DOESNT_RETURN (signal_error (Lisp_Object, const CIntbyte *,
|
563
|
2874 Lisp_Object));
|
665
|
2875 void maybe_signal_error (Lisp_Object, const CIntbyte *, Lisp_Object,
|
578
|
2876 Lisp_Object, Error_Behavior);
|
665
|
2877 Lisp_Object signal_continuable_error (Lisp_Object, const CIntbyte *,
|
563
|
2878 Lisp_Object);
|
665
|
2879 Lisp_Object maybe_signal_continuable_error (Lisp_Object, const CIntbyte *,
|
563
|
2880 Lisp_Object,
|
578
|
2881 Lisp_Object, Error_Behavior);
|
563
|
2882 DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS (signal_ferror_with_frob
|
442
|
2883 (Lisp_Object, Lisp_Object,
|
665
|
2884 const CIntbyte *,
|
442
|
2885 ...), 3, 4);
|
563
|
2886 void maybe_signal_ferror_with_frob (Lisp_Object, Lisp_Object, Lisp_Object,
|
578
|
2887 Error_Behavior,
|
665
|
2888 const CIntbyte *, ...) PRINTF_ARGS (5, 6);
|
563
|
2889 Lisp_Object signal_continuable_ferror_with_frob (Lisp_Object, Lisp_Object,
|
665
|
2890 const CIntbyte *,
|
563
|
2891 ...) PRINTF_ARGS (3, 4);
|
|
2892 Lisp_Object maybe_signal_continuable_ferror_with_frob (Lisp_Object,
|
|
2893 Lisp_Object,
|
|
2894 Lisp_Object,
|
578
|
2895 Error_Behavior,
|
665
|
2896 const CIntbyte *, ...)
|
442
|
2897 PRINTF_ARGS (5, 6);
|
665
|
2898 DECLARE_DOESNT_RETURN (signal_error_2 (Lisp_Object, const CIntbyte *,
|
563
|
2899 Lisp_Object, Lisp_Object));
|
665
|
2900 void maybe_signal_error_2 (Lisp_Object, const CIntbyte *, Lisp_Object,
|
578
|
2901 Lisp_Object, Lisp_Object, Error_Behavior);
|
665
|
2902 Lisp_Object signal_continuable_error_2 (Lisp_Object, const CIntbyte *,
|
563
|
2903 Lisp_Object, Lisp_Object);
|
665
|
2904 Lisp_Object maybe_signal_continuable_error_2 (Lisp_Object, const CIntbyte *,
|
563
|
2905 Lisp_Object, Lisp_Object,
|
|
2906 Lisp_Object,
|
578
|
2907 Error_Behavior);
|
563
|
2908
|
|
2909
|
436
|
2910 DECLARE_DOESNT_RETURN (signal_malformed_list_error (Lisp_Object));
|
|
2911 DECLARE_DOESNT_RETURN (signal_malformed_property_list_error (Lisp_Object));
|
|
2912 DECLARE_DOESNT_RETURN (signal_circular_list_error (Lisp_Object));
|
|
2913 DECLARE_DOESNT_RETURN (signal_circular_property_list_error (Lisp_Object));
|
|
2914
|
665
|
2915 DECLARE_DOESNT_RETURN (syntax_error (const CIntbyte *reason,
|
609
|
2916 Lisp_Object frob));
|
665
|
2917 DECLARE_DOESNT_RETURN (syntax_error_2 (const CIntbyte *reason,
|
609
|
2918 Lisp_Object frob1,
|
442
|
2919 Lisp_Object frob2));
|
665
|
2920 void maybe_syntax_error (const CIntbyte *, Lisp_Object, Lisp_Object,
|
578
|
2921 Error_Behavior);
|
665
|
2922 DECLARE_DOESNT_RETURN (sferror (const CIntbyte *reason, Lisp_Object frob));
|
|
2923 DECLARE_DOESNT_RETURN (sferror_2 (const CIntbyte *reason, Lisp_Object frob1,
|
563
|
2924 Lisp_Object frob2));
|
665
|
2925 void maybe_sferror (const CIntbyte *, Lisp_Object, Lisp_Object,
|
578
|
2926 Error_Behavior);
|
665
|
2927 DECLARE_DOESNT_RETURN (invalid_argument (const CIntbyte *reason,
|
442
|
2928 Lisp_Object frob));
|
665
|
2929 DECLARE_DOESNT_RETURN (invalid_argument_2 (const CIntbyte *reason,
|
442
|
2930 Lisp_Object frob1,
|
|
2931 Lisp_Object frob2));
|
665
|
2932 void maybe_invalid_argument (const CIntbyte *, Lisp_Object, Lisp_Object,
|
578
|
2933 Error_Behavior);
|
665
|
2934 DECLARE_DOESNT_RETURN (invalid_operation (const CIntbyte *reason,
|
563
|
2935 Lisp_Object frob));
|
665
|
2936 DECLARE_DOESNT_RETURN (invalid_operation_2 (const CIntbyte *reason,
|
563
|
2937 Lisp_Object frob1,
|
|
2938 Lisp_Object frob2));
|
665
|
2939 void maybe_invalid_operation (const CIntbyte *, Lisp_Object, Lisp_Object,
|
578
|
2940 Error_Behavior);
|
665
|
2941 DECLARE_DOESNT_RETURN (invalid_state (const CIntbyte *reason,
|
563
|
2942 Lisp_Object frob));
|
665
|
2943 DECLARE_DOESNT_RETURN (invalid_state_2 (const CIntbyte *reason,
|
563
|
2944 Lisp_Object frob1,
|
|
2945 Lisp_Object frob2));
|
665
|
2946 void maybe_invalid_state (const CIntbyte *, Lisp_Object, Lisp_Object,
|
609
|
2947 Error_Behavior);
|
665
|
2948 DECLARE_DOESNT_RETURN (invalid_change (const CIntbyte *reason,
|
563
|
2949 Lisp_Object frob));
|
665
|
2950 DECLARE_DOESNT_RETURN (invalid_change_2 (const CIntbyte *reason,
|
563
|
2951 Lisp_Object frob1,
|
|
2952 Lisp_Object frob2));
|
665
|
2953 void maybe_invalid_change (const CIntbyte *, Lisp_Object, Lisp_Object,
|
609
|
2954 Error_Behavior);
|
665
|
2955 DECLARE_DOESNT_RETURN (invalid_constant (const CIntbyte *reason,
|
563
|
2956 Lisp_Object frob));
|
665
|
2957 DECLARE_DOESNT_RETURN (invalid_constant_2 (const CIntbyte *reason,
|
563
|
2958 Lisp_Object frob1,
|
|
2959 Lisp_Object frob2));
|
665
|
2960 void maybe_invalid_constant (const CIntbyte *, Lisp_Object, Lisp_Object,
|
578
|
2961 Error_Behavior);
|
665
|
2962 DECLARE_DOESNT_RETURN (wtaerror (const CIntbyte *reason, Lisp_Object frob));
|
|
2963 DECLARE_DOESNT_RETURN (out_of_memory (const CIntbyte *reason,
|
563
|
2964 Lisp_Object frob));
|
665
|
2965 DECLARE_DOESNT_RETURN (stack_overflow (const CIntbyte *reason,
|
442
|
2966 Lisp_Object frob));
|
563
|
2967 DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS (printing_unreadable_object
|
665
|
2968 (const CIntbyte *,
|
563
|
2969 ...), 1, 2);
|
442
|
2970
|
436
|
2971 Lisp_Object signal_void_function_error (Lisp_Object);
|
|
2972 Lisp_Object signal_invalid_function_error (Lisp_Object);
|
|
2973 Lisp_Object signal_wrong_number_of_arguments_error (Lisp_Object, int);
|
|
2974
|
428
|
2975 Lisp_Object run_hook_with_args_in_buffer (struct buffer *, int, Lisp_Object *,
|
|
2976 enum run_hooks_condition);
|
|
2977 Lisp_Object run_hook_with_args (int, Lisp_Object *, enum run_hooks_condition);
|
|
2978 void va_run_hook_with_args (Lisp_Object, int, ...);
|
|
2979 void va_run_hook_with_args_in_buffer (struct buffer *, Lisp_Object, int, ...);
|
|
2980 Lisp_Object run_hook (Lisp_Object);
|
|
2981 Lisp_Object apply1 (Lisp_Object, Lisp_Object);
|
|
2982 Lisp_Object call0 (Lisp_Object);
|
|
2983 Lisp_Object call1 (Lisp_Object, Lisp_Object);
|
|
2984 Lisp_Object call2 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2985 Lisp_Object call3 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2986 Lisp_Object call4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2987 Lisp_Object);
|
|
2988 Lisp_Object call5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2989 Lisp_Object, Lisp_Object);
|
|
2990 Lisp_Object call6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2991 Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2992 Lisp_Object call7 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2993 Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
|
|
2994 Lisp_Object call8 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2995 Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
|
|
2996 Lisp_Object);
|
|
2997 Lisp_Object call0_in_buffer (struct buffer *, Lisp_Object);
|
|
2998 Lisp_Object call1_in_buffer (struct buffer *, Lisp_Object, Lisp_Object);
|
|
2999 Lisp_Object call2_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
3000 Lisp_Object);
|
|
3001 Lisp_Object call3_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
3002 Lisp_Object, Lisp_Object);
|
|
3003 Lisp_Object call4_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
3004 Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3005 Lisp_Object call5_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
3006 Lisp_Object, Lisp_Object, Lisp_Object,
|
|
3007 Lisp_Object);
|
|
3008 Lisp_Object call6_in_buffer (struct buffer *, Lisp_Object, Lisp_Object,
|
|
3009 Lisp_Object, Lisp_Object, Lisp_Object,
|
|
3010 Lisp_Object, Lisp_Object);
|
|
3011 Lisp_Object eval_in_buffer (struct buffer *, Lisp_Object);
|
|
3012 Lisp_Object call0_with_handler (Lisp_Object, Lisp_Object);
|
|
3013 Lisp_Object call1_with_handler (Lisp_Object, Lisp_Object, Lisp_Object);
|
665
|
3014 Lisp_Object eval_in_buffer_trapping_errors (const CIntbyte *, struct buffer *,
|
428
|
3015 Lisp_Object);
|
665
|
3016 Lisp_Object run_hook_trapping_errors (const CIntbyte *, Lisp_Object);
|
|
3017 Lisp_Object safe_run_hook_trapping_errors (const CIntbyte *, Lisp_Object, int);
|
|
3018 Lisp_Object call0_trapping_errors (const CIntbyte *, Lisp_Object);
|
|
3019 Lisp_Object call1_trapping_errors (const CIntbyte *, Lisp_Object, Lisp_Object);
|
|
3020 Lisp_Object call2_trapping_errors (const CIntbyte *,
|
428
|
3021 Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3022 Lisp_Object call_with_suspended_errors (lisp_fn_t, volatile Lisp_Object, Lisp_Object,
|
578
|
3023 Error_Behavior, int, ...);
|
428
|
3024 /* C Code should be using internal_catch, record_unwind_p, condition_case_1 */
|
|
3025 Lisp_Object internal_catch (Lisp_Object, Lisp_Object (*) (Lisp_Object),
|
|
3026 Lisp_Object, int * volatile);
|
|
3027 Lisp_Object condition_case_1 (Lisp_Object,
|
|
3028 Lisp_Object (*) (Lisp_Object),
|
|
3029 Lisp_Object,
|
|
3030 Lisp_Object (*) (Lisp_Object, Lisp_Object),
|
|
3031 Lisp_Object);
|
|
3032 Lisp_Object condition_case_3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
771
|
3033 Lisp_Object unbind_to_1 (int, Lisp_Object);
|
|
3034 #define unbind_to(obj) unbind_to_1 (obj, Qnil)
|
428
|
3035 void specbind (Lisp_Object, Lisp_Object);
|
771
|
3036 int record_unwind_protect (Lisp_Object (*) (Lisp_Object), Lisp_Object);
|
|
3037 int record_unwind_protect_freeing (void *ptr);
|
|
3038 int record_unwind_protect_freeing_dynarr (void *ptr);
|
428
|
3039 void do_autoload (Lisp_Object, Lisp_Object);
|
|
3040 Lisp_Object un_autoload (Lisp_Object);
|
|
3041 void warn_when_safe_lispobj (Lisp_Object, Lisp_Object, Lisp_Object);
|
665
|
3042 void warn_when_safe (Lisp_Object, Lisp_Object, const CIntbyte *,
|
428
|
3043 ...) PRINTF_ARGS (3, 4);
|
|
3044
|
|
3045
|
|
3046 /* Defined in event-stream.c */
|
|
3047 void wait_delaying_user_input (int (*) (void *), void *);
|
|
3048 int detect_input_pending (void);
|
|
3049 void reset_this_command_keys (Lisp_Object, int);
|
|
3050 Lisp_Object enqueue_misc_user_event (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3051 Lisp_Object enqueue_misc_user_event_pos (Lisp_Object, Lisp_Object,
|
|
3052 Lisp_Object, int, int, int, int);
|
442
|
3053 extern int modifier_keys_are_sticky;
|
428
|
3054
|
|
3055 /* Defined in event-Xt.c */
|
442
|
3056 void enqueue_Xt_dispatch_event (Lisp_Object event);
|
428
|
3057 void signal_special_Xt_user_event (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3058
|
|
3059
|
|
3060 /* Defined in events.c */
|
|
3061 void clear_event_resource (void);
|
|
3062 Lisp_Object allocate_event (void);
|
|
3063
|
771
|
3064 EXFUN (Fevent_x_pixel, 1);
|
|
3065 EXFUN (Fevent_y_pixel, 1);
|
|
3066
|
|
3067
|
|
3068 /* Defined in file-coding.c */
|
|
3069 EXFUN (Fcoding_category_list, 0);
|
|
3070 EXFUN (Fcoding_category_system, 1);
|
|
3071 EXFUN (Fcoding_priority_list, 0);
|
|
3072 EXFUN (Fcoding_system_description, 1);
|
|
3073 EXFUN (Fcoding_system_documentation, 1);
|
|
3074 EXFUN (Fcoding_system_list, 1);
|
|
3075 EXFUN (Fcoding_system_name, 1);
|
|
3076 EXFUN (Fcoding_system_p, 1);
|
|
3077 EXFUN (Fcoding_system_property, 2);
|
|
3078 EXFUN (Fcoding_system_type, 1);
|
|
3079 EXFUN (Fcopy_coding_system, 2);
|
|
3080 EXFUN (Fdecode_big5_char, 1);
|
|
3081 EXFUN (Fdecode_coding_region, 4);
|
|
3082 EXFUN (Fdecode_shift_jis_char, 1);
|
|
3083 EXFUN (Fdefine_coding_system_alias, 2);
|
|
3084 EXFUN (Fdetect_coding_region, 3);
|
|
3085 EXFUN (Fdefault_encoding_detection_enabled_p, 0);
|
|
3086 EXFUN (Fencode_big5_char, 1);
|
|
3087 EXFUN (Fencode_coding_region, 4);
|
|
3088 EXFUN (Fencode_shift_jis_char, 1);
|
|
3089 EXFUN (Ffind_coding_system, 1);
|
|
3090 EXFUN (Fget_coding_system, 1);
|
|
3091 EXFUN (Fmake_coding_system, 4);
|
|
3092 EXFUN (Fset_coding_category_system, 2);
|
|
3093 EXFUN (Fset_coding_priority_list, 1);
|
|
3094 EXFUN (Fsubsidiary_coding_system, 2);
|
|
3095
|
|
3096 extern Lisp_Object Qshift_jis, Qiso2022, Qbig5, Qccl;
|
|
3097 extern Lisp_Object Qcharset_g0;
|
|
3098 extern Lisp_Object Qcharset_g1, Qcharset_g2, Qcharset_g3, Qcoding_system_error;
|
|
3099 extern Lisp_Object Qcoding_systemp, Qcr, Qcrlf, Qdecode, Qencode;
|
|
3100 extern Lisp_Object Qeol_cr, Qeol_crlf, Qeol_lf, Qeol_type, Qescape_quoted;
|
|
3101 extern Lisp_Object Qforce_g0_on_output, Qforce_g1_on_output;
|
|
3102 extern Lisp_Object Qforce_g2_on_output, Qforce_g3_on_output;
|
|
3103 extern Lisp_Object Qinput_charset_conversion, Qlf, Qlock_shift;
|
|
3104 extern Lisp_Object Qmnemonic, Qno_ascii_cntl, Qno_ascii_eol;
|
|
3105 extern Lisp_Object Qno_conversion, Qraw_text;
|
|
3106 extern Lisp_Object Qno_iso6429, Qoutput_charset_conversion;
|
|
3107 extern Lisp_Object Qpost_read_conversion, Qpre_write_conversion, Qseven;
|
|
3108 extern Lisp_Object Qshort, Vcoding_system_for_read;
|
|
3109 extern Lisp_Object Vcoding_system_for_write;
|
|
3110 extern Lisp_Object Vfile_name_coding_system, Vkeyboard_coding_system;
|
|
3111 extern Lisp_Object Vterminal_coding_system;
|
|
3112 extern Lisp_Object Qcanonicalize_after_coding;
|
|
3113 void init_charset_unicode_tables (Lisp_Object charset);
|
|
3114 void free_charset_unicode_tables (Lisp_Object charset);
|
|
3115 void recalculate_unicode_precedence (void);
|
|
3116 int coding_system_is_for_text_file (Lisp_Object coding_system);
|
|
3117 Lisp_Object find_coding_system_for_text_file (Lisp_Object name, int eol_wrap);
|
|
3118 Lisp_Object get_coding_system_for_text_file (Lisp_Object name, int eol_wrap);
|
|
3119 int coding_system_is_binary (Lisp_Object coding_system);
|
|
3120
|
|
3121
|
428
|
3122 /* Defined in fileio.c */
|
|
3123 void record_auto_save (void);
|
|
3124 void force_auto_save_soon (void);
|
563
|
3125 DECLARE_DOESNT_RETURN (report_error_with_errno (Lisp_Object errtype,
|
665
|
3126 const CIntbyte *string,
|
563
|
3127 Lisp_Object data));
|
|
3128 DECLARE_DOESNT_RETURN (report_file_type_error (Lisp_Object errtype,
|
|
3129 Lisp_Object oserrmess,
|
665
|
3130 const CIntbyte *string,
|
563
|
3131 Lisp_Object data));
|
665
|
3132 DECLARE_DOESNT_RETURN (report_file_error (const CIntbyte *, Lisp_Object));
|
428
|
3133 Lisp_Object lisp_strerror (int);
|
|
3134 Lisp_Object expand_and_dir_to_file (Lisp_Object, Lisp_Object);
|
|
3135 int internal_delete_file (Lisp_Object);
|
|
3136
|
|
3137 /* Defined in filelock.c */
|
|
3138 void lock_file (Lisp_Object);
|
|
3139 void unlock_file (Lisp_Object);
|
|
3140 void unlock_all_files (void);
|
|
3141 void unlock_buffer (struct buffer *);
|
|
3142
|
|
3143 /* Defined in filemode.c */
|
|
3144 void filemodestring (struct stat *, char *);
|
|
3145
|
|
3146 /* Defined in floatfns.c */
|
|
3147 double extract_float (Lisp_Object);
|
|
3148
|
|
3149 /* Defined in fns.c */
|
|
3150 Lisp_Object list_sort (Lisp_Object, Lisp_Object,
|
|
3151 int (*) (Lisp_Object, Lisp_Object, Lisp_Object));
|
|
3152 Lisp_Object merge (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3153
|
|
3154 void bump_string_modiff (Lisp_Object);
|
|
3155 Lisp_Object memq_no_quit (Lisp_Object, Lisp_Object);
|
|
3156 Lisp_Object assoc_no_quit (Lisp_Object, Lisp_Object);
|
|
3157 Lisp_Object assq_no_quit (Lisp_Object, Lisp_Object);
|
|
3158 Lisp_Object rassq_no_quit (Lisp_Object, Lisp_Object);
|
|
3159 Lisp_Object delq_no_quit (Lisp_Object, Lisp_Object);
|
|
3160 Lisp_Object delq_no_quit_and_free_cons (Lisp_Object, Lisp_Object);
|
|
3161 Lisp_Object remassoc_no_quit (Lisp_Object, Lisp_Object);
|
|
3162 Lisp_Object remassq_no_quit (Lisp_Object, Lisp_Object);
|
|
3163 Lisp_Object remrassq_no_quit (Lisp_Object, Lisp_Object);
|
|
3164
|
|
3165 int plists_differ (Lisp_Object, Lisp_Object, int, int, int);
|
|
3166 Lisp_Object internal_plist_get (Lisp_Object, Lisp_Object);
|
|
3167 void internal_plist_put (Lisp_Object *, Lisp_Object, Lisp_Object);
|
|
3168 int internal_remprop (Lisp_Object *, Lisp_Object);
|
|
3169 Lisp_Object external_plist_get (Lisp_Object *, Lisp_Object,
|
578
|
3170 int, Error_Behavior);
|
428
|
3171 void external_plist_put (Lisp_Object *, Lisp_Object,
|
578
|
3172 Lisp_Object, int, Error_Behavior);
|
|
3173 int external_remprop (Lisp_Object *, Lisp_Object, int, Error_Behavior);
|
428
|
3174 int internal_equal (Lisp_Object, Lisp_Object, int);
|
|
3175 Lisp_Object concat2 (Lisp_Object, Lisp_Object);
|
|
3176 Lisp_Object concat3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3177 Lisp_Object vconcat2 (Lisp_Object, Lisp_Object);
|
|
3178 Lisp_Object vconcat3 (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3179 Lisp_Object nconc2 (Lisp_Object, Lisp_Object);
|
|
3180 Lisp_Object bytecode_nconc2 (Lisp_Object *);
|
442
|
3181 void check_losing_bytecode (const char *, Lisp_Object);
|
428
|
3182
|
771
|
3183 Lisp_Object add_suffix_to_symbol (Lisp_Object symbol,
|
|
3184 const Char_ASCII *ascii_string);
|
|
3185 Lisp_Object add_prefix_to_symbol (const Char_ASCII *ascii_string,
|
|
3186 Lisp_Object symbol);
|
|
3187
|
428
|
3188 /* Defined in glyphs.c */
|
578
|
3189 Error_Behavior decode_error_behavior_flag (Lisp_Object);
|
|
3190 Lisp_Object encode_error_behavior_flag (Error_Behavior);
|
428
|
3191
|
563
|
3192 /* Defined in glyphs-shared.c */
|
|
3193 void shared_resource_validate (Lisp_Object instantiator);
|
|
3194 Lisp_Object shared_resource_normalize (Lisp_Object inst,
|
|
3195 Lisp_Object console_type,
|
|
3196 Lisp_Object dest_mask,
|
|
3197 Lisp_Object tag);
|
|
3198 extern Lisp_Object Q_resource_type, Q_resource_id;
|
|
3199
|
|
3200 /* Defined in gui.c */
|
|
3201 DECLARE_DOESNT_RETURN (gui_error (const char *reason,
|
|
3202 Lisp_Object frob));
|
569
|
3203 DECLARE_DOESNT_RETURN (gui_error_2 (const char *reason,
|
|
3204 Lisp_Object frob0, Lisp_Object frob1));
|
428
|
3205 /* Defined in indent.c */
|
665
|
3206 int bi_spaces_at_point (struct buffer *, Bytebpos);
|
|
3207 int column_at_point (struct buffer *, Charbpos, int);
|
|
3208 int string_column_at_point (Lisp_String *, Charbpos, int);
|
428
|
3209 int current_column (struct buffer *);
|
|
3210 void invalidate_current_column (void);
|
665
|
3211 Charbpos vmotion (struct window *, Charbpos, int, int *);
|
|
3212 Charbpos vmotion_pixels (Lisp_Object, Charbpos, int, int, int *);
|
428
|
3213
|
771
|
3214 /* Defined in insdel.c */
|
|
3215 void set_buffer_point (struct buffer *buf, Charbpos pos, Bytebpos bipos);
|
|
3216
|
|
3217 /* Defined in intl-win32.c */
|
|
3218 EXFUN (Fmswindows_set_current_locale, 1);
|
|
3219 EXFUN (Fmswindows_current_locale, 0);
|
|
3220 EXFUN (Fmswindows_user_default_locale, 0);
|
|
3221 EXFUN (Fmswindows_system_default_locale, 0);
|
|
3222 EXFUN (Fmswindows_locale_code_page, 1);
|
|
3223 EXFUN (Fmswindows_supported_locales, 0);
|
|
3224 EXFUN (Fmswindows_charset_code_page, 1);
|
|
3225 EXFUN (Fmswindows_set_charset_code_page, 2);
|
|
3226
|
|
3227 extern Lisp_Object Qmswindows_tstr, Qmswindows_unicode;
|
|
3228 extern Lisp_Object Qmswindows_multibyte, Qmswindows_multibyte_to_unicode;
|
|
3229
|
428
|
3230 /* Defined in keymap.c */
|
|
3231 void where_is_to_char (Lisp_Object, char *);
|
|
3232
|
|
3233 /* Defined in lread.c */
|
|
3234 void ebolify_bytecode_constants (Lisp_Object);
|
|
3235 void close_load_descs (void);
|
|
3236 int locate_file (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object *, int);
|
|
3237 EXFUN (Flocate_file_clear_hashing, 1);
|
442
|
3238 int isfloat_string (const char *);
|
428
|
3239
|
|
3240 /* Well, I've decided to enable this. -- ben */
|
|
3241 /* And I've decided to make it work right. -- sb */
|
|
3242 #define LOADHIST
|
|
3243 /* Define the following symbol to enable load history of dumped files */
|
|
3244 #define LOADHIST_DUMPED
|
|
3245 /* Define the following symbol to enable load history of C source */
|
|
3246 #define LOADHIST_BUILTIN
|
|
3247
|
|
3248 #ifdef LOADHIST /* this is just a stupid idea */
|
|
3249 #define LOADHIST_ATTACH(x) \
|
|
3250 do { if (initialized) Vcurrent_load_list = Fcons (x, Vcurrent_load_list); } \
|
|
3251 while (0)
|
|
3252 #else /*! LOADHIST */
|
|
3253 # define LOADHIST_ATTACH(x)
|
|
3254 #endif /*! LOADHIST */
|
|
3255
|
|
3256 /* Defined in marker.c */
|
665
|
3257 Bytebpos bi_marker_position (Lisp_Object);
|
|
3258 Charbpos marker_position (Lisp_Object);
|
|
3259 void set_bi_marker_position (Lisp_Object, Bytebpos);
|
|
3260 void set_marker_position (Lisp_Object, Charbpos);
|
428
|
3261 void unchain_marker (Lisp_Object);
|
|
3262 Lisp_Object noseeum_copy_marker (Lisp_Object, Lisp_Object);
|
|
3263 Lisp_Object set_marker_restricted (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3264 #ifdef MEMORY_USAGE_STATS
|
|
3265 int compute_buffer_marker_usage (struct buffer *, struct overhead_stats *);
|
|
3266 #endif
|
771
|
3267 void init_buffer_markers (struct buffer *b);
|
|
3268 void uninit_buffer_markers (struct buffer *b);
|
428
|
3269
|
|
3270 /* Defined in menubar.c */
|
|
3271 extern int popup_menu_up_p;
|
|
3272 extern int menubar_show_keybindings;
|
|
3273 extern int popup_menu_titles;
|
|
3274
|
|
3275 /* Defined in minibuf.c */
|
|
3276 extern int minibuf_level;
|
665
|
3277 Charcount scmp_1 (const Intbyte *, const Intbyte *, Charcount, int);
|
428
|
3278 #define scmp(s1, s2, len) scmp_1 (s1, s2, len, completion_ignore_case)
|
|
3279 extern int completion_ignore_case;
|
665
|
3280 int regexp_ignore_completion_p (const Intbyte *, Lisp_Object,
|
428
|
3281 Bytecount, Bytecount);
|
|
3282 Lisp_Object clear_echo_area (struct frame *, Lisp_Object, int);
|
|
3283 Lisp_Object clear_echo_area_from_print (struct frame *, Lisp_Object, int);
|
665
|
3284 void echo_area_append (struct frame *, const Intbyte *, Lisp_Object,
|
428
|
3285 Bytecount, Bytecount, Lisp_Object);
|
665
|
3286 void echo_area_message (struct frame *, const Intbyte *, Lisp_Object,
|
428
|
3287 Bytecount, Bytecount, Lisp_Object);
|
|
3288 Lisp_Object echo_area_status (struct frame *);
|
|
3289 int echo_area_active (struct frame *);
|
|
3290 Lisp_Object echo_area_contents (struct frame *);
|
665
|
3291 void message_internal (const Intbyte *, Lisp_Object, Bytecount, Bytecount);
|
|
3292 void message_append_internal (const Intbyte *, Lisp_Object,
|
428
|
3293 Bytecount, Bytecount);
|
442
|
3294 void message (const char *, ...) PRINTF_ARGS (1, 2);
|
|
3295 void message_append (const char *, ...) PRINTF_ARGS (1, 2);
|
|
3296 void message_no_translate (const char *, ...) PRINTF_ARGS (1, 2);
|
428
|
3297 void clear_message (void);
|
|
3298
|
771
|
3299 /* Defined in mule-charset.c */
|
|
3300 extern Lisp_Object Ql2r, Qr2l;
|
|
3301
|
428
|
3302 /* Defined in print.c */
|
771
|
3303
|
|
3304 /* Lower-level ways to output data: */
|
|
3305 void print_internal (Lisp_Object, Lisp_Object, int);
|
428
|
3306 void debug_print (Lisp_Object);
|
|
3307 /* NOTE: Do not call this with the data of a Lisp_String. Use princ.
|
|
3308 * Note: stream should be defaulted before calling
|
|
3309 * (eg Qnil means stdout, not Vstandard_output, etc) */
|
771
|
3310 void write_c_string (const CIntbyte *str, Lisp_Object stream);
|
|
3311 /* Same goes for this function. */
|
|
3312 void write_string (const Intbyte *str, Lisp_Object stream);
|
428
|
3313 /* Same goes for this function. */
|
771
|
3314 void write_string_1 (const Intbyte *str, Bytecount size, Lisp_Object stream);
|
|
3315
|
|
3316 /* Higher-level (printf-style) ways to output data: */
|
|
3317 void write_fmt_string (Lisp_Object stream, const CIntbyte *fmt, ...);
|
|
3318 void write_fmt_string_lisp (Lisp_Object stream, const CIntbyte *fmt,
|
|
3319 int nargs, ...);
|
|
3320 void stderr_out (const CIntbyte *, ...) PRINTF_ARGS (1, 2);
|
|
3321 void stderr_out_lisp (const CIntbyte *, int nargs, ...);
|
|
3322 void stdout_out (const CIntbyte *, ...) PRINTF_ARGS (1, 2);
|
|
3323 void debug_out (const CIntbyte *, ...) PRINTF_ARGS (1, 2);
|
|
3324 DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS (fatal (const CIntbyte *,
|
|
3325 ...), 1, 2);
|
|
3326
|
|
3327 /* Internal functions: */
|
|
3328 void temp_output_buffer_setup (Lisp_Object);
|
|
3329 void temp_output_buffer_show (Lisp_Object, Lisp_Object);
|
428
|
3330 void print_cons (Lisp_Object, Lisp_Object, int);
|
|
3331 void print_vector (Lisp_Object, Lisp_Object, int);
|
|
3332 void print_string (Lisp_Object, Lisp_Object, int);
|
771
|
3333 void print_symbol (Lisp_Object, Lisp_Object, int);
|
|
3334 void print_float (Lisp_Object, Lisp_Object, int);
|
603
|
3335 /* The number of bytes required to store the decimal printed
|
|
3336 representation of an integral type. Add a few bytes for truncation,
|
|
3337 optional sign prefix, and null byte terminator.
|
614
|
3338 2.40824 == log (256) / log (10).
|
|
3339
|
|
3340 We don't use floating point since Sun cc (buggily?) cannot use
|
|
3341 floating point computations to define a compile-time integral
|
|
3342 constant. */
|
603
|
3343 #define DECIMAL_PRINT_SIZE(integral_type) \
|
614
|
3344 (((2410824 * sizeof (integral_type)) / 1000000) + 3)
|
577
|
3345 void long_to_string (char *, long);
|
428
|
3346 extern int print_escape_newlines;
|
|
3347 extern int print_readably;
|
|
3348 Lisp_Object internal_with_output_to_temp_buffer (Lisp_Object,
|
|
3349 Lisp_Object (*) (Lisp_Object),
|
|
3350 Lisp_Object, Lisp_Object);
|
|
3351 void float_to_string (char *, double);
|
|
3352 void internal_object_printer (Lisp_Object, Lisp_Object, int);
|
771
|
3353 void debug_short_backtrace (int);
|
|
3354 void debug_backtrace (void);
|
428
|
3355
|
563
|
3356 /* Defined in process.c */
|
|
3357 DECLARE_DOESNT_RETURN (report_process_error (const char *, Lisp_Object));
|
|
3358 DECLARE_DOESNT_RETURN (report_network_error (const char *, Lisp_Object));
|
|
3359
|
428
|
3360 /* Defined in profile.c */
|
|
3361 void mark_profiling_info (void);
|
|
3362 void profile_increase_call_count (Lisp_Object);
|
|
3363 extern int profiling_active;
|
|
3364 extern int profiling_redisplay_flag;
|
|
3365
|
|
3366 /* Defined in rangetab.c */
|
|
3367 void put_range_table (Lisp_Object, EMACS_INT, EMACS_INT, Lisp_Object);
|
|
3368 int unified_range_table_bytes_needed (Lisp_Object);
|
|
3369 int unified_range_table_bytes_used (void *);
|
|
3370 void unified_range_table_copy_data (Lisp_Object, void *);
|
|
3371 Lisp_Object unified_range_table_lookup (void *, EMACS_INT, Lisp_Object);
|
|
3372 int unified_range_table_nentries (void *);
|
|
3373 void unified_range_table_get_range (void *, int, EMACS_INT *, EMACS_INT *,
|
|
3374 Lisp_Object *);
|
|
3375
|
|
3376 /* Defined in search.c */
|
|
3377 struct re_pattern_buffer;
|
|
3378 struct re_registers;
|
665
|
3379 Charbpos scan_buffer (struct buffer *, Emchar, Charbpos, Charbpos, EMACS_INT, EMACS_INT *, int);
|
|
3380 Charbpos find_next_newline (struct buffer *, Charbpos, int);
|
|
3381 Charbpos find_next_newline_no_quit (struct buffer *, Charbpos, int);
|
|
3382 Bytebpos bi_find_next_newline_no_quit (struct buffer *, Bytebpos, int);
|
|
3383 Bytebpos bi_find_next_emchar_in_string (Lisp_String*, Emchar, Bytebpos, EMACS_INT);
|
|
3384 Charbpos find_before_next_newline (struct buffer *, Charbpos, Charbpos, int);
|
428
|
3385 struct re_pattern_buffer *compile_pattern (Lisp_Object, struct re_registers *,
|
578
|
3386 Lisp_Object, int, Error_Behavior);
|
665
|
3387 Bytecount fast_string_match (Lisp_Object, const Intbyte *,
|
428
|
3388 Lisp_Object, Bytecount,
|
578
|
3389 Bytecount, int, Error_Behavior, int);
|
428
|
3390 Bytecount fast_lisp_string_match (Lisp_Object, Lisp_Object);
|
|
3391 void restore_match_data (void);
|
507
|
3392 extern Fixnum warn_about_possibly_incompatible_back_references;
|
502
|
3393
|
428
|
3394
|
|
3395 /* Defined in signal.c */
|
|
3396 void init_interrupts_late (void);
|
771
|
3397 int begin_dont_check_for_quit (void);
|
428
|
3398
|
|
3399 /* Defined in sound.c */
|
|
3400 void init_device_sound (struct device *);
|
563
|
3401 DECLARE_DOESNT_RETURN (report_sound_error (const Char_ASCII *, Lisp_Object));
|
428
|
3402
|
|
3403 /* Defined in specifier.c */
|
|
3404 Lisp_Object specifier_instance (Lisp_Object, Lisp_Object, Lisp_Object,
|
578
|
3405 Error_Behavior, int, int, Lisp_Object);
|
428
|
3406 Lisp_Object specifier_instance_no_quit (Lisp_Object, Lisp_Object, Lisp_Object,
|
578
|
3407 Error_Behavior, int, Lisp_Object);
|
428
|
3408
|
|
3409 /* Defined in symbols.c */
|
665
|
3410 unsigned int hash_string (const Intbyte *, Bytecount);
|
771
|
3411 Lisp_Object intern_int (const Intbyte *str);
|
|
3412 Lisp_Object intern (const CIntbyte *str);
|
665
|
3413 Lisp_Object oblookup (Lisp_Object, const Intbyte *, Bytecount);
|
428
|
3414 void map_obarray (Lisp_Object, int (*) (Lisp_Object, void *), void *);
|
|
3415 Lisp_Object indirect_function (Lisp_Object, int);
|
|
3416 Lisp_Object symbol_value_in_buffer (Lisp_Object, Lisp_Object);
|
|
3417 void kill_buffer_local_variables (struct buffer *);
|
|
3418 int symbol_value_buffer_local_info (Lisp_Object, struct buffer *);
|
|
3419 Lisp_Object find_symbol_value (Lisp_Object);
|
|
3420 Lisp_Object find_symbol_value_quickly (Lisp_Object, int);
|
|
3421 Lisp_Object top_level_value (Lisp_Object);
|
|
3422 void reject_constant_symbols (Lisp_Object sym, Lisp_Object newval,
|
|
3423 int function_p,
|
|
3424 Lisp_Object follow_past_lisp_magic);
|
|
3425
|
|
3426 /* Defined in syntax.c */
|
665
|
3427 Charbpos scan_words (struct buffer *, Charbpos, int);
|
428
|
3428
|
771
|
3429 /* Defined in sysdep.c */
|
|
3430 long get_random (void);
|
|
3431 void seed_random (long arg);
|
|
3432
|
|
3433 /* Defined in text.c */
|
|
3434 void find_charsets_in_intbyte_string (unsigned char *charsets,
|
|
3435 const Intbyte *str,
|
|
3436 Bytecount len);
|
|
3437 void find_charsets_in_emchar_string (unsigned char *charsets,
|
|
3438 const Emchar *str,
|
|
3439 Charcount len);
|
|
3440 int intbyte_string_displayed_columns (const Intbyte *str, Bytecount len);
|
|
3441 int emchar_string_displayed_columns (const Emchar *str, Charcount len);
|
|
3442 Charcount intbyte_string_nonascii_chars (const Intbyte *str, Bytecount len);
|
|
3443 void convert_intbyte_string_into_emchar_dynarr (const Intbyte *str,
|
|
3444 Bytecount len,
|
|
3445 Emchar_dynarr *dyn);
|
|
3446 Charcount convert_intbyte_string_into_emchar_string (const Intbyte *str,
|
|
3447 Bytecount len,
|
|
3448 Emchar *arr);
|
|
3449 void convert_emchar_string_into_intbyte_dynarr (Emchar *arr, int nels,
|
|
3450 Intbyte_dynarr *dyn);
|
|
3451 Intbyte *convert_emchar_string_into_malloced_string (Emchar *arr, int nels,
|
|
3452 Bytecount *len_out);
|
|
3453
|
|
3454 /* flags for get_buffer_pos_char(), get_buffer_range_char(), etc. */
|
|
3455 /* At most one of GB_COERCE_RANGE and GB_NO_ERROR_IF_BAD should be
|
|
3456 specified. At most one of GB_NEGATIVE_FROM_END and GB_NO_ERROR_IF_BAD
|
|
3457 should be specified. */
|
|
3458
|
|
3459 #define GB_ALLOW_PAST_ACCESSIBLE (1 << 0)
|
|
3460 #define GB_ALLOW_NIL (1 << 1)
|
|
3461 #define GB_CHECK_ORDER (1 << 2)
|
|
3462 #define GB_COERCE_RANGE (1 << 3)
|
|
3463 #define GB_NO_ERROR_IF_BAD (1 << 4)
|
|
3464 #define GB_NEGATIVE_FROM_END (1 << 5)
|
|
3465 #define GB_HISTORICAL_STRING_BEHAVIOR (GB_NEGATIVE_FROM_END | GB_ALLOW_NIL)
|
|
3466
|
|
3467 Charbpos get_buffer_pos_char (struct buffer *b, Lisp_Object pos,
|
|
3468 unsigned int flags);
|
|
3469 Bytebpos get_buffer_pos_byte (struct buffer *b, Lisp_Object pos,
|
|
3470 unsigned int flags);
|
|
3471 void get_buffer_range_char (struct buffer *b, Lisp_Object from, Lisp_Object to,
|
|
3472 Charbpos *from_out, Charbpos *to_out,
|
|
3473 unsigned int flags);
|
|
3474 void get_buffer_range_byte (struct buffer *b, Lisp_Object from, Lisp_Object to,
|
|
3475 Bytebpos *from_out, Bytebpos *to_out,
|
|
3476 unsigned int flags);
|
|
3477 Charcount get_string_pos_char (Lisp_Object string, Lisp_Object pos,
|
|
3478 unsigned int flags);
|
|
3479 Bytecount get_string_pos_byte (Lisp_Object string, Lisp_Object pos,
|
|
3480 unsigned int flags);
|
|
3481 void get_string_range_char (Lisp_Object string, Lisp_Object from,
|
|
3482 Lisp_Object to, Charcount *from_out,
|
|
3483 Charcount *to_out, unsigned int flags);
|
|
3484 void get_string_range_byte (Lisp_Object string, Lisp_Object from,
|
|
3485 Lisp_Object to, Bytecount *from_out,
|
|
3486 Bytecount *to_out, unsigned int flags);
|
|
3487 Charbpos get_buffer_or_string_pos_char (Lisp_Object object, Lisp_Object pos,
|
|
3488 unsigned int flags);
|
|
3489 Bytebpos get_buffer_or_string_pos_byte (Lisp_Object object, Lisp_Object pos,
|
|
3490 unsigned int flags);
|
|
3491 void get_buffer_or_string_range_char (Lisp_Object object, Lisp_Object from,
|
|
3492 Lisp_Object to, Charbpos *from_out,
|
|
3493 Charbpos *to_out, unsigned int flags);
|
|
3494 void get_buffer_or_string_range_byte (Lisp_Object object, Lisp_Object from,
|
|
3495 Lisp_Object to, Bytebpos *from_out,
|
|
3496 Bytebpos *to_out, unsigned int flags);
|
|
3497 Charbpos buffer_or_string_accessible_begin_char (Lisp_Object object);
|
|
3498 Charbpos buffer_or_string_accessible_end_char (Lisp_Object object);
|
|
3499 Bytebpos buffer_or_string_accessible_begin_byte (Lisp_Object object);
|
|
3500 Bytebpos buffer_or_string_accessible_end_byte (Lisp_Object object);
|
|
3501 Charbpos buffer_or_string_absolute_begin_char (Lisp_Object object);
|
|
3502 Charbpos buffer_or_string_absolute_end_char (Lisp_Object object);
|
|
3503 Bytebpos buffer_or_string_absolute_begin_byte (Lisp_Object object);
|
|
3504 Bytebpos buffer_or_string_absolute_end_byte (Lisp_Object object);
|
|
3505
|
|
3506 #ifdef ENABLE_COMPOSITE_CHARS
|
|
3507
|
|
3508 Emchar lookup_composite_char (Intbyte *str, int len);
|
|
3509 Lisp_Object composite_char_string (Emchar ch);
|
|
3510 #endif /* ENABLE_COMPOSITE_CHARS */
|
|
3511
|
|
3512 EXFUN (Ffind_charset, 1);
|
|
3513 EXFUN (Fget_charset, 1);
|
|
3514 EXFUN (Fcharset_list, 0);
|
|
3515
|
|
3516 extern Lisp_Object Vcharset_ascii;
|
|
3517 extern Lisp_Object Vcharset_control_1;
|
|
3518 extern Lisp_Object Vcharset_latin_iso8859_1;
|
|
3519 extern Lisp_Object Vcharset_latin_iso8859_2;
|
|
3520 extern Lisp_Object Vcharset_latin_iso8859_3;
|
|
3521 extern Lisp_Object Vcharset_latin_iso8859_4;
|
|
3522 extern Lisp_Object Vcharset_thai_tis620;
|
|
3523 extern Lisp_Object Vcharset_greek_iso8859_7;
|
|
3524 extern Lisp_Object Vcharset_arabic_iso8859_6;
|
|
3525 extern Lisp_Object Vcharset_hebrew_iso8859_8;
|
|
3526 extern Lisp_Object Vcharset_katakana_jisx0201;
|
|
3527 extern Lisp_Object Vcharset_latin_jisx0201;
|
|
3528 extern Lisp_Object Vcharset_cyrillic_iso8859_5;
|
|
3529 extern Lisp_Object Vcharset_latin_iso8859_9;
|
|
3530 extern Lisp_Object Vcharset_japanese_jisx0208_1978;
|
|
3531 extern Lisp_Object Vcharset_chinese_gb2312;
|
|
3532 extern Lisp_Object Vcharset_japanese_jisx0208;
|
|
3533 extern Lisp_Object Vcharset_korean_ksc5601;
|
|
3534 extern Lisp_Object Vcharset_japanese_jisx0212;
|
|
3535 extern Lisp_Object Vcharset_chinese_cns11643_1;
|
|
3536 extern Lisp_Object Vcharset_chinese_cns11643_2;
|
|
3537 extern Lisp_Object Vcharset_chinese_big5_1;
|
|
3538 extern Lisp_Object Vcharset_chinese_big5_2;
|
|
3539 extern Lisp_Object Vcharset_composite;
|
|
3540
|
|
3541 Emchar Lstream_get_emchar_1 (Lstream *stream, int first_char);
|
|
3542 int Lstream_fput_emchar (Lstream *stream, Emchar ch);
|
|
3543 void Lstream_funget_emchar (Lstream *stream, Emchar ch);
|
|
3544
|
|
3545 DECLARE_INLINE_HEADER (Intbyte *qxestrdup (const Intbyte *s))
|
|
3546 {
|
|
3547 return (Intbyte *) xstrdup ((const char *) s);
|
|
3548 }
|
|
3549
|
|
3550 DECLARE_INLINE_HEADER (Bytecount qxestrlen (const Intbyte *s))
|
|
3551 {
|
|
3552 return strlen ((const char *) s);
|
|
3553 }
|
|
3554
|
|
3555 DECLARE_INLINE_HEADER (Charcount qxestrcharlen (const Intbyte *s))
|
|
3556 {
|
|
3557 return bytecount_to_charcount (s, qxestrlen (s));
|
|
3558 }
|
|
3559
|
|
3560 DECLARE_INLINE_HEADER (int qxestrcmp (const Intbyte *s1,
|
|
3561 const Intbyte *s2))
|
|
3562 {
|
|
3563 return strcmp ((const char *) s1, (const char *) s2);
|
|
3564 }
|
|
3565
|
|
3566 DECLARE_INLINE_HEADER (int qxestrcmp_c (const Intbyte *s1,
|
|
3567 const char *s2))
|
|
3568 {
|
|
3569 return strcmp ((const char *) s1, s2);
|
|
3570 }
|
|
3571
|
|
3572 DECLARE_INLINE_HEADER (int qxestrncmp (const Intbyte *string1,
|
|
3573 const Intbyte *string2,
|
|
3574 Bytecount count))
|
|
3575 {
|
|
3576 return strncmp ((const char *) string1, (const char *) string2,
|
|
3577 (size_t) count);
|
|
3578 }
|
|
3579
|
|
3580 DECLARE_INLINE_HEADER (int qxestrncmp_c (const Intbyte *string1,
|
|
3581 const char *string2,
|
|
3582 Bytecount count))
|
|
3583 {
|
|
3584 return strncmp ((const char *) string1, string2, (size_t) count);
|
|
3585 }
|
|
3586
|
|
3587 DECLARE_INLINE_HEADER (Intbyte *qxestrcpy (Intbyte *strDest,
|
|
3588 const Intbyte *strSource))
|
|
3589 {
|
|
3590 return (Intbyte *) strcpy ((char *) strDest, (const char *) strSource);
|
|
3591 }
|
|
3592
|
|
3593 DECLARE_INLINE_HEADER (Intbyte *qxestrcpy_c (Intbyte *strDest,
|
|
3594 const char *strSource))
|
|
3595 {
|
|
3596 return (Intbyte *) strcpy ((char *) strDest, strSource);
|
|
3597 }
|
|
3598
|
|
3599 DECLARE_INLINE_HEADER (Intbyte *qxestrncpy (Intbyte *strDest,
|
|
3600 const Intbyte *strSource,
|
|
3601 Bytecount count))
|
|
3602 {
|
|
3603 return (Intbyte *) strncpy ((char *) strDest, (const char *) strSource,
|
|
3604 (size_t) count);
|
|
3605 }
|
|
3606
|
|
3607 DECLARE_INLINE_HEADER (Intbyte *qxestrncpy_c (Intbyte *strDest,
|
|
3608 const char *strSource,
|
|
3609 Bytecount count))
|
|
3610 {
|
|
3611 return (Intbyte *) strncpy ((char *) strDest, strSource, (size_t) count);
|
|
3612 }
|
|
3613
|
|
3614 DECLARE_INLINE_HEADER (Intbyte *qxestrcat (Intbyte *strDest,
|
|
3615 const Intbyte *strSource))
|
|
3616 {
|
|
3617 return (Intbyte *) strcat ((char *) strDest, (const char *) strSource);
|
|
3618 }
|
|
3619
|
|
3620 DECLARE_INLINE_HEADER (Intbyte *qxestrcat_c (Intbyte *strDest,
|
|
3621 const char *strSource))
|
|
3622 {
|
|
3623 return (Intbyte *) strcat ((char *) strDest, strSource);
|
|
3624 }
|
|
3625
|
|
3626 DECLARE_INLINE_HEADER (Intbyte *qxestrncat (Intbyte *strDest,
|
|
3627 const Intbyte *strSource,
|
|
3628 Bytecount count))
|
|
3629 {
|
|
3630 return (Intbyte *) strncat ((char *) strDest, (const char *) strSource,
|
|
3631 (size_t) count);
|
|
3632 }
|
|
3633
|
|
3634 DECLARE_INLINE_HEADER (Intbyte *qxestrncat_c (Intbyte *strDest,
|
|
3635 const char *strSource,
|
|
3636 Bytecount count))
|
|
3637 {
|
|
3638 return (Intbyte *) strncat ((char *) strDest, strSource, (size_t) count);
|
|
3639 }
|
|
3640
|
|
3641 DECLARE_INLINE_HEADER (Intbyte *qxestrchr (const Intbyte *s, Emchar c))
|
|
3642 {
|
|
3643 assert (c >= 0 && c <= 255);
|
|
3644 return (Intbyte *) strchr ((const char *) s, c);
|
|
3645 }
|
|
3646
|
|
3647 DECLARE_INLINE_HEADER (Intbyte *qxestrrchr (const Intbyte *s, Emchar c))
|
|
3648 {
|
|
3649 assert (c >= 0 && c <= 255);
|
|
3650 return (Intbyte *) strrchr ((const char *) s, c);
|
|
3651 }
|
|
3652
|
|
3653 DECLARE_INLINE_HEADER (Intbyte *qxestrstr (const Intbyte *string1,
|
|
3654 const Intbyte *string2))
|
|
3655 {
|
|
3656 return (Intbyte *) strstr ((const char *) string1, (const char *) string2);
|
|
3657 }
|
|
3658
|
|
3659 DECLARE_INLINE_HEADER (Bytecount qxestrcspn (const Intbyte *string,
|
|
3660 const CIntbyte *strCharSet))
|
|
3661 {
|
|
3662 return (Bytecount) strcspn ((const char *) string, strCharSet);
|
|
3663 }
|
|
3664
|
|
3665 DECLARE_INLINE_HEADER (Bytecount qxestrspn (const Intbyte *string,
|
|
3666 const CIntbyte *strCharSet))
|
|
3667 {
|
|
3668 return (Bytecount) strspn ((const char *) string, strCharSet);
|
|
3669 }
|
|
3670
|
|
3671 DECLARE_INLINE_HEADER (Intbyte *qxestrpbrk (const Intbyte *string,
|
|
3672 const CIntbyte *strCharSet))
|
|
3673 {
|
|
3674 return (Intbyte *) strpbrk ((const char *) string, strCharSet);
|
|
3675 }
|
|
3676
|
|
3677 DECLARE_INLINE_HEADER (Intbyte *qxestrtok (Intbyte *strToken,
|
|
3678 const CIntbyte *strDelimit))
|
|
3679 {
|
|
3680 return (Intbyte *) strtok ((char *) strToken, strDelimit);
|
|
3681 }
|
|
3682
|
|
3683 DECLARE_INLINE_HEADER (double qxestrtod (const Intbyte *nptr,
|
|
3684 Intbyte **endptr))
|
|
3685 {
|
|
3686 return strtod ((const char *) nptr, (char **) endptr);
|
|
3687 }
|
|
3688
|
|
3689 DECLARE_INLINE_HEADER (long qxestrtol (const Intbyte *nptr, Intbyte **endptr,
|
|
3690 int base))
|
|
3691 {
|
|
3692 return strtol ((const char *) nptr, (char **) endptr, base);
|
|
3693 }
|
|
3694
|
|
3695 DECLARE_INLINE_HEADER (unsigned long qxestrtoul (const Intbyte *nptr,
|
|
3696 Intbyte **endptr,
|
|
3697 int base))
|
|
3698 {
|
|
3699 return strtoul ((const char *) nptr, (char **) endptr, base);
|
|
3700 }
|
|
3701
|
|
3702 DECLARE_INLINE_HEADER (int qxeatoi (const Intbyte *string))
|
|
3703 {
|
|
3704 return atoi ((const char *) string);
|
|
3705 }
|
|
3706
|
|
3707 int qxesprintf (Intbyte *buffer, const CIntbyte *format, ...)
|
|
3708 PRINTF_ARGS (2, 3);
|
|
3709
|
|
3710 /* Do not use POSIX locale routines. Not Mule-correct. */
|
|
3711 #define qxestrcoll DO NOT USE.
|
|
3712 #define qxestrxfrm DO NOT USE.
|
|
3713
|
|
3714 int qxestrcasecmp (const Intbyte *s1, const Intbyte *s2);
|
|
3715 int qxestrcasecmp_c (const Intbyte *s1, const Char_ASCII *s2);
|
|
3716 int qxestrcasecmp_i18n (const Intbyte *s1, const Intbyte *s2);
|
|
3717 int ascii_strcasecmp (const Char_ASCII *s1, const Char_ASCII *s2);
|
|
3718 int lisp_strcasecmp (Lisp_Object s1, Lisp_Object s2);
|
|
3719 int lisp_strcasecmp_i18n (Lisp_Object s1, Lisp_Object s2);
|
|
3720 int qxestrncasecmp (const Intbyte *s1, const Intbyte *s2, Bytecount len);
|
|
3721 int qxestrncasecmp_c (const Intbyte *s1, const Char_ASCII *s2, Bytecount len);
|
|
3722 int qxestrncasecmp_i18n (const Intbyte *s1, const Intbyte *s2, Bytecount len);
|
|
3723 int ascii_strncasecmp (const Char_ASCII *s1, const Char_ASCII *s2,
|
|
3724 Bytecount len);
|
|
3725 int qxememcmp (const Intbyte *s1, const Intbyte *s2, Bytecount len);
|
|
3726 int qxememcasecmp (const Intbyte *s1, const Intbyte *s2, Bytecount len);
|
|
3727 int qxememcasecmp_i18n (const Intbyte *s1, const Intbyte *s2, Bytecount len);
|
|
3728
|
|
3729 void buffer_mule_signal_inserted_region (struct buffer *buf, Charbpos start,
|
|
3730 Bytecount bytelength,
|
|
3731 Charcount charlength);
|
|
3732 void buffer_mule_signal_deleted_region (struct buffer *buf, Charbpos start,
|
|
3733 Charbpos end, Bytebpos bi_start,
|
|
3734 Bytebpos bi_end);
|
|
3735
|
|
3736 /* Defined in unicode.c */
|
|
3737 extern const struct struct_description to_unicode_description[];
|
|
3738 extern const struct struct_description from_unicode_description[];
|
|
3739 void init_charset_unicode_tables (Lisp_Object charset);
|
|
3740 void free_charset_unicode_tables (Lisp_Object charset);
|
|
3741 void recalculate_unicode_precedence (void);
|
|
3742 extern Lisp_Object Qunicode;
|
|
3743 extern Lisp_Object Qutf_16, Qutf_8, Qucs_4, Qutf_7;
|
|
3744 #ifdef MEMORY_USAGE_STATS
|
|
3745 Bytecount compute_from_unicode_table_size (Lisp_Object charset,
|
|
3746 struct overhead_stats *stats);
|
|
3747 Bytecount compute_to_unicode_table_size (Lisp_Object charset,
|
|
3748 struct overhead_stats *stats);
|
|
3749 #endif /* MEMORY_USAGE_STATS */
|
|
3750
|
428
|
3751 /* Defined in undo.c */
|
|
3752 Lisp_Object truncate_undo_list (Lisp_Object, int, int);
|
|
3753 void record_extent (Lisp_Object, int);
|
665
|
3754 void record_insert (struct buffer *, Charbpos, Charcount);
|
|
3755 void record_delete (struct buffer *, Charbpos, Charcount);
|
|
3756 void record_change (struct buffer *, Charbpos, Charcount);
|
428
|
3757
|
|
3758 /* Defined in unex*.c */
|
|
3759 int unexec (char *, char *, uintptr_t, uintptr_t, uintptr_t);
|
|
3760 #ifdef RUN_TIME_REMAP
|
|
3761 int run_time_remap (char *);
|
|
3762 #endif
|
|
3763
|
|
3764 /* Defined in vm-limit.c */
|
442
|
3765 void memory_warnings (void *, void (*) (const char *));
|
428
|
3766
|
|
3767 /* Defined in window.c */
|
|
3768 Lisp_Object save_window_excursion_unwind (Lisp_Object);
|
|
3769 Lisp_Object display_buffer (Lisp_Object, Lisp_Object, Lisp_Object);
|
|
3770
|
442
|
3771 /*--------------- prototypes for Lisp primitives in C ------------*/
|
|
3772
|
428
|
3773 /* The following were machine generated 19980312 */
|
|
3774
|
|
3775 EXFUN (Faccept_process_output, 3);
|
|
3776 EXFUN (Fadd1, 1);
|
|
3777 EXFUN (Fadd_spec_to_specifier, 5);
|
|
3778 EXFUN (Fadd_timeout, 4);
|
|
3779 EXFUN (Fappend, MANY);
|
|
3780 EXFUN (Fapply, MANY);
|
|
3781 EXFUN (Faref, 2);
|
|
3782 EXFUN (Faset, 3);
|
|
3783 EXFUN (Fassoc, 2);
|
|
3784 EXFUN (Fassq, 2);
|
|
3785 EXFUN (Fbacktrace, 2);
|
|
3786 EXFUN (Fbeginning_of_line, 2);
|
|
3787 EXFUN (Fbobp, 1);
|
|
3788 EXFUN (Fbolp, 1);
|
|
3789 EXFUN (Fboundp, 1);
|
|
3790 EXFUN (Fbuffer_substring, 3);
|
|
3791 EXFUN (Fbuilt_in_variable_type, 1);
|
|
3792 EXFUN (Fbyte_code, 3);
|
|
3793 EXFUN (Fcall_interactively, 3);
|
|
3794 EXFUN (Fcanonicalize_lax_plist, 2);
|
|
3795 EXFUN (Fcanonicalize_plist, 2);
|
|
3796 EXFUN (Fcar, 1);
|
|
3797 EXFUN (Fcar_safe, 1);
|
|
3798 EXFUN (Fcdr, 1);
|
|
3799 EXFUN (Fchar_after, 2);
|
|
3800 EXFUN (Fchar_to_string, 1);
|
|
3801 EXFUN (Fcheck_valid_plist, 1);
|
442
|
3802 EXFUN (Fvalid_plist_p, 1);
|
428
|
3803 EXFUN (Fclear_range_table, 1);
|
|
3804 EXFUN (Fcommand_execute, 3);
|
|
3805 EXFUN (Fcommandp, 1);
|
|
3806 EXFUN (Fconcat, MANY);
|
|
3807 EXFUN (Fcons, 2);
|
|
3808 EXFUN (Fcopy_alist, 1);
|
|
3809 EXFUN (Fcopy_event, 2);
|
|
3810 EXFUN (Fcopy_list, 1);
|
|
3811 EXFUN (Fcopy_marker, 2);
|
|
3812 EXFUN (Fcopy_sequence, 1);
|
|
3813 EXFUN (Fcopy_tree, 2);
|
|
3814 EXFUN (Fcurrent_window_configuration, 1);
|
|
3815 EXFUN (Fdefault_boundp, 1);
|
|
3816 EXFUN (Fdefault_value, 1);
|
|
3817 EXFUN (Fdefine_key, 3);
|
442
|
3818 EXFUN (Fdelete, 2);
|
428
|
3819 EXFUN (Fdelete_region, 3);
|
|
3820 EXFUN (Fdelete_process, 1);
|
|
3821 EXFUN (Fdelq, 2);
|
|
3822 EXFUN (Fdestructive_alist_to_plist, 1);
|
|
3823 EXFUN (Fdgettext, 2);
|
|
3824 EXFUN (Fding, 3);
|
|
3825 EXFUN (Fdirectory_file_name, 1);
|
|
3826 EXFUN (Fdisable_timeout, 1);
|
|
3827 EXFUN (Fdiscard_input, 0);
|
|
3828 EXFUN (Fdispatch_event, 1);
|
|
3829 EXFUN (Fdisplay_error, 2);
|
|
3830 EXFUN (Fdo_auto_save, 2);
|
|
3831 EXFUN (Fdowncase, 2);
|
|
3832 EXFUN (Felt, 2);
|
|
3833 EXFUN (Fend_of_line, 2);
|
|
3834 EXFUN (Fenqueue_eval_event, 2);
|
|
3835 EXFUN (Feobp, 1);
|
|
3836 EXFUN (Feolp, 1);
|
|
3837 EXFUN (Fequal, 2);
|
|
3838 EXFUN (Ferror_message_string, 1);
|
|
3839 EXFUN (Feval, 1);
|
|
3840 EXFUN (Fevent_to_character, 4);
|
|
3841 EXFUN (Fexecute_kbd_macro, 2);
|
|
3842 EXFUN (Fexpand_abbrev, 0);
|
|
3843 EXFUN (Fexpand_file_name, 2);
|
|
3844 EXFUN (Fextent_at, 5);
|
|
3845 EXFUN (Fextent_property, 3);
|
|
3846 EXFUN (Ffboundp, 1);
|
|
3847 EXFUN (Ffile_accessible_directory_p, 1);
|
|
3848 EXFUN (Ffile_directory_p, 1);
|
|
3849 EXFUN (Ffile_executable_p, 1);
|
|
3850 EXFUN (Ffile_exists_p, 1);
|
|
3851 EXFUN (Ffile_name_absolute_p, 1);
|
|
3852 EXFUN (Ffile_name_as_directory, 1);
|
|
3853 EXFUN (Ffile_name_directory, 1);
|
|
3854 EXFUN (Ffile_name_nondirectory, 1);
|
|
3855 EXFUN (Ffile_readable_p, 1);
|
|
3856 EXFUN (Ffile_symlink_p, 1);
|
|
3857 EXFUN (Ffile_truename, 2);
|
|
3858 EXFUN (Ffind_file_name_handler, 2);
|
|
3859 EXFUN (Ffollowing_char, 1);
|
|
3860 EXFUN (Fformat, MANY);
|
|
3861 EXFUN (Fforward_char, 2);
|
|
3862 EXFUN (Fforward_line, 2);
|
|
3863 EXFUN (Ffset, 2);
|
|
3864 EXFUN (Ffuncall, MANY);
|
442
|
3865 EXFUN (Ffunctionp, 1);
|
428
|
3866 EXFUN (Fgeq, MANY);
|
|
3867 EXFUN (Fget, 3);
|
|
3868 EXFUN (Fget_buffer_process, 1);
|
|
3869 EXFUN (Fget_process, 1);
|
|
3870 EXFUN (Fget_range_table, 3);
|
|
3871 EXFUN (Fgettext, 1);
|
|
3872 EXFUN (Fgoto_char, 2);
|
|
3873 EXFUN (Fgtr, MANY);
|
|
3874 EXFUN (Findent_to, 3);
|
|
3875 EXFUN (Findirect_function, 1);
|
|
3876 EXFUN (Finsert, MANY);
|
|
3877 EXFUN (Finsert_buffer_substring, 3);
|
|
3878 EXFUN (Finsert_char, 4);
|
|
3879 EXFUN (Finsert_file_contents_internal, 7);
|
|
3880 EXFUN (Finteractive_p, 0);
|
|
3881 EXFUN (Fintern, 2);
|
|
3882 EXFUN (Fintern_soft, 2);
|
|
3883 EXFUN (Fkey_description, 1);
|
|
3884 EXFUN (Fkill_emacs, 1);
|
|
3885 EXFUN (Fkill_local_variable, 1);
|
442
|
3886 EXFUN (Flast, 2);
|
428
|
3887 EXFUN (Flax_plist_get, 3);
|
|
3888 EXFUN (Flax_plist_remprop, 2);
|
|
3889 EXFUN (Flength, 1);
|
|
3890 EXFUN (Fleq, MANY);
|
|
3891 EXFUN (Flist, MANY);
|
|
3892 EXFUN (Flistp, 1);
|
|
3893 EXFUN (Flist_modules, 0);
|
|
3894 EXFUN (Fload_module, 3);
|
440
|
3895 EXFUN (Flookup_key, 3);
|
428
|
3896 EXFUN (Flss, MANY);
|
|
3897 EXFUN (Fmake_byte_code, MANY);
|
771
|
3898 EXFUN (Fmake_charset, 3);
|
428
|
3899 EXFUN (Fmake_glyph_internal, 1);
|
|
3900 EXFUN (Fmake_list, 2);
|
|
3901 EXFUN (Fmake_marker, 0);
|
|
3902 EXFUN (Fmake_range_table, 0);
|
771
|
3903 EXFUN (Fmake_temp_name, 1);
|
428
|
3904 EXFUN (Fmake_sparse_keymap, 1);
|
|
3905 EXFUN (Fmake_string, 2);
|
|
3906 EXFUN (Fmake_symbol, 1);
|
|
3907 EXFUN (Fmake_vector, 2);
|
|
3908 EXFUN (Fmapcar, 2);
|
|
3909 EXFUN (Fmarker_buffer, 1);
|
|
3910 EXFUN (Fmarker_position, 1);
|
|
3911 EXFUN (Fmatch_beginning, 1);
|
|
3912 EXFUN (Fmatch_end, 1);
|
|
3913 EXFUN (Fmax, MANY);
|
|
3914 EXFUN (Fmember, 2);
|
|
3915 EXFUN (Fmemq, 2);
|
|
3916 EXFUN (Fmin, MANY);
|
|
3917 EXFUN (Fminus, MANY);
|
|
3918 EXFUN (Fnarrow_to_region, 3);
|
|
3919 EXFUN (Fnconc, MANY);
|
|
3920 EXFUN (Fnext_event, 2);
|
|
3921 EXFUN (Fnreverse, 1);
|
|
3922 EXFUN (Fnthcdr, 2);
|
|
3923 EXFUN (Fnumber_to_string, 1);
|
|
3924 EXFUN (Fold_assq, 2);
|
|
3925 EXFUN (Fold_equal, 2);
|
|
3926 EXFUN (Fold_member, 2);
|
|
3927 EXFUN (Fold_memq, 2);
|
|
3928 EXFUN (Fplist_get, 3);
|
|
3929 EXFUN (Fplist_member, 2);
|
|
3930 EXFUN (Fplist_put, 3);
|
|
3931 EXFUN (Fplus, MANY);
|
|
3932 EXFUN (Fpoint, 1);
|
|
3933 EXFUN (Fpoint_marker, 2);
|
|
3934 EXFUN (Fpoint_max, 1);
|
|
3935 EXFUN (Fpoint_min, 1);
|
|
3936 EXFUN (Fpreceding_char, 1);
|
|
3937 EXFUN (Fprefix_numeric_value, 1);
|
|
3938 EXFUN (Fprin1, 2);
|
|
3939 EXFUN (Fprin1_to_string, 2);
|
|
3940 EXFUN (Fprinc, 2);
|
|
3941 EXFUN (Fprint, 2);
|
|
3942 EXFUN (Fprocess_status, 1);
|
|
3943 EXFUN (Fprogn, UNEVALLED);
|
|
3944 EXFUN (Fprovide, 1);
|
|
3945 EXFUN (Fput, 3);
|
|
3946 EXFUN (Fput_range_table, 4);
|
|
3947 EXFUN (Fput_text_property, 5);
|
|
3948 EXFUN (Fquo, MANY);
|
|
3949 EXFUN (Frassq, 2);
|
|
3950 EXFUN (Fread, 1);
|
|
3951 EXFUN (Fread_key_sequence, 3);
|
|
3952 EXFUN (Freally_free, 1);
|
|
3953 EXFUN (Frem, 2);
|
|
3954 EXFUN (Fremassq, 2);
|
442
|
3955 EXFUN (Freplace_list, 2);
|
771
|
3956 EXFUN (Frunning_temacs_p, 0);
|
428
|
3957 EXFUN (Fselected_frame, 1);
|
|
3958 EXFUN (Fset, 2);
|
|
3959 EXFUN (Fset_default, 2);
|
|
3960 EXFUN (Fset_marker, 3);
|
|
3961 EXFUN (Fset_standard_case_table, 1);
|
|
3962 EXFUN (Fsetcar, 2);
|
|
3963 EXFUN (Fsetcdr, 2);
|
|
3964 EXFUN (Fsignal, 2);
|
|
3965 EXFUN (Fsit_for, 2);
|
|
3966 EXFUN (Fskip_chars_backward, 3);
|
|
3967 EXFUN (Fskip_chars_forward, 3);
|
|
3968 EXFUN (Fsleep_for, 1);
|
|
3969 EXFUN (Fsort, 2);
|
|
3970 EXFUN (Fspecifier_spec_list, 4);
|
|
3971 EXFUN (Fstring_equal, 2);
|
|
3972 EXFUN (Fstring_lessp, 2);
|
|
3973 EXFUN (Fstring_match, 4);
|
|
3974 EXFUN (Fsub1, 1);
|
|
3975 EXFUN (Fsubr_max_args, 1);
|
|
3976 EXFUN (Fsubr_min_args, 1);
|
|
3977 EXFUN (Fsubstitute_command_keys, 1);
|
|
3978 EXFUN (Fsubstitute_in_file_name, 1);
|
|
3979 EXFUN (Fsubstring, 3);
|
|
3980 EXFUN (Fsymbol_function, 1);
|
|
3981 EXFUN (Fsymbol_name, 1);
|
|
3982 EXFUN (Fsymbol_plist, 1);
|
|
3983 EXFUN (Fsymbol_value, 1);
|
|
3984 EXFUN (Fsystem_name, 0);
|
|
3985 EXFUN (Fthrow, 2);
|
|
3986 EXFUN (Ftimes, MANY);
|
|
3987 EXFUN (Ftruncate, 1);
|
|
3988 EXFUN (Fundo_boundary, 0);
|
|
3989 EXFUN (Funhandled_file_name_directory, 1);
|
|
3990 EXFUN (Funlock_buffer, 0);
|
|
3991 EXFUN (Fupcase, 2);
|
|
3992 EXFUN (Fupcase_initials, 2);
|
|
3993 EXFUN (Fupcase_initials_region, 3);
|
|
3994 EXFUN (Fupcase_region, 3);
|
|
3995 EXFUN (Fuser_home_directory, 0);
|
|
3996 EXFUN (Fuser_login_name, 1);
|
|
3997 EXFUN (Fvector, MANY);
|
|
3998 EXFUN (Fverify_visited_file_modtime, 1);
|
|
3999 EXFUN (Fvertical_motion, 3);
|
|
4000 EXFUN (Fwiden, 1);
|
|
4001
|
442
|
4002 /*--------------- prototypes for constant symbols ------------*/
|
|
4003
|
771
|
4004 /* Use the following when you have to add a bunch of symbols. */
|
|
4005
|
|
4006 /*
|
|
4007
|
|
4008 (defun redo-symbols (beg end)
|
|
4009 "Snarf any symbols out of the region and print them into a temporary buffer,
|
|
4010 which is displayed when the function finishes. The symbols are laid out with
|
|
4011 `extern Lisp_Object ' before each one, with as many as can fit on one line
|
|
4012 \(the maximum line width is controlled by the constant `max-line-length' in the
|
|
4013 code)."
|
|
4014 (interactive "r")
|
|
4015 (save-excursion
|
|
4016 (goto-char beg)
|
|
4017 (let (syms)
|
|
4018 (while (re-search-forward "\\s-\\(Q[A-Za-z_0-9]+\\)" end t)
|
|
4019 (push (match-string 1) syms))
|
|
4020 (setq syms (sort syms #'string-lessp))
|
|
4021 (with-output-to-temp-buffer "*Symbols*"
|
|
4022 (let* ((col 0)
|
|
4023 (start "extern Lisp_Object ")
|
|
4024 (startlen (length start))
|
|
4025 ;; with a default-width frame of 80 chars, you can only fit
|
|
4026 ;; 79 before wrapping. you can see this to a lower value if
|
|
4027 ;; you don't want it right up against the right margin.
|
|
4028 (max-line-length 79))
|
|
4029 (dolist (sym syms)
|
|
4030 (cond (;; if something already on line (this will always be the
|
|
4031 ;; case except the very first iteration), see what
|
|
4032 ;; space we've got. (need to take into account 2
|
|
4033 ;; for the comma+space, 1 for the semicolon at the
|
|
4034 ;; end.) if enough space, do it.
|
|
4035 (and (> col 0) (< (+ col (length sym) 2)
|
|
4036 (1- max-line-length)))
|
|
4037 (princ ", ")
|
|
4038 (princ sym)
|
|
4039 (incf col 2)
|
|
4040 (incf col (length sym)))
|
|
4041 (t
|
|
4042 ;; either we're first iteration or we ran out of space.
|
|
4043 ;; if the latter, terminate the previous line. this
|
|
4044 ;; loop is written on purpose so that it always prints
|
|
4045 ;; at least one item, even if that would go over.
|
|
4046 (when (> col 0)
|
|
4047 (princ ";\n")
|
|
4048 (setq col 0))
|
|
4049 (princ start)
|
|
4050 (incf col startlen)
|
|
4051 (princ sym)
|
|
4052 (incf col (length sym)))))
|
|
4053 ;; finally terminate the last line.
|
|
4054 (princ ";\n"))))))
|
|
4055
|
|
4056 */
|
|
4057
|
|
4058 extern Lisp_Object Qactivate_menubar_hook, Qarith_error, Qarrayp, Qautoload;
|
|
4059 extern Lisp_Object Qbackground, Qbackground_pixmap, Qbeginning_of_buffer;
|
|
4060 extern Lisp_Object Qbitp, Qblinking, Qbuffer_glyph_p, Qbuffer_live_p;
|
|
4061 extern Lisp_Object Qbuffer_read_only, Qbyte_code, Qcall_interactively;
|
|
4062 extern Lisp_Object Qcategory_designator_p, Qcategory_table_value_p, Qcdr;
|
|
4063 extern Lisp_Object Qchar_or_string_p, Qcharacterp, Qcircular_list;
|
|
4064 extern Lisp_Object Qcircular_property_list, Qcolor_pixmap_image_instance_p;
|
|
4065 extern Lisp_Object Qcommandp, Qcompletion_ignore_case, Qconsole_live_p;
|
|
4066 extern Lisp_Object Qconst_specifier, Qconversion_error, Qcurrent_menubar;
|
|
4067 extern Lisp_Object Qcyclic_variable_indirection, Qdefun, Qdevice_live_p, Qdim;
|
|
4068 extern Lisp_Object Qdirection, Qdisabled, Qdisabled_command_hook;
|
|
4069 extern Lisp_Object Qdisplay_table, Qdomain_error, Qediting_error;
|
|
4070 extern Lisp_Object Qend_of_buffer, Qend_of_file, Qend_open, Qerror;
|
|
4071 extern Lisp_Object Qerror_conditions, Qerror_lacks_explanatory_string;
|
|
4072 extern Lisp_Object Qerror_message, Qevent_live_p, Qexit, Qextent_live_p;
|
|
4073 extern Lisp_Object Qexternal_debugging_output, Qfeaturep, Qfile_error, Qfinal;
|
|
4074 extern Lisp_Object Qforeground, Qformat, Qframe_live_p, Qgraphic, Qgtk;
|
|
4075 extern Lisp_Object Qgui_error, Qicon_glyph_p, Qidentity, Qinhibit_quit;
|
|
4076 extern Lisp_Object Qinhibit_read_only, Qinteger_char_or_marker_p;
|
|
4077 extern Lisp_Object Qinteger_or_char_p, Qinteger_or_marker_p, Qintegerp;
|
|
4078 extern Lisp_Object Qinteractive, Qinternal_error, Qinvalid_argument;
|
|
4079 extern Lisp_Object Qinvalid_byte_code, Qinvalid_change, Qinvalid_constant;
|
|
4080 extern Lisp_Object Qinvalid_function, Qinvalid_operation;
|
|
4081 extern Lisp_Object Qinvalid_read_syntax, Qinvalid_state, Qio_error, Qlambda;
|
|
4082 extern Lisp_Object Qlayout, Qlist_formation_error, Qlistp, Qload, Qlock_shift;
|
|
4083 extern Lisp_Object Qlong_name, Qmacro, Qmakunbound, Qmalformed_list;
|
|
4084 extern Lisp_Object Qmalformed_property_list, Qmark;
|
|
4085 extern Lisp_Object Qmono_pixmap_image_instance_p, Qmouse_leave_buffer_hook;
|
|
4086 extern Lisp_Object Qnative_layout, Qnatnump, Qnetwork_error, Qno_catch;
|
|
4087 extern Lisp_Object Qnothing_image_instance_p, Qnumber_char_or_marker_p;
|
|
4088 extern Lisp_Object Qnumberp, Qout_of_memory, Qoutput_charset_conversion;
|
442
|
4089 extern Lisp_Object Qoverflow_error, Qpoint, Qpointer_glyph_p;
|
771
|
4090 extern Lisp_Object Qpointer_image_instance_p, Qprint_length;
|
563
|
4091 extern Lisp_Object Qprint_string_length, Qprinting_unreadable_object;
|
771
|
4092 extern Lisp_Object Qprocess_error, Qprogn, Qquit, Qquote, Qrange_error;
|
|
4093 extern Lisp_Object Qread_char, Qread_from_minibuffer;
|
|
4094 extern Lisp_Object Qreally_early_error_handler, Qregion_beginning;
|
|
4095 extern Lisp_Object Qregion_end, Qregistry, Qreverse_direction_charset;
|
|
4096 extern Lisp_Object Qrun_hooks, Qsans_modifiers, Qsave_buffers_kill_emacs;
|
|
4097 extern Lisp_Object Qself_insert_command, Qself_insert_defer_undo, Qsequencep;
|
|
4098 extern Lisp_Object Qset, Qsetting_constant, Qshort_name, Qsingularity_error;
|
|
4099 extern Lisp_Object Qsound_error, Qstack_overflow, Qstandard_input;
|
|
4100 extern Lisp_Object Qstandard_output, Qstart_open, Qstring_lessp;
|
|
4101 extern Lisp_Object Qstructure_formation_error, Qsubwindow;
|
|
4102 extern Lisp_Object Qsubwindow_image_instance_p, Qsyntax_error, Qt;
|
|
4103 extern Lisp_Object Qtext_conversion_error, Qtext_image_instance_p, Qtop_level;
|
|
4104 extern Lisp_Object Qtrue_list_p, Qunbound, Qunderflow_error, Qunderline;
|
|
4105 extern Lisp_Object Quser_files_and_directories, Qvalues;
|
|
4106 extern Lisp_Object Qvariable_documentation, Qvariable_domain, Qvoid_function;
|
|
4107 extern Lisp_Object Qvoid_variable, Qwindow_live_p, Qwrong_number_of_arguments;
|
442
|
4108 extern Lisp_Object Qwrong_type_argument, Qyes_or_no_p;
|
|
4109
|
|
4110 #define SYMBOL(fou) extern Lisp_Object fou
|
|
4111 #define SYMBOL_KEYWORD(la_cle_est_fou) extern Lisp_Object la_cle_est_fou
|
|
4112 #define SYMBOL_GENERAL(tout_le_monde, est_fou) \
|
|
4113 extern Lisp_Object tout_le_monde
|
|
4114
|
|
4115 #include "general-slots.h"
|
|
4116
|
|
4117 #undef SYMBOL
|
|
4118 #undef SYMBOL_KEYWORD
|
|
4119 #undef SYMBOL_GENERAL
|
|
4120
|
|
4121 /*--------------- prototypes for variables of type Lisp_Object ------------*/
|
|
4122
|
446
|
4123 extern Lisp_Object Vactivate_menubar_hook;
|
|
4124 extern Lisp_Object Vautoload_queue, Vblank_menubar;
|
771
|
4125 extern Lisp_Object Vcommand_history;
|
428
|
4126 extern Lisp_Object Vcommand_line_args, Vconfigure_info_directory;
|
|
4127 extern Lisp_Object Vconfigure_site_directory, Vconfigure_site_module_directory;
|
|
4128 extern Lisp_Object Vconsole_list, Vcontrolling_terminal;
|
|
4129 extern Lisp_Object Vcurrent_compiled_function_annotation, Vcurrent_load_list;
|
|
4130 extern Lisp_Object Vcurrent_mouse_event, Vcurrent_prefix_arg, Vdata_directory;
|
434
|
4131 extern Lisp_Object Vdirectory_sep_char, Vdisabled_command_hook;
|
|
4132 extern Lisp_Object Vdoc_directory, Vinternal_doc_file_name;
|
428
|
4133 extern Lisp_Object Vecho_area_buffer, Vemacs_major_version;
|
|
4134 extern Lisp_Object Vemacs_minor_version, Vexec_directory, Vexec_path;
|
|
4135 extern Lisp_Object Vexecuting_macro, Vfeatures, Vfile_domain;
|
771
|
4136 extern Lisp_Object Vinhibit_quit, Vinvocation_directory, Vinvocation_name;
|
|
4137 extern Lisp_Object Vlast_command, Vlast_command_char;
|
428
|
4138 extern Lisp_Object Vlast_command_event, Vlast_input_event;
|
|
4139 extern Lisp_Object Vload_file_name_internal;
|
|
4140 extern Lisp_Object Vload_file_name_internal_the_purecopy, Vload_history;
|
|
4141 extern Lisp_Object Vload_path, Vmark_even_if_inactive, Vmenubar_configuration;
|
|
4142 extern Lisp_Object Vminibuf_preprompt, Vminibuf_prompt, Vminibuffer_zero;
|
|
4143 extern Lisp_Object Vmodule_directory, Vmswindows_downcase_file_names;
|
|
4144 extern Lisp_Object Vmswindows_get_true_file_attributes, Vobarray;
|
|
4145 extern Lisp_Object Vprint_length, Vprint_level, Vprocess_environment;
|
|
4146 extern Lisp_Object Vquit_flag;
|
|
4147 extern Lisp_Object Vrecent_keys_ring, Vshell_file_name, Vsite_directory;
|
|
4148 extern Lisp_Object Vsite_module_directory;
|
|
4149 extern Lisp_Object Vstandard_input, Vstandard_output, Vstdio_str;
|
771
|
4150 extern Lisp_Object Vsynchronous_sounds, Vsystem_name;
|
428
|
4151 extern Lisp_Object Vthis_command_keys, Vunread_command_event;
|
|
4152 extern Lisp_Object Vx_initial_argv_list;
|
|
4153
|
440
|
4154 #endif /* INCLUDED_lisp_h_ */
|