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