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