annotate src/lisp.h @ 290:c9fe270a4101 r21-0b43

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