Mercurial > emacs
annotate src/lisp.h @ 111646:71b9e27e5245
lisp/ChangeLog: Fix entry for bug-querying changes.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 20 Nov 2010 13:52:09 +0200 |
parents | e06fc3baed8c |
children | 7153f8068e69 |
rev | line source |
---|---|
302 | 1 /* Fundamental definitions for GNU Emacs Lisp interpreter. |
60897
0f9e0d897751
(make_number): Make prototype more precise.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60417
diff
changeset
|
2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1998, 1999, 2000, |
106815 | 3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
79759 | 4 Free Software Foundation, Inc. |
302 | 5 |
6 This file is part of GNU Emacs. | |
7 | |
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94935
diff
changeset
|
8 GNU Emacs is free software: you can redistribute it and/or modify |
302 | 9 it under the terms of the GNU General Public License as published by |
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94935
diff
changeset
|
10 the Free Software Foundation, either version 3 of the License, or |
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94935
diff
changeset
|
11 (at your option) any later version. |
302 | 12 |
13 GNU Emacs is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94935
diff
changeset
|
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
302 | 20 |
52274 | 21 #ifndef EMACS_LISP_H |
22 #define EMACS_LISP_H | |
23 | |
109308
3200fb11db9d
Make doprnt and related functions ANSI C compliant, with prototypes.
Ken Raeburn <raeburn@raeburn.org>
parents:
109165
diff
changeset
|
24 #include <stdarg.h> |
109320
a0d2db31314d
Use offsetof instead of own definition
Andreas Schwab <schwab@linux-m68k.org>
parents:
109313
diff
changeset
|
25 #include <stddef.h> |
109308
3200fb11db9d
Make doprnt and related functions ANSI C compliant, with prototypes.
Ken Raeburn <raeburn@raeburn.org>
parents:
109165
diff
changeset
|
26 |
104622
cf947e01a2b6
* lisp.h: Replace #if 0 code for checking with text pointing to
Dan Nicolaescu <dann@ics.uci.edu>
parents:
104568
diff
changeset
|
27 /* Use the configure flag --enable-checking[=LIST] to enable various |
cf947e01a2b6
* lisp.h: Replace #if 0 code for checking with text pointing to
Dan Nicolaescu <dann@ics.uci.edu>
parents:
104568
diff
changeset
|
28 types of run time checks for Lisp objects. */ |
35184
07ec5658a7a5
(STRING_BYTES) [GC_CHECK_STRING_BYTES]: Call
Gerd Moellmann <gerd@gnu.org>
parents:
35173
diff
changeset
|
29 |
60417
4a07536ef0de
(CHECK_CONS_LIST): New macro (two definitions).
Richard M. Stallman <rms@gnu.org>
parents:
59678
diff
changeset
|
30 #ifdef GC_CHECK_CONS_LIST |
4a07536ef0de
(CHECK_CONS_LIST): New macro (two definitions).
Richard M. Stallman <rms@gnu.org>
parents:
59678
diff
changeset
|
31 #define CHECK_CONS_LIST() check_cons_list() |
4a07536ef0de
(CHECK_CONS_LIST): New macro (two definitions).
Richard M. Stallman <rms@gnu.org>
parents:
59678
diff
changeset
|
32 #else |
81813
32d8fd242bb2
* lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81794
diff
changeset
|
33 #define CHECK_CONS_LIST() ((void)0) |
60417
4a07536ef0de
(CHECK_CONS_LIST): New macro (two definitions).
Richard M. Stallman <rms@gnu.org>
parents:
59678
diff
changeset
|
34 #endif |
302 | 35 |
8835
48bcdcb9d191
(EMACS_INT, EMACS_UINT): Define, if not already defined.
Richard M. Stallman <rms@gnu.org>
parents:
8827
diff
changeset
|
36 /* These are default choices for the types to use. */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25818
diff
changeset
|
37 #ifdef _LP64 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25818
diff
changeset
|
38 #ifndef EMACS_INT |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25818
diff
changeset
|
39 #define EMACS_INT long |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25818
diff
changeset
|
40 #define BITS_PER_EMACS_INT BITS_PER_LONG |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25818
diff
changeset
|
41 #endif |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25818
diff
changeset
|
42 #ifndef EMACS_UINT |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25818
diff
changeset
|
43 #define EMACS_UINT unsigned long |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25818
diff
changeset
|
44 #endif |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25818
diff
changeset
|
45 #else /* not _LP64 */ |
8835
48bcdcb9d191
(EMACS_INT, EMACS_UINT): Define, if not already defined.
Richard M. Stallman <rms@gnu.org>
parents:
8827
diff
changeset
|
46 #ifndef EMACS_INT |
48bcdcb9d191
(EMACS_INT, EMACS_UINT): Define, if not already defined.
Richard M. Stallman <rms@gnu.org>
parents:
8827
diff
changeset
|
47 #define EMACS_INT int |
16133 | 48 #define BITS_PER_EMACS_INT BITS_PER_INT |
8835
48bcdcb9d191
(EMACS_INT, EMACS_UINT): Define, if not already defined.
Richard M. Stallman <rms@gnu.org>
parents:
8827
diff
changeset
|
49 #endif |
48bcdcb9d191
(EMACS_INT, EMACS_UINT): Define, if not already defined.
Richard M. Stallman <rms@gnu.org>
parents:
8827
diff
changeset
|
50 #ifndef EMACS_UINT |
48bcdcb9d191
(EMACS_INT, EMACS_UINT): Define, if not already defined.
Richard M. Stallman <rms@gnu.org>
parents:
8827
diff
changeset
|
51 #define EMACS_UINT unsigned int |
48bcdcb9d191
(EMACS_INT, EMACS_UINT): Define, if not already defined.
Richard M. Stallman <rms@gnu.org>
parents:
8827
diff
changeset
|
52 #endif |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25818
diff
changeset
|
53 #endif |
8835
48bcdcb9d191
(EMACS_INT, EMACS_UINT): Define, if not already defined.
Richard M. Stallman <rms@gnu.org>
parents:
8827
diff
changeset
|
54 |
28406
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28141
diff
changeset
|
55 /* Extra internal type checking? */ |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28141
diff
changeset
|
56 extern int suppress_checking; |
109099 | 57 extern void die (const char *, const char *, int) NO_RETURN; |
28430
f805ef5a2a03
* lisp.h (NO_UNION_TYPE) [ENABLE_CHECKING]: Undef.
Ken Raeburn <raeburn@raeburn.org>
parents:
28417
diff
changeset
|
58 |
28406
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28141
diff
changeset
|
59 #ifdef ENABLE_CHECKING |
28430
f805ef5a2a03
* lisp.h (NO_UNION_TYPE) [ENABLE_CHECKING]: Undef.
Ken Raeburn <raeburn@raeburn.org>
parents:
28417
diff
changeset
|
60 |
85764
e12efff1fa77
Comment the ENABLE_CHECKING version of the CHECK macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
85595
diff
changeset
|
61 /* The suppress_checking variable is initialized to 0 in alloc.c. Set |
e12efff1fa77
Comment the ENABLE_CHECKING version of the CHECK macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
85595
diff
changeset
|
62 it to 1 using a debugger to temporarily disable aborting on |
e12efff1fa77
Comment the ENABLE_CHECKING version of the CHECK macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
85595
diff
changeset
|
63 detected internal inconsistencies or error conditions. |
e12efff1fa77
Comment the ENABLE_CHECKING version of the CHECK macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
85595
diff
changeset
|
64 |
e12efff1fa77
Comment the ENABLE_CHECKING version of the CHECK macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
85595
diff
changeset
|
65 Testing suppress_checking after the supplied condition ensures that |
e12efff1fa77
Comment the ENABLE_CHECKING version of the CHECK macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
85595
diff
changeset
|
66 the side effects produced by CHECK will be consistent, independent |
e12efff1fa77
Comment the ENABLE_CHECKING version of the CHECK macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
85595
diff
changeset
|
67 of whether ENABLE_CHECKING is defined, or whether the checks are |
e12efff1fa77
Comment the ENABLE_CHECKING version of the CHECK macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
85595
diff
changeset
|
68 suppressed at run time. |
e12efff1fa77
Comment the ENABLE_CHECKING version of the CHECK macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
85595
diff
changeset
|
69 |
e12efff1fa77
Comment the ENABLE_CHECKING version of the CHECK macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
85595
diff
changeset
|
70 In some cases, a good compiler may be able to optimize away the |
e12efff1fa77
Comment the ENABLE_CHECKING version of the CHECK macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
85595
diff
changeset
|
71 CHECK macro altogether, e.g., if XSTRING (x) uses CHECK to test |
e12efff1fa77
Comment the ENABLE_CHECKING version of the CHECK macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
85595
diff
changeset
|
72 STRINGP (x), but a particular use of XSTRING is invoked only after |
e12efff1fa77
Comment the ENABLE_CHECKING version of the CHECK macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
85595
diff
changeset
|
73 testing that STRINGP (x) is true, making the test redundant. */ |
e12efff1fa77
Comment the ENABLE_CHECKING version of the CHECK macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
85595
diff
changeset
|
74 |
50761
3afa0d82e92e
(CHECK): Wrap args in parenthesis.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50748
diff
changeset
|
75 #define CHECK(check,msg) (((check) || suppress_checking \ |
30943
429bcc971263
(CHECK) [ENABLE_CHECKING]: Make both side of the
Gerd Moellmann <gerd@gnu.org>
parents:
30934
diff
changeset
|
76 ? (void) 0 \ |
50761
3afa0d82e92e
(CHECK): Wrap args in parenthesis.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50748
diff
changeset
|
77 : die ((msg), __FILE__, __LINE__)), \ |
28430
f805ef5a2a03
* lisp.h (NO_UNION_TYPE) [ENABLE_CHECKING]: Undef.
Ken Raeburn <raeburn@raeburn.org>
parents:
28417
diff
changeset
|
78 0) |
28406
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28141
diff
changeset
|
79 #else |
28430
f805ef5a2a03
* lisp.h (NO_UNION_TYPE) [ENABLE_CHECKING]: Undef.
Ken Raeburn <raeburn@raeburn.org>
parents:
28417
diff
changeset
|
80 |
28406
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28141
diff
changeset
|
81 /* Produce same side effects and result, but don't complain. */ |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28141
diff
changeset
|
82 #define CHECK(check,msg) ((check),0) |
28430
f805ef5a2a03
* lisp.h (NO_UNION_TYPE) [ENABLE_CHECKING]: Undef.
Ken Raeburn <raeburn@raeburn.org>
parents:
28417
diff
changeset
|
83 |
28406
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28141
diff
changeset
|
84 #endif |
28430
f805ef5a2a03
* lisp.h (NO_UNION_TYPE) [ENABLE_CHECKING]: Undef.
Ken Raeburn <raeburn@raeburn.org>
parents:
28417
diff
changeset
|
85 |
28406
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28141
diff
changeset
|
86 /* Define an Emacs version of "assert", since some system ones are |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28141
diff
changeset
|
87 flaky. */ |
29337
637117135842
(eassert) [!ENABLE_CHECKING]: Define as `(void) 0'.
Gerd Moellmann <gerd@gnu.org>
parents:
29276
diff
changeset
|
88 #ifndef ENABLE_CHECKING |
637117135842
(eassert) [!ENABLE_CHECKING]: Define as `(void) 0'.
Gerd Moellmann <gerd@gnu.org>
parents:
29276
diff
changeset
|
89 #define eassert(X) (void) 0 |
637117135842
(eassert) [!ENABLE_CHECKING]: Define as `(void) 0'.
Gerd Moellmann <gerd@gnu.org>
parents:
29276
diff
changeset
|
90 #else /* ENABLE_CHECKING */ |
28406
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28141
diff
changeset
|
91 #if defined (__GNUC__) && __GNUC__ >= 2 && defined (__STDC__) |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28141
diff
changeset
|
92 #define eassert(cond) CHECK(cond,"assertion failed: " #cond) |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28141
diff
changeset
|
93 #else |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28141
diff
changeset
|
94 #define eassert(cond) CHECK(cond,"assertion failed") |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28141
diff
changeset
|
95 #endif |
29337
637117135842
(eassert) [!ENABLE_CHECKING]: Define as `(void) 0'.
Gerd Moellmann <gerd@gnu.org>
parents:
29276
diff
changeset
|
96 #endif /* ENABLE_CHECKING */ |
84979
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
97 |
109098
a17732ef349e
Define USE_LISP_UNION_TYPE using autoconf.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
108946
diff
changeset
|
98 /* Use the configure flag --enable-use-lisp-union-type to make |
a17732ef349e
Define USE_LISP_UNION_TYPE using autoconf.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
108946
diff
changeset
|
99 Lisp_Object use a union type instead of the default int. The flag |
a17732ef349e
Define USE_LISP_UNION_TYPE using autoconf.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
108946
diff
changeset
|
100 causes USE_LISP_UNION_TYPE to be defined. */ |
97232 | 101 |
84979
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
102 /***** Select the tagging scheme. *****/ |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
103 /* There are basically two options that control the tagging scheme: |
97232 | 104 - USE_LISP_UNION_TYPE says that Lisp_Object should be a union instead |
105 of an integer. | |
84979
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
106 - USE_LSB_TAG means that we can assume the least 3 bits of pointers are |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
107 always 0, and we can thus use them to hold tag bits, without |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
108 restricting our addressing space. |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
109 |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
110 If USE_LSB_TAG is not set, then we use the top 3 bits for tagging, thus |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
111 restricting our possible address range. Currently USE_LSB_TAG is not |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
112 allowed together with a union. This is not due to any fundamental |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
113 technical (or political ;-) problem: nobody wrote the code to do it yet. |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
114 |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
115 USE_LSB_TAG not only requires the least 3 bits of pointers returned by |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
116 malloc to be 0 but also needs to be able to impose a mult-of-8 alignment |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
117 on the few static Lisp_Objects used: all the defsubr as well |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
118 as the two special buffers buffer_defaults and buffer_local_symbols. */ |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
119 |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
120 /* First, try and define DECL_ALIGN(type,var) which declares a static |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
121 variable VAR of type TYPE with the added requirement that it be |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
122 TYPEBITS-aligned. */ |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
123 #ifndef NO_DECL_ALIGN |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
124 # ifndef DECL_ALIGN |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
125 /* What compiler directive should we use for non-gcc compilers? -stef */ |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
126 # if defined (__GNUC__) |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
127 # define DECL_ALIGN(type, var) \ |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
128 type __attribute__ ((__aligned__ (1 << GCTYPEBITS))) var |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
129 # endif |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
130 # endif |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
131 #endif |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
132 |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
133 /* Let's USE_LSB_TAG on systems where we know malloc returns mult-of-8. */ |
97279
76ed169d532c
Dock menu customization, based on a patch by Ken Raeburn, plus some other fixes.
Adrian Robert <Adrian.B.Robert@gmail.com>
parents:
97267
diff
changeset
|
134 #if defined GNU_MALLOC || defined DOUG_LEA_MALLOC || defined __GLIBC__ || defined DARWIN_OS |
84979
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
135 /* We also need to be able to specify mult-of-8 alignment on static vars. */ |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
136 # if defined DECL_ALIGN |
105839
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
137 # define USE_LSB_TAG |
84979
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
138 # endif |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
139 #endif |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
140 |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
141 /* If we cannot use 8-byte alignment, make DECL_ALIGN a no-op. */ |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
142 #ifndef DECL_ALIGN |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
143 # ifdef USE_LSB_TAG |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
144 # error "USE_LSB_TAG used without defining DECL_ALIGN" |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
145 # endif |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
146 # define DECL_ALIGN(type, var) type var |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
147 #endif |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
148 |
28406
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28141
diff
changeset
|
149 |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
150 /* Define the fundamental Lisp data structures. */ |
302 | 151 |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
152 /* If USE_2_TAGBITS_FOR_INTS is defined, then Lisp integers use |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
153 2 tags, to give them one extra bit, thus extending their range from |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
154 e.g -2^28..2^28-1 to -2^29..2^29-1. */ |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
155 #define USE_2_TAGS_FOR_INTS |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
156 |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
157 /* Making it work for the union case is too much trouble. */ |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
158 #ifdef USE_LISP_UNION_TYPE |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
159 # undef USE_2_TAGS_FOR_INTS |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
160 #endif |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
161 |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
162 /* This is the set of Lisp data types. */ |
302 | 163 |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
164 #if !defined USE_2_TAGS_FOR_INTS |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
165 # define LISP_INT_TAG Lisp_Int |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
166 # define case_Lisp_Int case Lisp_Int |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
167 # define LISP_STRING_TAG 4 |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
168 # define LISP_INT_TAG_P(x) ((x) == Lisp_Int) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
169 #else |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
170 # define LISP_INT_TAG Lisp_Int0 |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
171 # define case_Lisp_Int case Lisp_Int0: case Lisp_Int1 |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
172 # ifdef USE_LSB_TAG |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
173 # define LISP_INT1_TAG 4 |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
174 # define LISP_STRING_TAG 1 |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
175 # define LISP_INT_TAG_P(x) (((x) & 3) == 0) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
176 # else |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
177 # define LISP_INT1_TAG 1 |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
178 # define LISP_STRING_TAG 4 |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
179 # define LISP_INT_TAG_P(x) (((x) & 6) == 0) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
180 # endif |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
181 #endif |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
182 |
302 | 183 enum Lisp_Type |
184 { | |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
185 /* Integer. XINT (obj) is the integer value. */ |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
186 #ifdef USE_2_TAGS_FOR_INTS |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
187 Lisp_Int0 = 0, |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
188 Lisp_Int1 = LISP_INT1_TAG, |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
189 #else |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
190 Lisp_Int = 0, |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
191 #endif |
302 | 192 |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
193 /* Symbol. XSYMBOL (object) points to a struct Lisp_Symbol. */ |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
194 Lisp_Symbol = 2, |
302 | 195 |
9435
3a157cdf395c
(Lisp_Misc): new type code, replacing Lisp_Marker (and soon to replace other
Karl Heuer <kwzh@gnu.org>
parents:
9392
diff
changeset
|
196 /* Miscellaneous. XMISC (object) points to a union Lisp_Misc, |
3a157cdf395c
(Lisp_Misc): new type code, replacing Lisp_Marker (and soon to replace other
Karl Heuer <kwzh@gnu.org>
parents:
9392
diff
changeset
|
197 whose first member indicates the subtype. */ |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
198 Lisp_Misc = 3, |
302 | 199 |
200 /* String. XSTRING (object) points to a struct Lisp_String. | |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
201 The length of the string, and its contents, are stored therein. */ |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
202 Lisp_String = LISP_STRING_TAG, |
302 | 203 |
10010
67375493afa2
(enum Lisp_Misc_Type): Rename Lisp_Vector to Lisp_Vectorlike. Mark
Karl Heuer <kwzh@gnu.org>
parents:
10003
diff
changeset
|
204 /* Vector of Lisp objects, or something resembling it. |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
205 XVECTOR (object) points to a struct Lisp_Vector, which contains |
10010
67375493afa2
(enum Lisp_Misc_Type): Rename Lisp_Vector to Lisp_Vectorlike. Mark
Karl Heuer <kwzh@gnu.org>
parents:
10003
diff
changeset
|
206 the size and contents. The size field also contains the type |
67375493afa2
(enum Lisp_Misc_Type): Rename Lisp_Vector to Lisp_Vectorlike. Mark
Karl Heuer <kwzh@gnu.org>
parents:
10003
diff
changeset
|
207 information, if it's not a real vector object. */ |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
208 Lisp_Vectorlike = 5, |
302 | 209 |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
210 /* Cons. XCONS (object) points to a struct Lisp_Cons. */ |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
211 Lisp_Cons = 6, |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
212 |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
213 Lisp_Float = 7, |
302 | 214 }; |
215 | |
39579
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
216 /* This is the set of data types that share a common structure. |
10396
47938020b39d
Use large constants for Lisp_Misc_Type.
Karl Heuer <kwzh@gnu.org>
parents:
10387
diff
changeset
|
217 The first member of the structure is a type code from this set. |
47938020b39d
Use large constants for Lisp_Misc_Type.
Karl Heuer <kwzh@gnu.org>
parents:
10387
diff
changeset
|
218 The enum values are arbitrary, but we'll use large numbers to make it |
47938020b39d
Use large constants for Lisp_Misc_Type.
Karl Heuer <kwzh@gnu.org>
parents:
10387
diff
changeset
|
219 more likely that we'll spot the error if a random word in memory is |
47938020b39d
Use large constants for Lisp_Misc_Type.
Karl Heuer <kwzh@gnu.org>
parents:
10387
diff
changeset
|
220 mistakenly interpreted as a Lisp_Misc. */ |
9392
32186e807f02
(enum Lisp_Misc_Type): New type.
Karl Heuer <kwzh@gnu.org>
parents:
9370
diff
changeset
|
221 enum Lisp_Misc_Type |
32186e807f02
(enum Lisp_Misc_Type): New type.
Karl Heuer <kwzh@gnu.org>
parents:
9370
diff
changeset
|
222 { |
10396
47938020b39d
Use large constants for Lisp_Misc_Type.
Karl Heuer <kwzh@gnu.org>
parents:
10387
diff
changeset
|
223 Lisp_Misc_Free = 0x5eab, |
9435
3a157cdf395c
(Lisp_Misc): new type code, replacing Lisp_Marker (and soon to replace other
Karl Heuer <kwzh@gnu.org>
parents:
9392
diff
changeset
|
224 Lisp_Misc_Marker, |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
225 Lisp_Misc_Overlay, |
49056
88f14a14e005
New misc type Lisp_Save_Value.
Richard M. Stallman <rms@gnu.org>
parents:
48540
diff
changeset
|
226 Lisp_Misc_Save_Value, |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
227 /* Currently floats are not a misc type, |
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
228 but let's define this in case we want to change that. */ |
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
229 Lisp_Misc_Float, |
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
230 /* This is not a type code. It is for range checking. */ |
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
231 Lisp_Misc_Limit |
9392
32186e807f02
(enum Lisp_Misc_Type): New type.
Karl Heuer <kwzh@gnu.org>
parents:
9370
diff
changeset
|
232 }; |
32186e807f02
(enum Lisp_Misc_Type): New type.
Karl Heuer <kwzh@gnu.org>
parents:
9370
diff
changeset
|
233 |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
234 /* These are the types of forwarding objects used in the value slot |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
235 of symbols for special built-in variables whose value is stored in |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
236 C variables. */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
237 enum Lisp_Fwd_Type |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
238 { |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
239 Lisp_Fwd_Int, /* Fwd to a C `int' variable. */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
240 Lisp_Fwd_Bool, /* Fwd to a C boolean var. */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
241 Lisp_Fwd_Obj, /* Fwd to a C Lisp_Object variable. */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
242 Lisp_Fwd_Buffer_Obj, /* Fwd to a Lisp_Object field of buffers. */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
243 Lisp_Fwd_Kboard_Obj, /* Fwd to a Lisp_Object field of kboards. */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
244 }; |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
245 |
51858
bf6232373c39
(VALBITS): Define in terms of GCTYPEBITS.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51833
diff
changeset
|
246 #ifndef GCTYPEBITS |
bf6232373c39
(VALBITS): Define in terms of GCTYPEBITS.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51833
diff
changeset
|
247 #define GCTYPEBITS 3 |
bf6232373c39
(VALBITS): Define in terms of GCTYPEBITS.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51833
diff
changeset
|
248 #endif |
bf6232373c39
(VALBITS): Define in terms of GCTYPEBITS.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51833
diff
changeset
|
249 |
10321
c91b1f4295a1
(enum Lisp_Type): Don't use trailing comma.
Karl Heuer <kwzh@gnu.org>
parents:
10316
diff
changeset
|
250 /* These values are overridden by the m- file on some machines. */ |
c91b1f4295a1
(enum Lisp_Type): Don't use trailing comma.
Karl Heuer <kwzh@gnu.org>
parents:
10316
diff
changeset
|
251 #ifndef VALBITS |
52476
1b64668b2442
(VALBITS): Don't remove 1 for the markbit.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
252 #define VALBITS (BITS_PER_EMACS_INT - GCTYPEBITS) |
10321
c91b1f4295a1
(enum Lisp_Type): Don't use trailing comma.
Karl Heuer <kwzh@gnu.org>
parents:
10316
diff
changeset
|
253 #endif |
c91b1f4295a1
(enum Lisp_Type): Don't use trailing comma.
Karl Heuer <kwzh@gnu.org>
parents:
10316
diff
changeset
|
254 |
97232 | 255 #ifdef USE_LISP_UNION_TYPE |
302 | 256 |
109732
470bed744331
Use autoconf determined WORDS_BIGENDIAN instead of hardcoded definition.
Andreas Schwab <schwab@linux-m68k.org>
parents:
109673
diff
changeset
|
257 #ifndef WORDS_BIGENDIAN |
302 | 258 |
259 /* Definition of Lisp_Object for little-endian machines. */ | |
260 | |
261 typedef | |
262 union Lisp_Object | |
263 { | |
264 /* Used for comparing two Lisp_Objects; | |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
265 also, positive integers can be accessed fast this way. */ |
84979
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
266 EMACS_UINT i; |
302 | 267 |
268 struct | |
269 { | |
31901
4e2853ad5d2d
(union Lisp_Object) [!NO_UNION_TYPE]: Use EMACS_INT and
Gerd Moellmann <gerd@gnu.org>
parents:
31833
diff
changeset
|
270 EMACS_INT val : VALBITS; |
54083
16821fe4a0bf
(union Lisp_Object): Give a more precise type for `type'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53884
diff
changeset
|
271 enum Lisp_Type type : GCTYPEBITS; |
302 | 272 } s; |
273 struct | |
274 { | |
31901
4e2853ad5d2d
(union Lisp_Object) [!NO_UNION_TYPE]: Use EMACS_INT and
Gerd Moellmann <gerd@gnu.org>
parents:
31833
diff
changeset
|
275 EMACS_UINT val : VALBITS; |
54083
16821fe4a0bf
(union Lisp_Object): Give a more precise type for `type'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53884
diff
changeset
|
276 enum Lisp_Type type : GCTYPEBITS; |
302 | 277 } u; |
278 } | |
279 Lisp_Object; | |
280 | |
109732
470bed744331
Use autoconf determined WORDS_BIGENDIAN instead of hardcoded definition.
Andreas Schwab <schwab@linux-m68k.org>
parents:
109673
diff
changeset
|
281 #else /* If WORDS_BIGENDIAN */ |
302 | 282 |
283 typedef | |
284 union Lisp_Object | |
285 { | |
286 /* Used for comparing two Lisp_Objects; | |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
287 also, positive integers can be accessed fast this way. */ |
84979
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
288 EMACS_UINT i; |
302 | 289 |
290 struct | |
291 { | |
54083
16821fe4a0bf
(union Lisp_Object): Give a more precise type for `type'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53884
diff
changeset
|
292 enum Lisp_Type type : GCTYPEBITS; |
31901
4e2853ad5d2d
(union Lisp_Object) [!NO_UNION_TYPE]: Use EMACS_INT and
Gerd Moellmann <gerd@gnu.org>
parents:
31833
diff
changeset
|
293 EMACS_INT val : VALBITS; |
302 | 294 } s; |
295 struct | |
296 { | |
54083
16821fe4a0bf
(union Lisp_Object): Give a more precise type for `type'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53884
diff
changeset
|
297 enum Lisp_Type type : GCTYPEBITS; |
31901
4e2853ad5d2d
(union Lisp_Object) [!NO_UNION_TYPE]: Use EMACS_INT and
Gerd Moellmann <gerd@gnu.org>
parents:
31833
diff
changeset
|
298 EMACS_UINT val : VALBITS; |
302 | 299 } u; |
300 } | |
301 Lisp_Object; | |
302 | |
109732
470bed744331
Use autoconf determined WORDS_BIGENDIAN instead of hardcoded definition.
Andreas Schwab <schwab@linux-m68k.org>
parents:
109673
diff
changeset
|
303 #endif /* WORDS_BIGENDIAN */ |
302 | 304 |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
305 #ifdef __GNUC__ |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
306 static __inline__ Lisp_Object |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
307 LISP_MAKE_RVALUE (Lisp_Object o) |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
308 { |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
309 return o; |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
310 } |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
311 #else |
108604
3b0bab58a95f
* lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (bug#5916)
Ken Raeburn <raeburn@raeburn.org>
parents:
108375
diff
changeset
|
312 /* This is more portable to pre-C99 non-GCC compilers, but for |
3b0bab58a95f
* lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (bug#5916)
Ken Raeburn <raeburn@raeburn.org>
parents:
108375
diff
changeset
|
313 backwards compatibility GCC still accepts an old GNU extension |
3b0bab58a95f
* lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (bug#5916)
Ken Raeburn <raeburn@raeburn.org>
parents:
108375
diff
changeset
|
314 which caused this to only generate a warning. */ |
3b0bab58a95f
* lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (bug#5916)
Ken Raeburn <raeburn@raeburn.org>
parents:
108375
diff
changeset
|
315 #define LISP_MAKE_RVALUE(o) (0 ? (o) : (o)) |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
316 #endif |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
317 |
97232 | 318 #else /* USE_LISP_UNION_TYPE */ |
302 | 319 |
18115
06ce39d8e93e
(VALMASK, GCTYPEMASK, MARKBIT, ARRAY_MARK_FLAG)
Richard M. Stallman <rms@gnu.org>
parents:
18111
diff
changeset
|
320 /* If union type is not wanted, define Lisp_Object as just a number. */ |
302 | 321 |
67029
911421314d0e
Use typedef when Lisp_Object is EMACS_INT so that
Nick Roberts <nickrob@snap.net.nz>
parents:
66888
diff
changeset
|
322 typedef EMACS_INT Lisp_Object; |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
323 #define LISP_MAKE_RVALUE(o) (0+(o)) |
97232 | 324 #endif /* USE_LISP_UNION_TYPE */ |
6216
9f7708f75f17
(ARRAY_MARK_FLAG): Define here.
Richard M. Stallman <rms@gnu.org>
parents:
6131
diff
changeset
|
325 |
51685
5c80476f5ff2
(MARKBIT): Update comment.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51666
diff
changeset
|
326 /* In the size word of a vector, this bit means the vector has been marked. */ |
6216
9f7708f75f17
(ARRAY_MARK_FLAG): Define here.
Richard M. Stallman <rms@gnu.org>
parents:
6131
diff
changeset
|
327 |
85022
96eb42c9e0e3
* window.h (struct window):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85021
diff
changeset
|
328 #define ARRAY_MARK_FLAG ((EMACS_UINT) 1 << (BITS_PER_EMACS_INT - 1)) |
6216
9f7708f75f17
(ARRAY_MARK_FLAG): Define here.
Richard M. Stallman <rms@gnu.org>
parents:
6131
diff
changeset
|
329 |
10010
67375493afa2
(enum Lisp_Misc_Type): Rename Lisp_Vector to Lisp_Vectorlike. Mark
Karl Heuer <kwzh@gnu.org>
parents:
10003
diff
changeset
|
330 /* In the size word of a struct Lisp_Vector, this bit means it's really |
67375493afa2
(enum Lisp_Misc_Type): Rename Lisp_Vector to Lisp_Vectorlike. Mark
Karl Heuer <kwzh@gnu.org>
parents:
10003
diff
changeset
|
331 some other vector-like object. */ |
85022
96eb42c9e0e3
* window.h (struct window):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85021
diff
changeset
|
332 #define PSEUDOVECTOR_FLAG ((ARRAY_MARK_FLAG >> 1)) |
10010
67375493afa2
(enum Lisp_Misc_Type): Rename Lisp_Vector to Lisp_Vectorlike. Mark
Karl Heuer <kwzh@gnu.org>
parents:
10003
diff
changeset
|
333 |
10322
c1c2ec3aeefa
Use consistent spelling in comments.
Karl Heuer <kwzh@gnu.org>
parents:
10321
diff
changeset
|
334 /* In a pseudovector, the size field actually contains a word with one |
10010
67375493afa2
(enum Lisp_Misc_Type): Rename Lisp_Vector to Lisp_Vectorlike. Mark
Karl Heuer <kwzh@gnu.org>
parents:
10003
diff
changeset
|
335 PSEUDOVECTOR_FLAG bit set, and exactly one of the following bits to |
84689
73c717fa7866
(enum pvec_type): New `terminal' pseudovector.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84434
diff
changeset
|
336 indicate the actual type. |
85012
3a31b2cfe77f
(ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't allow definition in m/*.h files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85011
diff
changeset
|
337 We use a bitset, even tho only one of the bits can be set at any |
3a31b2cfe77f
(ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't allow definition in m/*.h files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85011
diff
changeset
|
338 particular time just so as to be able to use micro-optimizations such as |
3a31b2cfe77f
(ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't allow definition in m/*.h files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85011
diff
changeset
|
339 testing membership of a particular subset of pseudovectors in Fequal. |
3a31b2cfe77f
(ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't allow definition in m/*.h files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85011
diff
changeset
|
340 It is not crucial, but there are plenty of bits here, so why not do it? */ |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
341 enum pvec_type |
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
342 { |
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
343 PVEC_NORMAL_VECTOR = 0, |
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
344 PVEC_PROCESS = 0x200, |
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
345 PVEC_FRAME = 0x400, |
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
346 PVEC_COMPILED = 0x800, |
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
347 PVEC_WINDOW = 0x1000, |
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
348 PVEC_WINDOW_CONFIGURATION = 0x2000, |
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
349 PVEC_SUBR = 0x4000, |
13149
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
350 PVEC_CHAR_TABLE = 0x8000, |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
351 PVEC_BOOL_VECTOR = 0x10000, |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
352 PVEC_BUFFER = 0x20000, |
25017
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
353 PVEC_HASH_TABLE = 0x40000, |
84689
73c717fa7866
(enum pvec_type): New `terminal' pseudovector.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84434
diff
changeset
|
354 PVEC_TERMINAL = 0x80000, |
91041 | 355 PVEC_SUB_CHAR_TABLE = 0x100000, |
94935
45602a11979b
(enum pvec_type): New member PREV_FONT.
Kenichi Handa <handa@m17n.org>
parents:
94121
diff
changeset
|
356 PVEC_FONT = 0x200000, |
45602a11979b
(enum pvec_type): New member PREV_FONT.
Kenichi Handa <handa@m17n.org>
parents:
94121
diff
changeset
|
357 PVEC_OTHER = 0x400000, |
45602a11979b
(enum pvec_type): New member PREV_FONT.
Kenichi Handa <handa@m17n.org>
parents:
94121
diff
changeset
|
358 PVEC_TYPE_MASK = 0x7ffe00 |
45623
0e92d219e195
(current_column): Now returns float.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
45545
diff
changeset
|
359 |
26569
d5f7eaff00db
Fix typo in previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26566
diff
changeset
|
360 #if 0 /* This is used to make the value of PSEUDOVECTOR_FLAG available to |
d5f7eaff00db
Fix typo in previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26566
diff
changeset
|
361 GDB. It doesn't work on OS Alpha. Moved to a variable in |
d5f7eaff00db
Fix typo in previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26566
diff
changeset
|
362 emacs.c. */ |
12246
4de2d34c04d3
(enum pvec_type): Don't use trailing comma.
Karl Heuer <kwzh@gnu.org>
parents:
12114
diff
changeset
|
363 PVEC_FLAG = PSEUDOVECTOR_FLAG |
26569
d5f7eaff00db
Fix typo in previous change.
Gerd Moellmann <gerd@gnu.org>
parents:
26566
diff
changeset
|
364 #endif |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
365 }; |
10010
67375493afa2
(enum Lisp_Misc_Type): Rename Lisp_Vector to Lisp_Vectorlike. Mark
Karl Heuer <kwzh@gnu.org>
parents:
10003
diff
changeset
|
366 |
69871
8a7ecbca8672
(PSEUDOVECTOR_SIZE_MASK): Expand docstring.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69869
diff
changeset
|
367 /* For convenience, we also store the number of elements in these bits. |
8a7ecbca8672
(PSEUDOVECTOR_SIZE_MASK): Expand docstring.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69869
diff
changeset
|
368 Note that this size is not necessarily the memory-footprint size, but |
8a7ecbca8672
(PSEUDOVECTOR_SIZE_MASK): Expand docstring.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69869
diff
changeset
|
369 only the number of Lisp_Object fields (that need to be traced by the GC). |
8a7ecbca8672
(PSEUDOVECTOR_SIZE_MASK): Expand docstring.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69869
diff
changeset
|
370 The distinction is used e.g. by Lisp_Process which places extra |
8a7ecbca8672
(PSEUDOVECTOR_SIZE_MASK): Expand docstring.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69869
diff
changeset
|
371 non-Lisp_Object fields at the end of the structure. */ |
13149
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
372 #define PSEUDOVECTOR_SIZE_MASK 0x1ff |
55157
2a1571603eac
(BOOL_VECTOR_BITS_PER_CHAR): Define.
Andreas Schwab <schwab@suse.de>
parents:
55142
diff
changeset
|
373 |
2a1571603eac
(BOOL_VECTOR_BITS_PER_CHAR): Define.
Andreas Schwab <schwab@suse.de>
parents:
55142
diff
changeset
|
374 /* Number of bits to put in each character in the internal representation |
2a1571603eac
(BOOL_VECTOR_BITS_PER_CHAR): Define.
Andreas Schwab <schwab@suse.de>
parents:
55142
diff
changeset
|
375 of bool vectors. This should not vary across implementations. */ |
2a1571603eac
(BOOL_VECTOR_BITS_PER_CHAR): Define.
Andreas Schwab <schwab@suse.de>
parents:
55142
diff
changeset
|
376 #define BOOL_VECTOR_BITS_PER_CHAR 8 |
302 | 377 |
378 /* These macros extract various sorts of values from a Lisp_Object. | |
379 For example, if tem is a Lisp_Object whose type is Lisp_Cons, | |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
380 XCONS (tem) is the struct Lisp_Cons * pointing to the memory for that cons. */ |
302 | 381 |
97232 | 382 #ifndef USE_LISP_UNION_TYPE |
302 | 383 |
84979
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
384 /* Return a perfect hash of the Lisp_Object representation. */ |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
385 #define XHASH(a) (a) |
302 | 386 |
53654
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
387 #ifdef USE_LSB_TAG |
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
388 |
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
389 #define TYPEMASK ((((EMACS_INT) 1) << GCTYPEBITS) - 1) |
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
390 #define XTYPE(a) ((enum Lisp_Type) (((EMACS_UINT) (a)) & TYPEMASK)) |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
391 #ifdef USE_2_TAGS_FOR_INTS |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
392 # define XINT(a) (((EMACS_INT) (a)) >> (GCTYPEBITS - 1)) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
393 # define XUINT(a) (((EMACS_UINT) (a)) >> (GCTYPEBITS - 1)) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
394 # define make_number(N) (((EMACS_INT) (N)) << (GCTYPEBITS - 1)) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
395 #else |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
396 # define XINT(a) (((EMACS_INT) (a)) >> GCTYPEBITS) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
397 # define XUINT(a) (((EMACS_UINT) (a)) >> GCTYPEBITS) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
398 # define make_number(N) (((EMACS_INT) (N)) << GCTYPEBITS) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
399 #endif |
53654
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
400 #define XSET(var, type, ptr) \ |
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
401 (eassert (XTYPE (ptr) == 0), /* Check alignment. */ \ |
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
402 (var) = ((EMACS_INT) (type)) | ((EMACS_INT) (ptr))) |
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
403 |
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
404 #define XPNTR(a) ((EMACS_INT) ((a) & ~TYPEMASK)) |
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
405 |
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
406 #else /* not USE_LSB_TAG */ |
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
407 |
53088
63a8b584e971
(VALMASK): Only define for non-union type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53001
diff
changeset
|
408 #define VALMASK ((((EMACS_INT) 1) << VALBITS) - 1) |
63a8b584e971
(VALMASK): Only define for non-union type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53001
diff
changeset
|
409 |
302 | 410 /* One need to override this if there must be high bits set in data space |
411 (doing the result of the below & ((1 << (GCTYPE + 1)) - 1) would work | |
39579
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
412 on all machines, but would penalize machines which don't need it) |
302 | 413 */ |
52476
1b64668b2442
(VALBITS): Don't remove 1 for the markbit.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
414 #define XTYPE(a) ((enum Lisp_Type) (((EMACS_UINT) (a)) >> VALBITS)) |
302 | 415 |
9292 | 416 /* For integers known to be positive, XFASTINT provides fast retrieval |
417 and XSETFASTINT provides fast storage. This takes advantage of the | |
53088
63a8b584e971
(VALMASK): Only define for non-union type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53001
diff
changeset
|
418 fact that Lisp_Int is 0. */ |
9328
4db4768d5857
(XFASTINT): Changed to non-lvalue syntax, to ensure that callers will use
Karl Heuer <kwzh@gnu.org>
parents:
9292
diff
changeset
|
419 #define XFASTINT(a) ((a) + 0) |
9292 | 420 #define XSETFASTINT(a, b) ((a) = (b)) |
302 | 421 |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
422 /* Extract the value of a Lisp_Object as a (un)signed integer. */ |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
423 |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
424 #ifdef USE_2_TAGS_FOR_INTS |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
425 # define XINT(a) ((((EMACS_INT) (a)) << (GCTYPEBITS - 1)) >> (GCTYPEBITS - 1)) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
426 # define XUINT(a) ((EMACS_UINT) ((a) & (1 + (VALMASK << 1)))) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
427 # define make_number(N) ((((EMACS_INT) (N)) & (1 + (VALMASK << 1)))) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
428 #else |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
429 # define XINT(a) ((((EMACS_INT) (a)) << (BITS_PER_EMACS_INT - VALBITS)) \ |
52998
3d26cfe32fa7
(XINT): Move the cast to clarify what is going on.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52476
diff
changeset
|
430 >> (BITS_PER_EMACS_INT - VALBITS)) |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
431 # define XUINT(a) ((EMACS_UINT) ((a) & VALMASK)) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
432 # define make_number(N) \ |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
433 ((((EMACS_INT) (N)) & VALMASK) | ((EMACS_INT) Lisp_Int) << VALBITS) |
302 | 434 #endif |
435 | |
436 #define XSET(var, type, ptr) \ | |
8827
97bf951c0b98
(Lisp_Object): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
8631
diff
changeset
|
437 ((var) = ((EMACS_INT)(type) << VALBITS) + ((EMACS_INT) (ptr) & VALMASK)) |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
438 |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
439 #define XPNTR(a) ((EMACS_UINT) ((a) & VALMASK)) |
14306
b30429f0b599
(XCAR, XCDR, CAR, CDR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
440 |
53654
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
441 #endif /* not USE_LSB_TAG */ |
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
442 |
97232 | 443 #else /* USE_LISP_UNION_TYPE */ |
302 | 444 |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
445 #ifdef USE_2_TAGS_FOR_INTS |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
446 # error "USE_2_TAGS_FOR_INTS is not supported with USE_LISP_UNION_TYPE" |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
447 #endif |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
448 |
84979
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
449 #define XHASH(a) ((a).i) |
302 | 450 |
451 #define XTYPE(a) ((enum Lisp_Type) (a).u.type) | |
452 | |
453 #ifdef EXPLICIT_SIGN_EXTEND | |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
454 /* Make sure we sign-extend; compilers have been known to fail to do so. |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
455 We additionally cast to EMACS_INT since it seems that some compilers |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
456 have been known to fail to do so, even though the bitfield is declared |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
457 as EMACS_INT already. */ |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
458 #define XINT(a) ((((EMACS_INT) (a).s.val) << (BITS_PER_EMACS_INT - VALBITS)) \ |
31907
b786c3535d32
(XINT) [EXPLICIT_SIGN_EXTEND]: Use BITS_PER_EMACS_INT
Gerd Moellmann <gerd@gnu.org>
parents:
31901
diff
changeset
|
459 >> (BITS_PER_EMACS_INT - VALBITS)) |
302 | 460 #else |
461 #define XINT(a) ((a).s.val) | |
462 #endif /* EXPLICIT_SIGN_EXTEND */ | |
463 | |
464 #define XUINT(a) ((a).u.val) | |
465 | |
105839
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
466 #ifdef USE_LSB_TAG |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
467 |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
468 # define XSET(var, vartype, ptr) \ |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
469 (eassert ((((EMACS_UINT) (ptr)) & ((1 << GCTYPEBITS) - 1)) == 0), \ |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
470 (var).u.val = ((EMACS_UINT) (ptr)) >> GCTYPEBITS, \ |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
471 (var).u.type = ((char) (vartype))) |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
472 |
105840
0d3a156a5458
(XPNTR) [USE_LSB_TAG && USE_LISP_UNION_TYPE]: silence compiler.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105839
diff
changeset
|
473 /* Some versions of gcc seem to consider the bitfield width when issuing |
0d3a156a5458
(XPNTR) [USE_LSB_TAG && USE_LISP_UNION_TYPE]: silence compiler.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105839
diff
changeset
|
474 the "cast to pointer from integer of different size" warning, so the |
0d3a156a5458
(XPNTR) [USE_LSB_TAG && USE_LISP_UNION_TYPE]: silence compiler.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105839
diff
changeset
|
475 cast is here to widen the value back to its natural size. */ |
0d3a156a5458
(XPNTR) [USE_LSB_TAG && USE_LISP_UNION_TYPE]: silence compiler.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105839
diff
changeset
|
476 # define XPNTR(v) ((EMACS_INT)((v).s.val) << GCTYPEBITS) |
105839
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
477 |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
478 #else /* !USE_LSB_TAG */ |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
479 |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
480 /* For integers known to be positive, XFASTINT provides fast retrieval |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
481 and XSETFASTINT provides fast storage. This takes advantage of the |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
482 fact that Lisp_Int is 0. */ |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
483 # define XFASTINT(a) ((a).i + 0) |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
484 # define XSETFASTINT(a, b) ((a).i = (b)) |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
485 |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
486 # define XSET(var, vartype, ptr) \ |
31901
4e2853ad5d2d
(union Lisp_Object) [!NO_UNION_TYPE]: Use EMACS_INT and
Gerd Moellmann <gerd@gnu.org>
parents:
31833
diff
changeset
|
487 (((var).s.val = ((EMACS_INT) (ptr))), ((var).s.type = ((char) (vartype)))) |
28508
a68042252425
* lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 && __OPTIMIZE__]:
Ken Raeburn <raeburn@raeburn.org>
parents:
28480
diff
changeset
|
488 |
105839
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
489 #endif /* !USE_LSB_TAG */ |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
490 |
28508
a68042252425
* lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 && __OPTIMIZE__]:
Ken Raeburn <raeburn@raeburn.org>
parents:
28480
diff
changeset
|
491 #if __GNUC__ >= 2 && defined (__OPTIMIZE__) |
a68042252425
* lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 && __OPTIMIZE__]:
Ken Raeburn <raeburn@raeburn.org>
parents:
28480
diff
changeset
|
492 #define make_number(N) \ |
a68042252425
* lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 && __OPTIMIZE__]:
Ken Raeburn <raeburn@raeburn.org>
parents:
28480
diff
changeset
|
493 (__extension__ ({ Lisp_Object _l; _l.s.val = (N); _l.s.type = Lisp_Int; _l; })) |
a68042252425
* lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 && __OPTIMIZE__]:
Ken Raeburn <raeburn@raeburn.org>
parents:
28480
diff
changeset
|
494 #else |
109099 | 495 extern Lisp_Object make_number (EMACS_INT); |
28508
a68042252425
* lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 && __OPTIMIZE__]:
Ken Raeburn <raeburn@raeburn.org>
parents:
28480
diff
changeset
|
496 #endif |
17404
73012b195cf3
(DOWNCASE): Return int, not Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
17326
diff
changeset
|
497 |
97232 | 498 #endif /* USE_LISP_UNION_TYPE */ |
53000
8e568e954adf
(GCTYPEMASK): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52998
diff
changeset
|
499 |
105839
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
500 /* For integers known to be positive, XFASTINT sometimes provides |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
501 faster retrieval and XSETFASTINT provides faster storage. |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
502 If not, fallback on the non-accelerated path. */ |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
503 #ifndef XFASTINT |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
504 # define XFASTINT(a) (XINT (a)) |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
505 # define XSETFASTINT(a, b) (XSETINT (a, b)) |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
506 #endif |
e0a471c09d45
Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105747
diff
changeset
|
507 |
84979
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
508 #define EQ(x, y) (XHASH (x) == XHASH (y)) |
302 | 509 |
46650
445d27e93380
(XPNTR): Use NO_UNION_TYPE version for union as well,
Ken Raeburn <raeburn@raeburn.org>
parents:
46573
diff
changeset
|
510 #ifndef XPNTR |
445d27e93380
(XPNTR): Use NO_UNION_TYPE version for union as well,
Ken Raeburn <raeburn@raeburn.org>
parents:
46573
diff
changeset
|
511 #ifdef DATA_SEG_BITS |
445d27e93380
(XPNTR): Use NO_UNION_TYPE version for union as well,
Ken Raeburn <raeburn@raeburn.org>
parents:
46573
diff
changeset
|
512 /* This case is used for the rt-pc. |
445d27e93380
(XPNTR): Use NO_UNION_TYPE version for union as well,
Ken Raeburn <raeburn@raeburn.org>
parents:
46573
diff
changeset
|
513 In the diffs I was given, it checked for ptr = 0 |
445d27e93380
(XPNTR): Use NO_UNION_TYPE version for union as well,
Ken Raeburn <raeburn@raeburn.org>
parents:
46573
diff
changeset
|
514 and did not adjust it in that case. |
445d27e93380
(XPNTR): Use NO_UNION_TYPE version for union as well,
Ken Raeburn <raeburn@raeburn.org>
parents:
46573
diff
changeset
|
515 But I don't think that zero should ever be found |
445d27e93380
(XPNTR): Use NO_UNION_TYPE version for union as well,
Ken Raeburn <raeburn@raeburn.org>
parents:
46573
diff
changeset
|
516 in a Lisp object whose data type says it points to something. */ |
445d27e93380
(XPNTR): Use NO_UNION_TYPE version for union as well,
Ken Raeburn <raeburn@raeburn.org>
parents:
46573
diff
changeset
|
517 #define XPNTR(a) (XUINT (a) | DATA_SEG_BITS) |
445d27e93380
(XPNTR): Use NO_UNION_TYPE version for union as well,
Ken Raeburn <raeburn@raeburn.org>
parents:
46573
diff
changeset
|
518 #else |
68628
6c6e4e3cccc8
(XPNTR) [!NO_UNION_TYPE && !HAVE_SHM && !DATA_SEG_BITS]: Cast bitfield
Ken Raeburn <raeburn@raeburn.org>
parents:
67506
diff
changeset
|
519 /* Some versions of gcc seem to consider the bitfield width when |
6c6e4e3cccc8
(XPNTR) [!NO_UNION_TYPE && !HAVE_SHM && !DATA_SEG_BITS]: Cast bitfield
Ken Raeburn <raeburn@raeburn.org>
parents:
67506
diff
changeset
|
520 issuing the "cast to pointer from integer of different size" |
6c6e4e3cccc8
(XPNTR) [!NO_UNION_TYPE && !HAVE_SHM && !DATA_SEG_BITS]: Cast bitfield
Ken Raeburn <raeburn@raeburn.org>
parents:
67506
diff
changeset
|
521 warning, so the cast is here to widen the value back to its natural |
6c6e4e3cccc8
(XPNTR) [!NO_UNION_TYPE && !HAVE_SHM && !DATA_SEG_BITS]: Cast bitfield
Ken Raeburn <raeburn@raeburn.org>
parents:
67506
diff
changeset
|
522 size. */ |
6c6e4e3cccc8
(XPNTR) [!NO_UNION_TYPE && !HAVE_SHM && !DATA_SEG_BITS]: Cast bitfield
Ken Raeburn <raeburn@raeburn.org>
parents:
67506
diff
changeset
|
523 #define XPNTR(a) ((EMACS_INT) XUINT (a)) |
46650
445d27e93380
(XPNTR): Use NO_UNION_TYPE version for union as well,
Ken Raeburn <raeburn@raeburn.org>
parents:
46573
diff
changeset
|
524 #endif |
445d27e93380
(XPNTR): Use NO_UNION_TYPE version for union as well,
Ken Raeburn <raeburn@raeburn.org>
parents:
46573
diff
changeset
|
525 #endif /* no XPNTR */ |
445d27e93380
(XPNTR): Use NO_UNION_TYPE version for union as well,
Ken Raeburn <raeburn@raeburn.org>
parents:
46573
diff
changeset
|
526 |
39640 | 527 /* Largest and smallest representable fixnum values. These are the C |
528 values. */ | |
529 | |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
530 #ifdef USE_2_TAGS_FOR_INTS |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
531 # define MOST_NEGATIVE_FIXNUM - ((EMACS_INT) 1 << VALBITS) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
532 # define MOST_POSITIVE_FIXNUM (((EMACS_INT) 1 << VALBITS) - 1) |
53088
63a8b584e971
(VALMASK): Only define for non-union type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53001
diff
changeset
|
533 /* Mask indicating the significant bits of a Lisp_Int. |
63a8b584e971
(VALMASK): Only define for non-union type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53001
diff
changeset
|
534 I.e. (x & INTMASK) == XUINT (make_number (x)). */ |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
535 # define INTMASK ((((EMACS_INT) 1) << (VALBITS + 1)) - 1) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
536 #else |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
537 # define MOST_NEGATIVE_FIXNUM - ((EMACS_INT) 1 << (VALBITS - 1)) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
538 # define MOST_POSITIVE_FIXNUM (((EMACS_INT) 1 << (VALBITS - 1)) - 1) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
539 /* Mask indicating the significant bits of a Lisp_Int. |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
540 I.e. (x & INTMASK) == XUINT (make_number (x)). */ |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
541 # define INTMASK ((((EMACS_INT) 1) << VALBITS) - 1) |
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
542 #endif |
39631
3d61dd23854a
(MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM)
Gerd Moellmann <gerd@gnu.org>
parents:
39579
diff
changeset
|
543 |
105747
35e7b757c606
(FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
Andreas Schwab <schwab@linux-m68k.org>
parents:
105732
diff
changeset
|
544 /* Value is non-zero if I doesn't fit into a Lisp fixnum. It is |
35e7b757c606
(FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
Andreas Schwab <schwab@linux-m68k.org>
parents:
105732
diff
changeset
|
545 written this way so that it also works if I is of unsigned |
35e7b757c606
(FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
Andreas Schwab <schwab@linux-m68k.org>
parents:
105732
diff
changeset
|
546 type. */ |
39631
3d61dd23854a
(MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM)
Gerd Moellmann <gerd@gnu.org>
parents:
39579
diff
changeset
|
547 |
3d61dd23854a
(MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM)
Gerd Moellmann <gerd@gnu.org>
parents:
39579
diff
changeset
|
548 #define FIXNUM_OVERFLOW_P(i) \ |
105732
39a36d9d9d93
(FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
Andreas Schwab <schwab@linux-m68k.org>
parents:
105726
diff
changeset
|
549 ((i) > MOST_POSITIVE_FIXNUM \ |
105747
35e7b757c606
(FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
Andreas Schwab <schwab@linux-m68k.org>
parents:
105732
diff
changeset
|
550 || ((i) < 0 && (i) < MOST_NEGATIVE_FIXNUM)) |
39631
3d61dd23854a
(MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM)
Gerd Moellmann <gerd@gnu.org>
parents:
39579
diff
changeset
|
551 |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
552 /* Extract a value or address from a Lisp_Object. */ |
302 | 553 |
90971
2acda4a4ac92
(XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
90918
diff
changeset
|
554 #define XCONS(a) (eassert (CONSP(a)),(struct Lisp_Cons *) XPNTR(a)) |
2acda4a4ac92
(XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
90918
diff
changeset
|
555 #define XVECTOR(a) (eassert (VECTORLIKEP(a)),(struct Lisp_Vector *) XPNTR(a)) |
2acda4a4ac92
(XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
90918
diff
changeset
|
556 #define XSTRING(a) (eassert (STRINGP(a)),(struct Lisp_String *) XPNTR(a)) |
2acda4a4ac92
(XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
90918
diff
changeset
|
557 #define XSYMBOL(a) (eassert (SYMBOLP(a)),(struct Lisp_Symbol *) XPNTR(a)) |
2acda4a4ac92
(XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
90918
diff
changeset
|
558 #define XFLOAT(a) (eassert (FLOATP(a)),(struct Lisp_Float *) XPNTR(a)) |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
559 |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
560 /* Misc types. */ |
30173
420acffb79c2
(AREF, ASET, ASIZE): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
30081
diff
changeset
|
561 |
9435
3a157cdf395c
(Lisp_Misc): new type code, replacing Lisp_Marker (and soon to replace other
Karl Heuer <kwzh@gnu.org>
parents:
9392
diff
changeset
|
562 #define XMISC(a) ((union Lisp_Misc *) XPNTR(a)) |
85345
35d2f0abc597
(XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY, XBUFFER_OBJFWD)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85328
diff
changeset
|
563 #define XMISCANY(a) (eassert (MISCP (a)), &(XMISC(a)->u_any)) |
85328
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85250
diff
changeset
|
564 #define XMISCTYPE(a) (XMISCANY (a)->type) |
85345
35d2f0abc597
(XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY, XBUFFER_OBJFWD)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85328
diff
changeset
|
565 #define XMARKER(a) (eassert (MARKERP (a)), &(XMISC(a)->u_marker)) |
35d2f0abc597
(XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY, XBUFFER_OBJFWD)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85328
diff
changeset
|
566 #define XOVERLAY(a) (eassert (OVERLAYP (a)), &(XMISC(a)->u_overlay)) |
35d2f0abc597
(XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY, XBUFFER_OBJFWD)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85328
diff
changeset
|
567 #define XSAVE_VALUE(a) (eassert (SAVE_VALUEP (a)), &(XMISC(a)->u_save_value)) |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
568 |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
569 /* Forwarding object types. */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
570 |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
571 #define XFWDTYPE(a) (a->u_intfwd.type) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
572 #define XINTFWD(a) (eassert (INTFWDP (a)), &((a)->u_intfwd)) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
573 #define XBOOLFWD(a) (eassert (BOOLFWDP (a)), &((a)->u_boolfwd)) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
574 #define XOBJFWD(a) (eassert (OBJFWDP (a)), &((a)->u_objfwd)) |
85345
35d2f0abc597
(XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY, XBUFFER_OBJFWD)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85328
diff
changeset
|
575 #define XBUFFER_OBJFWD(a) \ |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
576 (eassert (BUFFER_OBJFWDP (a)), &((a)->u_buffer_objfwd)) |
85345
35d2f0abc597
(XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY, XBUFFER_OBJFWD)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85328
diff
changeset
|
577 #define XKBOARD_OBJFWD(a) \ |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
578 (eassert (KBOARD_OBJFWDP (a)), &((a)->u_kboard_objfwd)) |
302 | 579 |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
580 /* Pseudovector types. */ |
30173
420acffb79c2
(AREF, ASET, ASIZE): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
30081
diff
changeset
|
581 |
90971
2acda4a4ac92
(XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
90918
diff
changeset
|
582 #define XPROCESS(a) (eassert (PROCESSP(a)),(struct Lisp_Process *) XPNTR(a)) |
2acda4a4ac92
(XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
90918
diff
changeset
|
583 #define XWINDOW(a) (eassert (WINDOWP(a)),(struct window *) XPNTR(a)) |
91041 | 584 #define XTERMINAL(a) (eassert (TERMINALP(a)),(struct terminal *) XPNTR(a)) |
90971
2acda4a4ac92
(XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
90918
diff
changeset
|
585 #define XSUBR(a) (eassert (SUBRP(a)),(struct Lisp_Subr *) XPNTR(a)) |
2acda4a4ac92
(XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
90918
diff
changeset
|
586 #define XBUFFER(a) (eassert (BUFFERP(a)),(struct buffer *) XPNTR(a)) |
91041 | 587 #define XCHAR_TABLE(a) (eassert (CHAR_TABLE_P (a)), (struct Lisp_Char_Table *) XPNTR(a)) |
588 #define XSUB_CHAR_TABLE(a) (eassert (SUB_CHAR_TABLE_P (a)), (struct Lisp_Sub_Char_Table *) XPNTR(a)) | |
589 #define XBOOL_VECTOR(a) (eassert (BOOL_VECTOR_P (a)), (struct Lisp_Bool_Vector *) XPNTR(a)) | |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
590 |
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
591 /* Construct a Lisp_Object from a value or address. */ |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
592 |
51657
7fb427e8d984
(struct interval, struct Lisp_Symbol, struct Lisp_Free)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51167
diff
changeset
|
593 #define XSETINT(a, b) (a) = make_number (b) |
9287
781ada39b15c
(XSETINT, XSETCONS, XSETBUFFER, XSETVECTOR, XSETSUBR, XSETSTRING, XSETSYMBOL,
Karl Heuer <kwzh@gnu.org>
parents:
9150
diff
changeset
|
594 #define XSETCONS(a, b) XSET (a, Lisp_Cons, b) |
10010
67375493afa2
(enum Lisp_Misc_Type): Rename Lisp_Vector to Lisp_Vectorlike. Mark
Karl Heuer <kwzh@gnu.org>
parents:
10003
diff
changeset
|
595 #define XSETVECTOR(a, b) XSET (a, Lisp_Vectorlike, b) |
9287
781ada39b15c
(XSETINT, XSETCONS, XSETBUFFER, XSETVECTOR, XSETSUBR, XSETSTRING, XSETSYMBOL,
Karl Heuer <kwzh@gnu.org>
parents:
9150
diff
changeset
|
596 #define XSETSTRING(a, b) XSET (a, Lisp_String, b) |
781ada39b15c
(XSETINT, XSETCONS, XSETBUFFER, XSETVECTOR, XSETSUBR, XSETSTRING, XSETSYMBOL,
Karl Heuer <kwzh@gnu.org>
parents:
9150
diff
changeset
|
597 #define XSETSYMBOL(a, b) XSET (a, Lisp_Symbol, b) |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
598 #define XSETFLOAT(a, b) XSET (a, Lisp_Float, b) |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
599 |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
600 /* Misc types. */ |
30173
420acffb79c2
(AREF, ASET, ASIZE): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
30081
diff
changeset
|
601 |
9435
3a157cdf395c
(Lisp_Misc): new type code, replacing Lisp_Marker (and soon to replace other
Karl Heuer <kwzh@gnu.org>
parents:
9392
diff
changeset
|
602 #define XSETMISC(a, b) XSET (a, Lisp_Misc, b) |
11335
78eda0ee4cba
(XMISCTYPE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
11204
diff
changeset
|
603 #define XSETMARKER(a, b) (XSETMISC (a, b), XMISCTYPE (a) = Lisp_Misc_Marker) |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
604 |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
605 /* Pseudovector types. */ |
30173
420acffb79c2
(AREF, ASET, ASIZE): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
30081
diff
changeset
|
606 |
85012
3a31b2cfe77f
(ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't allow definition in m/*.h files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85011
diff
changeset
|
607 #define XSETPVECTYPE(v,code) ((v)->size |= PSEUDOVECTOR_FLAG | (code)) |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
608 #define XSETPSEUDOVECTOR(a, b, code) \ |
85105
ba4f1a829f83
(XSETPSEUDOVECTOR): Don't set the tag anymore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85022
diff
changeset
|
609 (XSETVECTOR (a, b), \ |
ba4f1a829f83
(XSETPSEUDOVECTOR): Don't set the tag anymore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85022
diff
changeset
|
610 eassert ((XVECTOR (a)->size & (PSEUDOVECTOR_FLAG | PVEC_TYPE_MASK)) \ |
ba4f1a829f83
(XSETPSEUDOVECTOR): Don't set the tag anymore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85022
diff
changeset
|
611 == (PSEUDOVECTOR_FLAG | (code)))) |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
612 #define XSETWINDOW_CONFIGURATION(a, b) \ |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
613 (XSETPSEUDOVECTOR (a, b, PVEC_WINDOW_CONFIGURATION)) |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
614 #define XSETPROCESS(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_PROCESS)) |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
615 #define XSETWINDOW(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_WINDOW)) |
84689
73c717fa7866
(enum pvec_type): New `terminal' pseudovector.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84434
diff
changeset
|
616 #define XSETTERMINAL(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_TERMINAL)) |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
617 #define XSETSUBR(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_SUBR)) |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
618 #define XSETCOMPILED(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_COMPILED)) |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
619 #define XSETBUFFER(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_BUFFER)) |
13149
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
620 #define XSETCHAR_TABLE(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_CHAR_TABLE)) |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
621 #define XSETBOOL_VECTOR(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_BOOL_VECTOR)) |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
622 #define XSETSUB_CHAR_TABLE(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_SUB_CHAR_TABLE)) |
30173
420acffb79c2
(AREF, ASET, ASIZE): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
30081
diff
changeset
|
623 |
420acffb79c2
(AREF, ASET, ASIZE): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
30081
diff
changeset
|
624 /* Convenience macros for dealing with Lisp arrays. */ |
420acffb79c2
(AREF, ASET, ASIZE): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
30081
diff
changeset
|
625 |
420acffb79c2
(AREF, ASET, ASIZE): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
30081
diff
changeset
|
626 #define AREF(ARRAY, IDX) XVECTOR ((ARRAY))->contents[IDX] |
420acffb79c2
(AREF, ASET, ASIZE): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
30081
diff
changeset
|
627 #define ASIZE(ARRAY) XVECTOR ((ARRAY))->size |
91822
311ffbbfa909
Undo last mistakenly commited change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91813
diff
changeset
|
628 /* The IDX==IDX tries to detect when the macro argument is side-effecting. */ |
91717
23bd9edca21f
(ASET): Check bounds.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91702
diff
changeset
|
629 #define ASET(ARRAY, IDX, VAL) \ |
23bd9edca21f
(ASET): Check bounds.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91702
diff
changeset
|
630 (eassert ((IDX) == (IDX)), \ |
23bd9edca21f
(ASET): Check bounds.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91702
diff
changeset
|
631 eassert ((IDX) >= 0 && (IDX) < ASIZE (ARRAY)), \ |
91822
311ffbbfa909
Undo last mistakenly commited change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91813
diff
changeset
|
632 AREF ((ARRAY), (IDX)) = (VAL)) |
30173
420acffb79c2
(AREF, ASET, ASIZE): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
30081
diff
changeset
|
633 |
43780
412b8fa3fd95
(SREF, SDATA, SCHARS, SBYTES, SMBP): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
634 /* Convenience macros for dealing with Lisp strings. */ |
412b8fa3fd95
(SREF, SDATA, SCHARS, SBYTES, SMBP): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
635 |
46416
de62156bec9a
(SDATA): Produce rvalue.
Ken Raeburn <raeburn@raeburn.org>
parents:
46377
diff
changeset
|
636 #define SDATA(string) (XSTRING (string)->data + 0) |
84979
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
637 #define SREF(string, index) (SDATA (string)[index] + 0) |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
638 #define SSET(string, index, new) (SDATA (string)[index] = (new)) |
46372
e7289ef367d8
* lisp.h (STRING_SET_CHARS): New macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
46369
diff
changeset
|
639 #define SCHARS(string) (XSTRING (string)->size + 0) |
e7289ef367d8
* lisp.h (STRING_SET_CHARS): New macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
46369
diff
changeset
|
640 #define SBYTES(string) (STRING_BYTES (XSTRING (string)) + 0) |
e7289ef367d8
* lisp.h (STRING_SET_CHARS): New macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
46369
diff
changeset
|
641 |
e7289ef367d8
* lisp.h (STRING_SET_CHARS): New macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
46369
diff
changeset
|
642 #define STRING_SET_CHARS(string, newsize) \ |
e7289ef367d8
* lisp.h (STRING_SET_CHARS): New macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
46369
diff
changeset
|
643 (XSTRING (string)->size = (newsize)) |
43780
412b8fa3fd95
(SREF, SDATA, SCHARS, SBYTES, SMBP): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
43713
diff
changeset
|
644 |
46552
cb055b77d3c6
(STRING_COPYIN): New macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
46471
diff
changeset
|
645 #define STRING_COPYIN(string, index, new, count) \ |
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109154
diff
changeset
|
646 memcpy (SDATA (string) + index, new, count) |
46552
cb055b77d3c6
(STRING_COPYIN): New macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
46471
diff
changeset
|
647 |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
648 /* Type checking. */ |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
649 |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
650 #define CHECK_TYPE(ok, Qxxxp, x) \ |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
651 do { if (!(ok)) wrong_type_argument (Qxxxp, (x)); } while (0) |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
652 |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
653 |
302 | 654 |
51858
bf6232373c39
(VALBITS): Define in terms of GCTYPEBITS.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51833
diff
changeset
|
655 /* See the macros in intervals.h. */ |
1290
9b0ddca4773b
* lisp.h: Conditionally define interval structure and macros.
Joseph Arceneaux <jla@gnu.org>
parents:
1277
diff
changeset
|
656 |
9b0ddca4773b
* lisp.h: Conditionally define interval structure and macros.
Joseph Arceneaux <jla@gnu.org>
parents:
1277
diff
changeset
|
657 typedef struct interval *INTERVAL; |
9b0ddca4773b
* lisp.h: Conditionally define interval structure and macros.
Joseph Arceneaux <jla@gnu.org>
parents:
1277
diff
changeset
|
658 |
9b0ddca4773b
* lisp.h: Conditionally define interval structure and macros.
Joseph Arceneaux <jla@gnu.org>
parents:
1277
diff
changeset
|
659 /* Complain if object is not string or buffer type */ |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
660 #define CHECK_STRING_OR_BUFFER(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
661 CHECK_TYPE (STRINGP (x) || BUFFERP (x), Qbuffer_or_string_p, x) |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
662 |
1290
9b0ddca4773b
* lisp.h: Conditionally define interval structure and macros.
Joseph Arceneaux <jla@gnu.org>
parents:
1277
diff
changeset
|
663 |
302 | 664 /* In a cons, the markbit of the car is the gc mark bit */ |
665 | |
666 struct Lisp_Cons | |
667 { | |
25421
65a7e9c02d4f
(struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change names of structure
Ken Raeburn <raeburn@raeburn.org>
parents:
25392
diff
changeset
|
668 /* Please do not use the names of these elements in code other |
65a7e9c02d4f
(struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change names of structure
Ken Raeburn <raeburn@raeburn.org>
parents:
25392
diff
changeset
|
669 than the core lisp implementation. Use XCAR and XCDR below. */ |
65a7e9c02d4f
(struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change names of structure
Ken Raeburn <raeburn@raeburn.org>
parents:
25392
diff
changeset
|
670 #ifdef HIDE_LISP_IMPLEMENTATION |
66888
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
671 Lisp_Object car_; |
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
672 union |
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
673 { |
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
674 Lisp_Object cdr_; |
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
675 struct Lisp_Cons *chain; |
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
676 } u; |
25421
65a7e9c02d4f
(struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change names of structure
Ken Raeburn <raeburn@raeburn.org>
parents:
25392
diff
changeset
|
677 #else |
66888
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
678 Lisp_Object car; |
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
679 union |
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
680 { |
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
681 Lisp_Object cdr; |
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
682 struct Lisp_Cons *chain; |
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
683 } u; |
25421
65a7e9c02d4f
(struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change names of structure
Ken Raeburn <raeburn@raeburn.org>
parents:
25392
diff
changeset
|
684 #endif |
302 | 685 }; |
686 | |
14306
b30429f0b599
(XCAR, XCDR, CAR, CDR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
687 /* Take the car or cdr of something known to be a cons cell. */ |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
688 /* The _AS_LVALUE macros shouldn't be used outside of the minimal set |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
689 of code that has to know what a cons cell looks like. Other code not |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
690 part of the basic lisp implementation should assume that the car and cdr |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
691 fields are not accessible as lvalues. (What if we want to switch to |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
692 a copying collector someday? Cached cons cell field addresses may be |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
693 invalidated at arbitrary points.) */ |
25421
65a7e9c02d4f
(struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change names of structure
Ken Raeburn <raeburn@raeburn.org>
parents:
25392
diff
changeset
|
694 #ifdef HIDE_LISP_IMPLEMENTATION |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
695 #define XCAR_AS_LVALUE(c) (XCONS ((c))->car_) |
66888
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
696 #define XCDR_AS_LVALUE(c) (XCONS ((c))->u.cdr_) |
25421
65a7e9c02d4f
(struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change names of structure
Ken Raeburn <raeburn@raeburn.org>
parents:
25392
diff
changeset
|
697 #else |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
698 #define XCAR_AS_LVALUE(c) (XCONS ((c))->car) |
66888
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
699 #define XCDR_AS_LVALUE(c) (XCONS ((c))->u.cdr) |
25421
65a7e9c02d4f
(struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change names of structure
Ken Raeburn <raeburn@raeburn.org>
parents:
25392
diff
changeset
|
700 #endif |
14306
b30429f0b599
(XCAR, XCDR, CAR, CDR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
701 |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
702 /* Use these from normal code. */ |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
703 #define XCAR(c) LISP_MAKE_RVALUE(XCAR_AS_LVALUE(c)) |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
704 #define XCDR(c) LISP_MAKE_RVALUE(XCDR_AS_LVALUE(c)) |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
705 |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
706 /* Use these to set the fields of a cons cell. |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
707 |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
708 Note that both arguments may refer to the same object, so 'n' |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
709 should not be read after 'c' is first modified. Also, neither |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
710 argument should be evaluated more than once; side effects are |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
711 especially common in the second argument. */ |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
712 #define XSETCAR(c,n) (XCAR_AS_LVALUE(c) = (n)) |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
713 #define XSETCDR(c,n) (XCDR_AS_LVALUE(c) = (n)) |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
714 |
14306
b30429f0b599
(XCAR, XCDR, CAR, CDR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
715 /* Take the car or cdr of something whose type is not known. */ |
b30429f0b599
(XCAR, XCDR, CAR, CDR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
716 #define CAR(c) \ |
b30429f0b599
(XCAR, XCDR, CAR, CDR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
717 (CONSP ((c)) ? XCAR ((c)) \ |
b30429f0b599
(XCAR, XCDR, CAR, CDR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
718 : NILP ((c)) ? Qnil \ |
b30429f0b599
(XCAR, XCDR, CAR, CDR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
719 : wrong_type_argument (Qlistp, (c))) |
b30429f0b599
(XCAR, XCDR, CAR, CDR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
720 |
b30429f0b599
(XCAR, XCDR, CAR, CDR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
721 #define CDR(c) \ |
b30429f0b599
(XCAR, XCDR, CAR, CDR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
722 (CONSP ((c)) ? XCDR ((c)) \ |
b30429f0b599
(XCAR, XCDR, CAR, CDR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
723 : NILP ((c)) ? Qnil \ |
b30429f0b599
(XCAR, XCDR, CAR, CDR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
724 : wrong_type_argument (Qlistp, (c))) |
b30429f0b599
(XCAR, XCDR, CAR, CDR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
725 |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
726 /* Take the car or cdr of something whose type is not known. */ |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
727 #define CAR_SAFE(c) \ |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
728 (CONSP ((c)) ? XCAR ((c)) : Qnil) |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
729 |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
730 #define CDR_SAFE(c) \ |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
731 (CONSP ((c)) ? XCDR ((c)) : Qnil) |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
732 |
21276 | 733 /* Nonzero if STR is a multibyte string. */ |
734 #define STRING_MULTIBYTE(STR) \ | |
735 (XSTRING (STR)->size_byte >= 0) | |
736 | |
737 /* Return the length in bytes of STR. */ | |
35184
07ec5658a7a5
(STRING_BYTES) [GC_CHECK_STRING_BYTES]: Call
Gerd Moellmann <gerd@gnu.org>
parents:
35173
diff
changeset
|
738 |
07ec5658a7a5
(STRING_BYTES) [GC_CHECK_STRING_BYTES]: Call
Gerd Moellmann <gerd@gnu.org>
parents:
35173
diff
changeset
|
739 #ifdef GC_CHECK_STRING_BYTES |
07ec5658a7a5
(STRING_BYTES) [GC_CHECK_STRING_BYTES]: Call
Gerd Moellmann <gerd@gnu.org>
parents:
35173
diff
changeset
|
740 |
07ec5658a7a5
(STRING_BYTES) [GC_CHECK_STRING_BYTES]: Call
Gerd Moellmann <gerd@gnu.org>
parents:
35173
diff
changeset
|
741 struct Lisp_String; |
110503
fda36a325177
Fix some more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110484
diff
changeset
|
742 extern EMACS_INT string_bytes (struct Lisp_String *); |
35184
07ec5658a7a5
(STRING_BYTES) [GC_CHECK_STRING_BYTES]: Call
Gerd Moellmann <gerd@gnu.org>
parents:
35173
diff
changeset
|
743 #define STRING_BYTES(S) string_bytes ((S)) |
07ec5658a7a5
(STRING_BYTES) [GC_CHECK_STRING_BYTES]: Call
Gerd Moellmann <gerd@gnu.org>
parents:
35173
diff
changeset
|
744 |
07ec5658a7a5
(STRING_BYTES) [GC_CHECK_STRING_BYTES]: Call
Gerd Moellmann <gerd@gnu.org>
parents:
35173
diff
changeset
|
745 #else /* not GC_CHECK_STRING_BYTES */ |
07ec5658a7a5
(STRING_BYTES) [GC_CHECK_STRING_BYTES]: Call
Gerd Moellmann <gerd@gnu.org>
parents:
35173
diff
changeset
|
746 |
21276 | 747 #define STRING_BYTES(STR) \ |
748 ((STR)->size_byte < 0 ? (STR)->size : (STR)->size_byte) | |
749 | |
35184
07ec5658a7a5
(STRING_BYTES) [GC_CHECK_STRING_BYTES]: Call
Gerd Moellmann <gerd@gnu.org>
parents:
35173
diff
changeset
|
750 #endif /* not GC_CHECK_STRING_BYTES */ |
07ec5658a7a5
(STRING_BYTES) [GC_CHECK_STRING_BYTES]: Call
Gerd Moellmann <gerd@gnu.org>
parents:
35173
diff
changeset
|
751 |
46369
dd1d3b1d0053
(SMBP): Deleted. All uses changed to STRING_MULTIBYTE.
Ken Raeburn <raeburn@raeburn.org>
parents:
46304
diff
changeset
|
752 /* Mark STR as a unibyte string. */ |
81269
5e310b8be81d
(STRING_SET_UNIBYTE): Return the canonical empty unibyte string, if appropriate.
Juanma Barranquero <lekktu@gmail.com>
parents:
80985
diff
changeset
|
753 #define STRING_SET_UNIBYTE(STR) \ |
5e310b8be81d
(STRING_SET_UNIBYTE): Return the canonical empty unibyte string, if appropriate.
Juanma Barranquero <lekktu@gmail.com>
parents:
80985
diff
changeset
|
754 do { if (EQ (STR, empty_multibyte_string)) \ |
5e310b8be81d
(STRING_SET_UNIBYTE): Return the canonical empty unibyte string, if appropriate.
Juanma Barranquero <lekktu@gmail.com>
parents:
80985
diff
changeset
|
755 (STR) = empty_unibyte_string; \ |
5e310b8be81d
(STRING_SET_UNIBYTE): Return the canonical empty unibyte string, if appropriate.
Juanma Barranquero <lekktu@gmail.com>
parents:
80985
diff
changeset
|
756 else XSTRING (STR)->size_byte = -1; } while (0) |
46369
dd1d3b1d0053
(SMBP): Deleted. All uses changed to STRING_MULTIBYTE.
Ken Raeburn <raeburn@raeburn.org>
parents:
46304
diff
changeset
|
757 |
94121
21ceec8c4a93
(STRING_SET_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
93369
diff
changeset
|
758 /* Mark STR as a multibyte string. Assure that STR contains only |
21ceec8c4a93
(STRING_SET_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
93369
diff
changeset
|
759 ASCII characters in advance. */ |
21ceec8c4a93
(STRING_SET_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
93369
diff
changeset
|
760 #define STRING_SET_MULTIBYTE(STR) \ |
21ceec8c4a93
(STRING_SET_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
93369
diff
changeset
|
761 do { if (EQ (STR, empty_unibyte_string)) \ |
21ceec8c4a93
(STRING_SET_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
93369
diff
changeset
|
762 (STR) = empty_multibyte_string; \ |
21ceec8c4a93
(STRING_SET_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
93369
diff
changeset
|
763 else XSTRING (STR)->size_byte = XSTRING (STR)->size; } while (0) |
46369
dd1d3b1d0053
(SMBP): Deleted. All uses changed to STRING_MULTIBYTE.
Ken Raeburn <raeburn@raeburn.org>
parents:
46304
diff
changeset
|
764 |
dd1d3b1d0053
(SMBP): Deleted. All uses changed to STRING_MULTIBYTE.
Ken Raeburn <raeburn@raeburn.org>
parents:
46304
diff
changeset
|
765 /* Get text properties. */ |
46377
d50779ef2a76
* lisp.h (STRING_INTERVALS): Produce rvalue.
Ken Raeburn <raeburn@raeburn.org>
parents:
46372
diff
changeset
|
766 #define STRING_INTERVALS(STR) (XSTRING (STR)->intervals + 0) |
d50779ef2a76
* lisp.h (STRING_INTERVALS): Produce rvalue.
Ken Raeburn <raeburn@raeburn.org>
parents:
46372
diff
changeset
|
767 |
d50779ef2a76
* lisp.h (STRING_INTERVALS): Produce rvalue.
Ken Raeburn <raeburn@raeburn.org>
parents:
46372
diff
changeset
|
768 /* Set text properties. */ |
d50779ef2a76
* lisp.h (STRING_INTERVALS): Produce rvalue.
Ken Raeburn <raeburn@raeburn.org>
parents:
46372
diff
changeset
|
769 #define STRING_SET_INTERVALS(STR, INT) (XSTRING (STR)->intervals = (INT)) |
21276 | 770 |
302 | 771 /* In a string or vector, the sign bit of the `size' is the gc mark bit */ |
772 | |
773 struct Lisp_String | |
774 { | |
8827
97bf951c0b98
(Lisp_Object): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
8631
diff
changeset
|
775 EMACS_INT size; |
20625
a9c4bf3f4e46
(STRING_MULTIBYTE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20569
diff
changeset
|
776 EMACS_INT size_byte; |
30934
ce33e6835a31
(Lisp_String): Replace DECLARE_INTERVALS with real decl.
Miles Bader <miles@gnu.org>
parents:
30918
diff
changeset
|
777 INTERVAL intervals; /* text properties in this string */ |
27141
d7b1de135a40
Add prototype for allocate_string_data.
Gerd Moellmann <gerd@gnu.org>
parents:
27078
diff
changeset
|
778 unsigned char *data; |
302 | 779 }; |
780 | |
69874
e9739d967d09
(PSEUDOVECSIZE): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents:
69871
diff
changeset
|
781 struct Lisp_Vector |
e9739d967d09
(PSEUDOVECSIZE): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents:
69871
diff
changeset
|
782 { |
85022
96eb42c9e0e3
* window.h (struct window):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85021
diff
changeset
|
783 EMACS_UINT size; |
69874
e9739d967d09
(PSEUDOVECSIZE): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents:
69871
diff
changeset
|
784 struct Lisp_Vector *next; |
e9739d967d09
(PSEUDOVECSIZE): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents:
69871
diff
changeset
|
785 Lisp_Object contents[1]; |
e9739d967d09
(PSEUDOVECSIZE): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents:
69871
diff
changeset
|
786 }; |
e9739d967d09
(PSEUDOVECSIZE): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents:
69871
diff
changeset
|
787 |
9971 | 788 /* If a struct is made to look like a vector, this macro returns the length |
14473
7c93a4ce40b0
(VECSIZE): Round up when dividing.
Richard M. Stallman <rms@gnu.org>
parents:
14306
diff
changeset
|
789 of the shortest vector that would hold that struct. */ |
80829 | 790 #define VECSIZE(type) ((sizeof (type) \ |
109320
a0d2db31314d
Use offsetof instead of own definition
Andreas Schwab <schwab@linux-m68k.org>
parents:
109313
diff
changeset
|
791 - offsetof (struct Lisp_Vector, contents[0]) \ |
80829 | 792 + sizeof(Lisp_Object) - 1) /* round up */ \ |
9971 | 793 / sizeof (Lisp_Object)) |
794 | |
69869
89bc86c44d7c
(OFFSETOF, PSEUDOVECSIZE): New macros.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69374
diff
changeset
|
795 /* Like VECSIZE, but used when the pseudo-vector has non-Lisp_Object fields |
89bc86c44d7c
(OFFSETOF, PSEUDOVECSIZE): New macros.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69374
diff
changeset
|
796 at the end and we need to compute the number of Lisp_Object fields (the |
89bc86c44d7c
(OFFSETOF, PSEUDOVECSIZE): New macros.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69374
diff
changeset
|
797 ones that the GC needs to trace). */ |
89bc86c44d7c
(OFFSETOF, PSEUDOVECSIZE): New macros.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69374
diff
changeset
|
798 #define PSEUDOVECSIZE(type, nonlispfield) \ |
109320
a0d2db31314d
Use offsetof instead of own definition
Andreas Schwab <schwab@linux-m68k.org>
parents:
109313
diff
changeset
|
799 ((offsetof(type, nonlispfield) - offsetof(struct Lisp_Vector, contents[0])) \ |
69869
89bc86c44d7c
(OFFSETOF, PSEUDOVECSIZE): New macros.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69374
diff
changeset
|
800 / sizeof (Lisp_Object)) |
89bc86c44d7c
(OFFSETOF, PSEUDOVECSIZE): New macros.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69374
diff
changeset
|
801 |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
802 /* A char-table is a kind of vectorlike, with contents are like a |
17326
bd34aa57f3f5
(CHAR_TABLE_STANDARD_SLOTS): Now 4 more slots than
Kenichi Handa <handa@m17n.org>
parents:
17289
diff
changeset
|
803 vector but with a few other slots. For some purposes, it makes |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
804 sense to handle a char-table with type struct Lisp_Vector. An |
17326
bd34aa57f3f5
(CHAR_TABLE_STANDARD_SLOTS): Now 4 more slots than
Kenichi Handa <handa@m17n.org>
parents:
17289
diff
changeset
|
805 element of a char table can be any Lisp objects, but if it is a sub |
bd34aa57f3f5
(CHAR_TABLE_STANDARD_SLOTS): Now 4 more slots than
Kenichi Handa <handa@m17n.org>
parents:
17289
diff
changeset
|
806 char-table, we treat it a table that contains information of a |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
807 specific range of characters. A sub char-table has the same |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
808 structure as a vector. A sub char table appears only in an element |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
809 of a char-table, and there's no way to access it directly from |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
810 Emacs Lisp program. */ |
13149
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
811 |
17326
bd34aa57f3f5
(CHAR_TABLE_STANDARD_SLOTS): Now 4 more slots than
Kenichi Handa <handa@m17n.org>
parents:
17289
diff
changeset
|
812 /* This is the number of slots that every char table must have. This |
bd34aa57f3f5
(CHAR_TABLE_STANDARD_SLOTS): Now 4 more slots than
Kenichi Handa <handa@m17n.org>
parents:
17289
diff
changeset
|
813 counts the ordinary slots and the top, defalt, parent, and purpose |
bd34aa57f3f5
(CHAR_TABLE_STANDARD_SLOTS): Now 4 more slots than
Kenichi Handa <handa@m17n.org>
parents:
17289
diff
changeset
|
814 slots. */ |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
815 #define CHAR_TABLE_STANDARD_SLOTS (VECSIZE (struct Lisp_Char_Table) - 1) |
13149
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
816 |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
817 /* Return the number of "extra" slots in the char table CT. */ |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
818 |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
819 #define CHAR_TABLE_EXTRA_SLOTS(CT) \ |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
820 (((CT)->size & PSEUDOVECTOR_SIZE_MASK) - CHAR_TABLE_STANDARD_SLOTS) |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
821 |
104568
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
822 #ifdef __GNUC__ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
823 |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
824 #define CHAR_TABLE_REF_ASCII(CT, IDX) \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
825 ({struct Lisp_Char_Table *_tbl = NULL; \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
826 Lisp_Object _val; \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
827 do { \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
828 _tbl = _tbl ? XCHAR_TABLE (_tbl->parent) : XCHAR_TABLE (CT); \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
829 _val = (! SUB_CHAR_TABLE_P (_tbl->ascii) ? _tbl->ascii \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
830 : XSUB_CHAR_TABLE (_tbl->ascii)->contents[IDX]); \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
831 if (NILP (_val)) \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
832 _val = _tbl->defalt; \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
833 } while (NILP (_val) && ! NILP (_tbl->parent)); \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
834 _val; }) |
105373
7a4bd0ca624b
* lisp.h (Qdelete_directory_internal): Remove, because it is not
Michael Albinus <michael.albinus@gmx.de>
parents:
105367
diff
changeset
|
835 |
104568
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
836 #else /* not __GNUC__ */ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
837 |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
838 #define CHAR_TABLE_REF_ASCII(CT, IDX) \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
839 (! NILP (XCHAR_TABLE (CT)->ascii) \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
840 ? (! SUB_CHAR_TABLE_P (XCHAR_TABLE (CT)->ascii) \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
841 ? XCHAR_TABLE (CT)->ascii \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
842 : ! NILP (XSUB_CHAR_TABLE (XCHAR_TABLE (CT)->ascii)->contents[IDX]) \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
843 ? XSUB_CHAR_TABLE (XCHAR_TABLE (CT)->ascii)->contents[IDX] \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
844 : char_table_ref ((CT), (IDX))) \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
845 : char_table_ref ((CT), (IDX))) |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
846 |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
847 #endif /* not __GNUC__ */ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
848 |
17188
e38cc84db8ab
(CHAR_TABLE_ORDINARY_SLOTS): Change to 384 (== 256 + 128).
Kenichi Handa <handa@m17n.org>
parents:
17141
diff
changeset
|
849 /* Almost equivalent to Faref (CT, IDX) with optimization for ASCII |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
850 characters. Do not check validity of CT. */ |
104568
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
851 #define CHAR_TABLE_REF(CT, IDX) \ |
e6841301fe4d
(CHAR_TABLE_REF_ASCII): New macor.
Kenichi Handa <handa@m17n.org>
parents:
104313
diff
changeset
|
852 (ASCII_CHAR_P (IDX) ? CHAR_TABLE_REF_ASCII ((CT), (IDX)) \ |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
853 : char_table_ref ((CT), (IDX))) |
17188
e38cc84db8ab
(CHAR_TABLE_ORDINARY_SLOTS): Change to 384 (== 256 + 128).
Kenichi Handa <handa@m17n.org>
parents:
17141
diff
changeset
|
854 |
89574 | 855 /* Almost equivalent to Faref (CT, IDX). However, if the result is |
856 not a character, return IDX. | |
22239
0a666cecb85d
(CHAR_TABLE_TRANSLATE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
22190
diff
changeset
|
857 |
0a666cecb85d
(CHAR_TABLE_TRANSLATE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
22190
diff
changeset
|
858 For these characters, do not check validity of CT |
0a666cecb85d
(CHAR_TABLE_TRANSLATE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
22190
diff
changeset
|
859 and do not follow parent. */ |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
860 #define CHAR_TABLE_TRANSLATE(CT, IDX) \ |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
861 char_table_translate (CT, IDX) |
22239
0a666cecb85d
(CHAR_TABLE_TRANSLATE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
22190
diff
changeset
|
862 |
17188
e38cc84db8ab
(CHAR_TABLE_ORDINARY_SLOTS): Change to 384 (== 256 + 128).
Kenichi Handa <handa@m17n.org>
parents:
17141
diff
changeset
|
863 /* Equivalent to Faset (CT, IDX, VAL) with optimization for ASCII and |
88933 | 864 8-bit European characters. Do not check validity of CT. */ |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
865 #define CHAR_TABLE_SET(CT, IDX, VAL) \ |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
866 (((IDX) >= 0 && ASCII_CHAR_P (IDX) \ |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
867 && SUB_CHAR_TABLE_P (XCHAR_TABLE (CT)->ascii)) \ |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
868 ? XSUB_CHAR_TABLE (XCHAR_TABLE (CT)->ascii)->contents[IDX] = VAL \ |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
869 : char_table_set (CT, IDX, VAL)) |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
870 |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
871 #define CHARTAB_SIZE_BITS_0 6 |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
872 #define CHARTAB_SIZE_BITS_1 4 |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
873 #define CHARTAB_SIZE_BITS_2 5 |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
874 #define CHARTAB_SIZE_BITS_3 7 |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
875 |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
876 extern const int chartab_size[4]; |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
877 |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
878 struct Lisp_Sub_Char_Table; |
17188
e38cc84db8ab
(CHAR_TABLE_ORDINARY_SLOTS): Change to 384 (== 256 + 128).
Kenichi Handa <handa@m17n.org>
parents:
17141
diff
changeset
|
879 |
13149
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
880 struct Lisp_Char_Table |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
881 { |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
882 /* This is the vector's size field, which also holds the |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
883 pseudovector type information. It holds the size, too. |
91041 | 884 The size counts the defalt, parent, purpose, ascii, |
885 contents, and extras slots. */ | |
85022
96eb42c9e0e3
* window.h (struct window):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85021
diff
changeset
|
886 EMACS_UINT size; |
13149
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
887 struct Lisp_Vector *next; |
89483 | 888 |
13149
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
889 /* This holds a default value, |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
890 which is used whenever the value for a specific character is nil. */ |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
891 Lisp_Object defalt; |
89483 | 892 |
893 /* This points to another char table, which we inherit from when the | |
894 value for a specific character is nil. The `defalt' slot takes | |
895 precedence over this. */ | |
13149
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
896 Lisp_Object parent; |
89483 | 897 |
898 /* This is a symbol which says what kind of use this char-table is | |
899 meant for. */ | |
13202
b307cd5c259f
(struct Lisp_Char_Table): New slot `purpose'.
Richard M. Stallman <rms@gnu.org>
parents:
13149
diff
changeset
|
900 Lisp_Object purpose; |
89483 | 901 |
902 /* The bottom sub char-table for characters of the range 0..127. It | |
903 is nil if none of ASCII character has a specific value. */ | |
904 Lisp_Object ascii; | |
905 | |
906 Lisp_Object contents[(1 << CHARTAB_SIZE_BITS_0)]; | |
907 | |
908 /* These hold additional data. It is a vector. */ | |
13149
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
909 Lisp_Object extras[1]; |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
910 }; |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
911 |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
912 struct Lisp_Sub_Char_Table |
89483 | 913 { |
914 /* This is the vector's size field, which also holds the | |
915 pseudovector type information. It holds the size, too. */ | |
916 EMACS_INT size; | |
917 struct Lisp_Vector *next; | |
918 | |
919 /* Depth of this sub char-table. It should be 1, 2, or 3. A sub | |
108933 | 920 char-table of depth 1 contains 16 elements, and each element |
89483 | 921 covers 4096 (128*32) characters. A sub char-table of depth 2 |
922 contains 32 elements, and each element covers 128 characters. A | |
923 sub char-table of depth 3 contains 128 elements, and each element | |
924 is for one character. */ | |
925 Lisp_Object depth; | |
926 | |
927 /* Minimum character covered by the sub char-table. */ | |
928 Lisp_Object min_char; | |
929 | |
930 Lisp_Object contents[1]; | |
931 }; | |
13149
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
932 |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
933 /* A boolvector is a kind of vectorlike, with contents are like a string. */ |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
934 struct Lisp_Bool_Vector |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
935 { |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
936 /* This is the vector's size field. It doesn't have the real size, |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
937 just the subtype information. */ |
85022
96eb42c9e0e3
* window.h (struct window):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85021
diff
changeset
|
938 EMACS_UINT vector_size; |
13149
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
939 struct Lisp_Vector *next; |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
940 /* This is the size in bits. */ |
85022
96eb42c9e0e3
* window.h (struct window):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85021
diff
changeset
|
941 EMACS_UINT size; |
13149
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
942 /* This contains the actual bits, packed into bytes. */ |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
943 unsigned char data[1]; |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
944 }; |
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
945 |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
946 /* This structure describes a built-in function. |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
947 It is generated by the DEFUN macro only. |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
948 defsubr makes it into a Lisp object. |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
949 |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
950 This type is treated in most respects as a pseudovector, |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
951 but since we never dynamically allocate or free them, |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
952 we don't need a next-vector field. */ |
17404
73012b195cf3
(DOWNCASE): Return int, not Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
17326
diff
changeset
|
953 |
302 | 954 struct Lisp_Subr |
955 { | |
85022
96eb42c9e0e3
* window.h (struct window):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85021
diff
changeset
|
956 EMACS_UINT size; |
109154
6f7fb6d5f0f9
Make the function member of Lisp_Subr use standard C prototypes.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109151
diff
changeset
|
957 union { |
6f7fb6d5f0f9
Make the function member of Lisp_Subr use standard C prototypes.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109151
diff
changeset
|
958 Lisp_Object (*a0) (void); |
6f7fb6d5f0f9
Make the function member of Lisp_Subr use standard C prototypes.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109151
diff
changeset
|
959 Lisp_Object (*a1) (Lisp_Object); |
6f7fb6d5f0f9
Make the function member of Lisp_Subr use standard C prototypes.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109151
diff
changeset
|
960 Lisp_Object (*a2) (Lisp_Object, Lisp_Object); |
6f7fb6d5f0f9
Make the function member of Lisp_Subr use standard C prototypes.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109151
diff
changeset
|
961 Lisp_Object (*a3) (Lisp_Object, Lisp_Object, Lisp_Object); |
6f7fb6d5f0f9
Make the function member of Lisp_Subr use standard C prototypes.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109151
diff
changeset
|
962 Lisp_Object (*a4) (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); |
6f7fb6d5f0f9
Make the function member of Lisp_Subr use standard C prototypes.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109151
diff
changeset
|
963 Lisp_Object (*a5) (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); |
6f7fb6d5f0f9
Make the function member of Lisp_Subr use standard C prototypes.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109151
diff
changeset
|
964 Lisp_Object (*a6) (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); |
6f7fb6d5f0f9
Make the function member of Lisp_Subr use standard C prototypes.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109151
diff
changeset
|
965 Lisp_Object (*a7) (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); |
6f7fb6d5f0f9
Make the function member of Lisp_Subr use standard C prototypes.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109151
diff
changeset
|
966 Lisp_Object (*a8) (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); |
109476
94ad8639f676
Fix up "missing braces" warning.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109375
diff
changeset
|
967 Lisp_Object (*aUNEVALLED) (Lisp_Object args); |
94ad8639f676
Fix up "missing braces" warning.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109375
diff
changeset
|
968 Lisp_Object (*aMANY) (int, Lisp_Object *); |
109154
6f7fb6d5f0f9
Make the function member of Lisp_Subr use standard C prototypes.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109151
diff
changeset
|
969 } function; |
302 | 970 short min_args, max_args; |
105872
89183b6f6e9d
* process.c (socket_options): Make it const.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105840
diff
changeset
|
971 const char *symbol_name; |
109554
b22b609d1fa7
* src/lisp.h (Fkill_emacs): Mark as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109548
diff
changeset
|
972 const char *intspec; |
b22b609d1fa7
* src/lisp.h (Fkill_emacs): Mark as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109548
diff
changeset
|
973 const char *doc; |
302 | 974 }; |
25017
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
975 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
976 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
977 /*********************************************************************** |
39579
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
978 Symbols |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
979 ***********************************************************************/ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
980 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
981 /* Interned state of a symbol. */ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
982 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
983 enum symbol_interned |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
984 { |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
985 SYMBOL_UNINTERNED = 0, |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
986 SYMBOL_INTERNED = 1, |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
987 SYMBOL_INTERNED_IN_INITIAL_OBARRAY = 2 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
988 }; |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
989 |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
990 enum symbol_redirect |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
991 { |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
992 SYMBOL_PLAINVAL = 4, |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
993 SYMBOL_VARALIAS = 1, |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
994 SYMBOL_LOCALIZED = 2, |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
995 SYMBOL_FORWARDED = 3 |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
996 }; |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
997 |
39579
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
998 /* In a symbol, the markbit of the plist is used as the gc mark bit */ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
999 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1000 struct Lisp_Symbol |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1001 { |
51657
7fb427e8d984
(struct interval, struct Lisp_Symbol, struct Lisp_Free)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51167
diff
changeset
|
1002 unsigned gcmarkbit : 1; |
7fb427e8d984
(struct interval, struct Lisp_Symbol, struct Lisp_Free)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51167
diff
changeset
|
1003 |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1004 /* Indicates where the value can be found: |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1005 0 : it's a plain var, the value is in the `value' field. |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1006 1 : it's a varalias, the value is really in the `alias' symbol. |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1007 2 : it's a localized var, the value is in the `blv' object. |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1008 3 : it's a forwarding variable, the value is in `forward'. |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1009 */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1010 enum symbol_redirect redirect : 3; |
39579
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1011 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1012 /* Non-zero means symbol is constant, i.e. changing its value |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1013 should signal an error. If the value is 3, then the var |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1014 can be changed, but only by `defconst'. */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1015 unsigned constant : 2; |
39579
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1016 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1017 /* Interned state of the symbol. This is an enumerator from |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1018 enum symbol_interned. */ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1019 unsigned interned : 2; |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1020 |
45405
13e858104d3b
* lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
Ken Raeburn <raeburn@raeburn.org>
parents:
45375
diff
changeset
|
1021 /* The symbol's name, as a Lisp string. |
13e858104d3b
* lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
Ken Raeburn <raeburn@raeburn.org>
parents:
45375
diff
changeset
|
1022 |
13e858104d3b
* lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
Ken Raeburn <raeburn@raeburn.org>
parents:
45375
diff
changeset
|
1023 The name "xname" is used to intentionally break code referring to |
13e858104d3b
* lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
Ken Raeburn <raeburn@raeburn.org>
parents:
45375
diff
changeset
|
1024 the old field "name" of type pointer to struct Lisp_String. */ |
13e858104d3b
* lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
Ken Raeburn <raeburn@raeburn.org>
parents:
45375
diff
changeset
|
1025 Lisp_Object xname; |
39579
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1026 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1027 /* Value of the symbol or Qunbound if unbound. If this symbol is a |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1028 defvaralias, `alias' contains the symbol for which it is an |
39579
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1029 alias. Use the SYMBOL_VALUE and SET_SYMBOL_VALUE macros to get |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1030 and set a symbol's value, to take defvaralias into account. */ |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1031 union { |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1032 Lisp_Object value; |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1033 struct Lisp_Symbol *alias; |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1034 struct Lisp_Buffer_Local_Value *blv; |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1035 union Lisp_Fwd *fwd; |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1036 } val; |
39579
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1037 |
41615
6486180ed9ef
(run_hook_list_with_args): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41262
diff
changeset
|
1038 /* Function value of the symbol or Qunbound if not fboundp. */ |
39579
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1039 Lisp_Object function; |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1040 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1041 /* The symbol's property list. */ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1042 Lisp_Object plist; |
45623
0e92d219e195
(current_column): Now returns float.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
45545
diff
changeset
|
1043 |
39579
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1044 /* Next symbol in obarray bucket, if the symbol is interned. */ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1045 struct Lisp_Symbol *next; |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1046 }; |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1047 |
45405
13e858104d3b
* lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
Ken Raeburn <raeburn@raeburn.org>
parents:
45375
diff
changeset
|
1048 /* Value is name of symbol. */ |
13e858104d3b
* lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
Ken Raeburn <raeburn@raeburn.org>
parents:
45375
diff
changeset
|
1049 |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1050 #define SYMBOL_VAL(sym) \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1051 (eassert ((sym)->redirect == SYMBOL_PLAINVAL), (sym)->val.value) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1052 #define SYMBOL_ALIAS(sym) \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1053 (eassert ((sym)->redirect == SYMBOL_VARALIAS), (sym)->val.alias) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1054 #define SYMBOL_BLV(sym) \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1055 (eassert ((sym)->redirect == SYMBOL_LOCALIZED), (sym)->val.blv) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1056 #define SYMBOL_FWD(sym) \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1057 (eassert ((sym)->redirect == SYMBOL_FORWARDED), (sym)->val.fwd) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1058 #define SET_SYMBOL_VAL(sym, v) \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1059 (eassert ((sym)->redirect == SYMBOL_PLAINVAL), (sym)->val.value = (v)) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1060 #define SET_SYMBOL_ALIAS(sym, v) \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1061 (eassert ((sym)->redirect == SYMBOL_VARALIAS), (sym)->val.alias = (v)) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1062 #define SET_SYMBOL_BLV(sym, v) \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1063 (eassert ((sym)->redirect == SYMBOL_LOCALIZED), (sym)->val.blv = (v)) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1064 #define SET_SYMBOL_FWD(sym, v) \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1065 (eassert ((sym)->redirect == SYMBOL_FORWARDED), (sym)->val.fwd = (v)) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1066 |
45405
13e858104d3b
* lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
Ken Raeburn <raeburn@raeburn.org>
parents:
45375
diff
changeset
|
1067 #define SYMBOL_NAME(sym) \ |
13e858104d3b
* lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
Ken Raeburn <raeburn@raeburn.org>
parents:
45375
diff
changeset
|
1068 LISP_MAKE_RVALUE (XSYMBOL (sym)->xname) |
13e858104d3b
* lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
Ken Raeburn <raeburn@raeburn.org>
parents:
45375
diff
changeset
|
1069 |
39579
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1070 /* Value is non-zero if SYM is an interned symbol. */ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1071 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1072 #define SYMBOL_INTERNED_P(sym) \ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1073 (XSYMBOL (sym)->interned != SYMBOL_UNINTERNED) |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1074 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1075 /* Value is non-zero if SYM is interned in initial_obarray. */ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1076 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1077 #define SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P(sym) \ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1078 (XSYMBOL (sym)->interned == SYMBOL_INTERNED_IN_INITIAL_OBARRAY) |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1079 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1080 /* Value is non-zero if symbol is considered a constant, i.e. its |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1081 value cannot be changed (there is an exception for keyword symbols, |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1082 whose value can be set to the keyword symbol itself). */ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1083 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1084 #define SYMBOL_CONSTANT_P(sym) XSYMBOL (sym)->constant |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1085 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1086 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
1087 /*********************************************************************** |
25017
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1088 Hash Tables |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1089 ***********************************************************************/ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1090 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1091 /* The structure of a Lisp hash table. */ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1092 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1093 struct Lisp_Hash_Table |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1094 { |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1095 /* Vector fields. The hash table code doesn't refer to these. */ |
85022
96eb42c9e0e3
* window.h (struct window):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85021
diff
changeset
|
1096 EMACS_UINT size; |
25017
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1097 struct Lisp_Vector *vec_next; |
45623
0e92d219e195
(current_column): Now returns float.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
45545
diff
changeset
|
1098 |
25017
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1099 /* Function used to compare keys. */ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1100 Lisp_Object test; |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1101 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1102 /* Nil if table is non-weak. Otherwise a symbol describing the |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1103 weakness of the table. */ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1104 Lisp_Object weak; |
45623
0e92d219e195
(current_column): Now returns float.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
45545
diff
changeset
|
1105 |
25017
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1106 /* When the table is resized, and this is an integer, compute the |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1107 new size by adding this to the old size. If a float, compute the |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1108 new size by multiplying the old size with this factor. */ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1109 Lisp_Object rehash_size; |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1110 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1111 /* Resize hash table when number of entries/ table size is >= this |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1112 ratio, a float. */ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1113 Lisp_Object rehash_threshold; |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1114 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1115 /* Vector of hash codes.. If hash[I] is nil, this means that that |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1116 entry I is unused. */ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1117 Lisp_Object hash; |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1118 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1119 /* Vector used to chain entries. If entry I is free, next[I] is the |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1120 entry number of the next free item. If entry I is non-free, |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1121 next[I] is the index of the next entry in the collision chain. */ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1122 Lisp_Object next; |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1123 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1124 /* Index of first free entry in free list. */ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1125 Lisp_Object next_free; |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1126 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1127 /* Bucket vector. A non-nil entry is the index of the first item in |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1128 a collision chain. This vector's size can be larger than the |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1129 hash table size to reduce collisions. */ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1130 Lisp_Object index; |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1131 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1132 /* User-supplied hash function, or nil. */ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1133 Lisp_Object user_hash_function; |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1134 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1135 /* User-supplied key comparison function, or nil. */ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1136 Lisp_Object user_cmp_function; |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1137 |
85021
a0c901e4e649
* lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85012
diff
changeset
|
1138 /* Only the fields above are traced normally by the GC. The ones below |
108933 | 1139 `count' are special and are either ignored by the GC or traced in |
85021
a0c901e4e649
* lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85012
diff
changeset
|
1140 a special way (e.g. because of weakness). */ |
a0c901e4e649
* lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85012
diff
changeset
|
1141 |
a0c901e4e649
* lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85012
diff
changeset
|
1142 /* Number of key/value entries in the table. */ |
a0c901e4e649
* lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85012
diff
changeset
|
1143 unsigned int count; |
a0c901e4e649
* lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85012
diff
changeset
|
1144 |
a0c901e4e649
* lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85012
diff
changeset
|
1145 /* Vector of keys and values. The key of item I is found at index |
a0c901e4e649
* lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85012
diff
changeset
|
1146 2 * I, the value is found at index 2 * I + 1. |
a0c901e4e649
* lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85012
diff
changeset
|
1147 This is gc_marked specially if the table is weak. */ |
a0c901e4e649
* lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85012
diff
changeset
|
1148 Lisp_Object key_and_value; |
a0c901e4e649
* lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85012
diff
changeset
|
1149 |
81813
32d8fd242bb2
* lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81794
diff
changeset
|
1150 /* Next weak hash table if this is a weak hash table. The head |
32d8fd242bb2
* lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81794
diff
changeset
|
1151 of the list is in weak_hash_tables. */ |
32d8fd242bb2
* lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81794
diff
changeset
|
1152 struct Lisp_Hash_Table *next_weak; |
32d8fd242bb2
* lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81794
diff
changeset
|
1153 |
25017
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1154 /* C function to compare two keys. */ |
109099 | 1155 int (* cmpfn) (struct Lisp_Hash_Table *, Lisp_Object, |
1156 unsigned, Lisp_Object, unsigned); | |
25017
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1157 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1158 /* C function to compute hash code. */ |
109099 | 1159 unsigned (* hashfn) (struct Lisp_Hash_Table *, Lisp_Object); |
25017
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1160 }; |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1161 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1162 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1163 #define XHASH_TABLE(OBJ) \ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1164 ((struct Lisp_Hash_Table *) XPNTR (OBJ)) |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1165 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1166 #define XSET_HASH_TABLE(VAR, PTR) \ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1167 (XSETPSEUDOVECTOR (VAR, PTR, PVEC_HASH_TABLE)) |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1168 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1169 #define HASH_TABLE_P(OBJ) PSEUDOVECTORP (OBJ, PVEC_HASH_TABLE) |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1170 |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1171 #define CHECK_HASH_TABLE(x) \ |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1172 CHECK_TYPE (HASH_TABLE_P (x), Qhash_table_p, x) |
25017
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1173 |
46220
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1174 /* Value is the key part of entry IDX in hash table H. */ |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1175 |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1176 #define HASH_KEY(H, IDX) AREF ((H)->key_and_value, 2 * (IDX)) |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1177 |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1178 /* Value is the value part of entry IDX in hash table H. */ |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1179 |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1180 #define HASH_VALUE(H, IDX) AREF ((H)->key_and_value, 2 * (IDX) + 1) |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1181 |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1182 /* Value is the index of the next entry following the one at IDX |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1183 in hash table H. */ |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1184 |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1185 #define HASH_NEXT(H, IDX) AREF ((H)->next, (IDX)) |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1186 |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1187 /* Value is the hash code computed for entry IDX in hash table H. */ |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1188 |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1189 #define HASH_HASH(H, IDX) AREF ((H)->hash, (IDX)) |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1190 |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1191 /* Value is the index of the element in hash table H that is the |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1192 start of the collision list at index IDX in the index vector of H. */ |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1193 |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1194 #define HASH_INDEX(H, IDX) AREF ((H)->index, (IDX)) |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1195 |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1196 /* Value is the size of hash table H. */ |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1197 |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1198 #define HASH_TABLE_SIZE(H) XVECTOR ((H)->next)->size |
5abad41fb43b
(HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46070
diff
changeset
|
1199 |
25017
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1200 /* Default size for hash tables if not specified. */ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1201 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1202 #define DEFAULT_HASH_SIZE 65 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1203 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1204 /* Default threshold specifying when to resize a hash table. The |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1205 value gives the ratio of current entries in the hash table and the |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1206 size of the hash table. */ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1207 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1208 #define DEFAULT_REHASH_THRESHOLD 0.8 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1209 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1210 /* Default factor by which to increase the size of a hash table. */ |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1211 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1212 #define DEFAULT_REHASH_SIZE 1.5 |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
1213 |
9462
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1214 |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1215 /* These structures are used for various misc types. */ |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1216 |
85328
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85250
diff
changeset
|
1217 struct Lisp_Misc_Any /* Supertype of all Misc types. */ |
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85250
diff
changeset
|
1218 { |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1219 enum Lisp_Misc_Type type : 16; /* = Lisp_Misc_??? */ |
85328
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85250
diff
changeset
|
1220 unsigned gcmarkbit : 1; |
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85250
diff
changeset
|
1221 int spacer : 15; |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1222 /* Make it as long as "Lisp_Free without padding". */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1223 void *fill; |
85328
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85250
diff
changeset
|
1224 }; |
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85250
diff
changeset
|
1225 |
302 | 1226 struct Lisp_Marker |
12890
2a1edeeb13fb
(struct Lisp_Marker): Make insertion_type an unsigned int.
Richard M. Stallman <rms@gnu.org>
parents:
12731
diff
changeset
|
1227 { |
91727
b2df1fe6ce6d
(struct Lisp_Misc_Any, struct Lisp_Marker)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91720
diff
changeset
|
1228 enum Lisp_Misc_Type type : 16; /* = Lisp_Misc_Marker */ |
51657
7fb427e8d984
(struct interval, struct Lisp_Symbol, struct Lisp_Free)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51167
diff
changeset
|
1229 unsigned gcmarkbit : 1; |
91343
347746964570
(struct Lisp_Marker): New member need_adjustment.
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
1230 int spacer : 13; |
347746964570
(struct Lisp_Marker): New member need_adjustment.
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
1231 /* This flag is temporarily used in the functions |
347746964570
(struct Lisp_Marker): New member need_adjustment.
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
1232 decode/encode_coding_object to record that the marker position |
347746964570
(struct Lisp_Marker): New member need_adjustment.
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
1233 must be adjusted after the conversion. */ |
347746964570
(struct Lisp_Marker): New member need_adjustment.
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
1234 unsigned int need_adjustment : 1; |
12890
2a1edeeb13fb
(struct Lisp_Marker): Make insertion_type an unsigned int.
Richard M. Stallman <rms@gnu.org>
parents:
12731
diff
changeset
|
1235 /* 1 means normal insertion at the marker's position |
2a1edeeb13fb
(struct Lisp_Marker): Make insertion_type an unsigned int.
Richard M. Stallman <rms@gnu.org>
parents:
12731
diff
changeset
|
1236 leaves the marker after the inserted text. */ |
2a1edeeb13fb
(struct Lisp_Marker): Make insertion_type an unsigned int.
Richard M. Stallman <rms@gnu.org>
parents:
12731
diff
changeset
|
1237 unsigned int insertion_type : 1; |
84979
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
1238 /* This is the buffer that the marker points into, or 0 if it points nowhere. |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
1239 Note: a chain of markers can contain markers pointing into different |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
1240 buffers (the chain is per buffer_text rather than per buffer, so it's |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
1241 shared between indirect buffers). */ |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
1242 /* This is used for (other than NULL-checking): |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
1243 - Fmarker_buffer |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
1244 - Fset_marker: check eq(oldbuf, newbuf) to avoid unchain+rechain. |
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
1245 - unchain_marker: to find the list from which to unchain. |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1246 - Fkill_buffer: to only unchain the markers of current indirect buffer. |
84979
79d85dce25a5
(DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84804
diff
changeset
|
1247 */ |
12890
2a1edeeb13fb
(struct Lisp_Marker): Make insertion_type an unsigned int.
Richard M. Stallman <rms@gnu.org>
parents:
12731
diff
changeset
|
1248 struct buffer *buffer; |
20559
38941faa1564
(struct Lisp_Marker): New field `charpos'.
Richard M. Stallman <rms@gnu.org>
parents:
20499
diff
changeset
|
1249 |
38941faa1564
(struct Lisp_Marker): New field `charpos'.
Richard M. Stallman <rms@gnu.org>
parents:
20499
diff
changeset
|
1250 /* The remaining fields are meaningless in a marker that |
38941faa1564
(struct Lisp_Marker): New field `charpos'.
Richard M. Stallman <rms@gnu.org>
parents:
20499
diff
changeset
|
1251 does not point anywhere. */ |
38941faa1564
(struct Lisp_Marker): New field `charpos'.
Richard M. Stallman <rms@gnu.org>
parents:
20499
diff
changeset
|
1252 |
38941faa1564
(struct Lisp_Marker): New field `charpos'.
Richard M. Stallman <rms@gnu.org>
parents:
20499
diff
changeset
|
1253 /* For markers that point somewhere, |
38941faa1564
(struct Lisp_Marker): New field `charpos'.
Richard M. Stallman <rms@gnu.org>
parents:
20499
diff
changeset
|
1254 this is used to chain of all the markers in a given buffer. */ |
85011
1d35aa875508
* buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84979
diff
changeset
|
1255 /* We could remove it and use an array in buffer_text instead. |
1d35aa875508
* buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84979
diff
changeset
|
1256 That would also allow to preserve it ordered. */ |
51666
7181f5ced81c
(unchain_marker): Lisp_Object arg => Lisp_Marker.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51657
diff
changeset
|
1257 struct Lisp_Marker *next; |
20559
38941faa1564
(struct Lisp_Marker): New field `charpos'.
Richard M. Stallman <rms@gnu.org>
parents:
20499
diff
changeset
|
1258 /* This is the char position where the marker points. */ |
51858
bf6232373c39
(VALBITS): Define in terms of GCTYPEBITS.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51833
diff
changeset
|
1259 EMACS_INT charpos; |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1260 /* This is the byte position. |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1261 It's mostly used as a charpos<->bytepos cache (i.e. it's not directly |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1262 used to implement the functionality of markers, but rather to (ab)use |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1263 markers as a cache for char<->byte mappings). */ |
51858
bf6232373c39
(VALBITS): Define in terms of GCTYPEBITS.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51833
diff
changeset
|
1264 EMACS_INT bytepos; |
12890
2a1edeeb13fb
(struct Lisp_Marker): Make insertion_type an unsigned int.
Richard M. Stallman <rms@gnu.org>
parents:
12731
diff
changeset
|
1265 }; |
302 | 1266 |
9462
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1267 /* Forwarding pointer to an int variable. |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1268 This is allowed only in the value cell of a symbol, |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1269 and it means that the symbol's value really lives in the |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1270 specified int variable. */ |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1271 struct Lisp_Intfwd |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1272 { |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1273 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Int */ |
43713
f92c4d87863a
Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43699
diff
changeset
|
1274 EMACS_INT *intvar; |
9462
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1275 }; |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1276 |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1277 /* Boolean forwarding pointer to an int variable. |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1278 This is like Lisp_Intfwd except that the ostensible |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1279 "value" of the symbol is t if the int variable is nonzero, |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1280 nil if it is zero. */ |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1281 struct Lisp_Boolfwd |
9435
3a157cdf395c
(Lisp_Misc): new type code, replacing Lisp_Marker (and soon to replace other
Karl Heuer <kwzh@gnu.org>
parents:
9392
diff
changeset
|
1282 { |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1283 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Bool */ |
9462
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1284 int *boolvar; |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1285 }; |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1286 |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1287 /* Forwarding pointer to a Lisp_Object variable. |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1288 This is allowed only in the value cell of a symbol, |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1289 and it means that the symbol's value really lives in the |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1290 specified variable. */ |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1291 struct Lisp_Objfwd |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1292 { |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1293 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Obj */ |
9462
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1294 Lisp_Object *objvar; |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1295 }; |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1296 |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1297 /* Like Lisp_Objfwd except that value lives in a slot in the |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1298 current buffer. Value is byte index of slot within buffer. */ |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1299 struct Lisp_Buffer_Objfwd |
3601bf7327b2
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Intfwd,
Karl Heuer <kwzh@gnu.org>
parents:
9435
diff
changeset
|
1300 { |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1301 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Buffer_Obj */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1302 int offset; |
86285
59344cb482f3
* lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
86163
diff
changeset
|
1303 Lisp_Object slottype; /* Qnil, Lisp_Int, Lisp_Symbol, or Lisp_String. */ |
9435
3a157cdf395c
(Lisp_Misc): new type code, replacing Lisp_Marker (and soon to replace other
Karl Heuer <kwzh@gnu.org>
parents:
9392
diff
changeset
|
1304 }; |
3a157cdf395c
(Lisp_Misc): new type code, replacing Lisp_Marker (and soon to replace other
Karl Heuer <kwzh@gnu.org>
parents:
9392
diff
changeset
|
1305 |
27779 | 1306 /* struct Lisp_Buffer_Local_Value is used in a symbol value cell when |
1307 the symbol has buffer-local or frame-local bindings. (Exception: | |
1308 some buffer-local variables are built-in, with their values stored | |
1309 in the buffer structure itself. They are handled differently, | |
1310 using struct Lisp_Buffer_Objfwd.) | |
1311 | |
1312 The `realvalue' slot holds the variable's current value, or a | |
1313 forwarding pointer to where that value is kept. This value is the | |
1314 one that corresponds to the loaded binding. To read or set the | |
1315 variable, you must first make sure the right binding is loaded; | |
1316 then you can access the value in (or through) `realvalue'. | |
45623
0e92d219e195
(current_column): Now returns float.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
45545
diff
changeset
|
1317 |
27779 | 1318 `buffer' and `frame' are the buffer and frame for which the loaded |
1319 binding was found. If those have changed, to make sure the right | |
1320 binding is loaded it is necessary to find which binding goes with | |
1321 the current buffer and selected frame, then load it. To load it, | |
1322 first unload the previous binding, then copy the value of the new | |
1323 binding into `realvalue' (or through it). Also update | |
1324 LOADED-BINDING to point to the newly loaded binding. | |
9891
f4a53f86853d
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Buffer_Local_Value and
Karl Heuer <kwzh@gnu.org>
parents:
9885
diff
changeset
|
1325 |
108933 | 1326 `local_if_set' indicates that merely setting the variable creates a |
1327 local binding for the current buffer. Otherwise the latter, setting | |
1328 the variable does not do that; only make-local-variable does that. */ | |
27779 | 1329 |
9891
f4a53f86853d
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Buffer_Local_Value and
Karl Heuer <kwzh@gnu.org>
parents:
9885
diff
changeset
|
1330 struct Lisp_Buffer_Local_Value |
f4a53f86853d
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Buffer_Local_Value and
Karl Heuer <kwzh@gnu.org>
parents:
9885
diff
changeset
|
1331 { |
85328
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85250
diff
changeset
|
1332 /* 1 means that merely setting the variable creates a local |
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85250
diff
changeset
|
1333 binding for the current buffer */ |
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85250
diff
changeset
|
1334 unsigned int local_if_set : 1; |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1335 /* 1 means this variable can have frame-local bindings, otherwise, it is |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1336 can have buffer-local bindings. The two cannot be combined. */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1337 unsigned int frame_local : 1; |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1338 /* 1 means that the binding now loaded was found. |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1339 Presumably equivalent to (defcell!=valcell) */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1340 unsigned int found : 1; |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1341 /* If non-NULL, a forwarding to the C var where it should also be set. */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1342 union Lisp_Fwd *fwd; /* Should never be (Buffer|Kboard)_Objfwd. */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1343 /* The buffer or frame for which the loaded binding was found. */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1344 Lisp_Object where; |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1345 /* A cons cell that holds the default value. It has the form |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1346 (SYMBOL . DEFAULT-VALUE). */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1347 Lisp_Object defcell; |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1348 /* The cons cell from `where's parameter alist. |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1349 It always has the form (SYMBOL . VALUE) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1350 Note that if `forward' is non-nil, VALUE may be out of date. |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1351 Also if the currently loaded binding is the default binding, then |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1352 this is `eq'ual to defcell. */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1353 Lisp_Object valcell; |
9891
f4a53f86853d
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Buffer_Local_Value and
Karl Heuer <kwzh@gnu.org>
parents:
9885
diff
changeset
|
1354 }; |
f4a53f86853d
(enum Lisp_Misc_Type): Add new enumerations Lisp_Misc_Buffer_Local_Value and
Karl Heuer <kwzh@gnu.org>
parents:
9885
diff
changeset
|
1355 |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1356 #define BLV_FOUND(blv) \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1357 (eassert ((blv)->found == !EQ ((blv)->defcell, (blv)->valcell)), (blv)->found) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1358 #define SET_BLV_FOUND(blv, v) \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1359 (eassert ((v) == !EQ ((blv)->defcell, (blv)->valcell)), (blv)->found = (v)) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1360 |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1361 #define BLV_VALUE(blv) (XCDR ((blv)->valcell)) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1362 #define SET_BLV_VALUE(blv, v) (XSETCDR ((blv)->valcell, v)) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1363 |
51858
bf6232373c39
(VALBITS): Define in terms of GCTYPEBITS.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51833
diff
changeset
|
1364 /* START and END are markers in the overlay's buffer, and |
9924
594e838f4567
(enum Lisp_Misc_Type): Add new enumeration Lisp_Misc_Overlay.
Karl Heuer <kwzh@gnu.org>
parents:
9904
diff
changeset
|
1365 PLIST is the overlay's property list. */ |
594e838f4567
(enum Lisp_Misc_Type): Add new enumeration Lisp_Misc_Overlay.
Karl Heuer <kwzh@gnu.org>
parents:
9904
diff
changeset
|
1366 struct Lisp_Overlay |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1367 /* An overlay's real data content is: |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1368 - plist |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1369 - buffer |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1370 - insertion type of both ends |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1371 - start & start_byte |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1372 - end & end_byte |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1373 - next (singly linked list of overlays). |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1374 - start_next and end_next (singly linked list of markers). |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1375 I.e. 9words plus 2 bits, 3words of which are for external linked lists. |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1376 */ |
9924
594e838f4567
(enum Lisp_Misc_Type): Add new enumeration Lisp_Misc_Overlay.
Karl Heuer <kwzh@gnu.org>
parents:
9904
diff
changeset
|
1377 { |
91727
b2df1fe6ce6d
(struct Lisp_Misc_Any, struct Lisp_Marker)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91720
diff
changeset
|
1378 enum Lisp_Misc_Type type : 16; /* = Lisp_Misc_Overlay */ |
51657
7fb427e8d984
(struct interval, struct Lisp_Symbol, struct Lisp_Free)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51167
diff
changeset
|
1379 unsigned gcmarkbit : 1; |
7fb427e8d984
(struct interval, struct Lisp_Symbol, struct Lisp_Free)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51167
diff
changeset
|
1380 int spacer : 15; |
51833
a52679a2aae5
(struct Lisp_Overlay): New field `next'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51772
diff
changeset
|
1381 struct Lisp_Overlay *next; |
9924
594e838f4567
(enum Lisp_Misc_Type): Add new enumeration Lisp_Misc_Overlay.
Karl Heuer <kwzh@gnu.org>
parents:
9904
diff
changeset
|
1382 Lisp_Object start, end, plist; |
594e838f4567
(enum Lisp_Misc_Type): Add new enumeration Lisp_Misc_Overlay.
Karl Heuer <kwzh@gnu.org>
parents:
9904
diff
changeset
|
1383 }; |
10387
40988c371fca
(struct Lisp_Free, struct Lisp_Marker, etc.):
Richard M. Stallman <rms@gnu.org>
parents:
10339
diff
changeset
|
1384 |
10580
09fcb080e537
(enum Lisp_Misc_Type): New enumeration Lisp_Misc_Display_Local.
Karl Heuer <kwzh@gnu.org>
parents:
10578
diff
changeset
|
1385 /* Like Lisp_Objfwd except that value lives in a slot in the |
11012
31d88266ed12
(struct KBOARD, MULTI_KBOARD, current_kboard, all_kboards,
Karl Heuer <kwzh@gnu.org>
parents:
10944
diff
changeset
|
1386 current kboard. */ |
31d88266ed12
(struct KBOARD, MULTI_KBOARD, current_kboard, all_kboards,
Karl Heuer <kwzh@gnu.org>
parents:
10944
diff
changeset
|
1387 struct Lisp_Kboard_Objfwd |
10580
09fcb080e537
(enum Lisp_Misc_Type): New enumeration Lisp_Misc_Display_Local.
Karl Heuer <kwzh@gnu.org>
parents:
10578
diff
changeset
|
1388 { |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1389 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Kboard_Obj */ |
10580
09fcb080e537
(enum Lisp_Misc_Type): New enumeration Lisp_Misc_Display_Local.
Karl Heuer <kwzh@gnu.org>
parents:
10578
diff
changeset
|
1390 int offset; |
09fcb080e537
(enum Lisp_Misc_Type): New enumeration Lisp_Misc_Display_Local.
Karl Heuer <kwzh@gnu.org>
parents:
10578
diff
changeset
|
1391 }; |
09fcb080e537
(enum Lisp_Misc_Type): New enumeration Lisp_Misc_Display_Local.
Karl Heuer <kwzh@gnu.org>
parents:
10578
diff
changeset
|
1392 |
49056
88f14a14e005
New misc type Lisp_Save_Value.
Richard M. Stallman <rms@gnu.org>
parents:
48540
diff
changeset
|
1393 /* Hold a C pointer for later use. |
88f14a14e005
New misc type Lisp_Save_Value.
Richard M. Stallman <rms@gnu.org>
parents:
48540
diff
changeset
|
1394 This type of object is used in the arg to record_unwind_protect. */ |
88f14a14e005
New misc type Lisp_Save_Value.
Richard M. Stallman <rms@gnu.org>
parents:
48540
diff
changeset
|
1395 struct Lisp_Save_Value |
88f14a14e005
New misc type Lisp_Save_Value.
Richard M. Stallman <rms@gnu.org>
parents:
48540
diff
changeset
|
1396 { |
91727
b2df1fe6ce6d
(struct Lisp_Misc_Any, struct Lisp_Marker)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91720
diff
changeset
|
1397 enum Lisp_Misc_Type type : 16; /* = Lisp_Misc_Save_Value */ |
51657
7fb427e8d984
(struct interval, struct Lisp_Symbol, struct Lisp_Free)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51167
diff
changeset
|
1398 unsigned gcmarkbit : 1; |
56204
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
1399 int spacer : 14; |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
1400 /* If DOGC is set, POINTER is the address of a memory |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
1401 area containing INTEGER potential Lisp_Objects. */ |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
1402 unsigned int dogc : 1; |
49056
88f14a14e005
New misc type Lisp_Save_Value.
Richard M. Stallman <rms@gnu.org>
parents:
48540
diff
changeset
|
1403 void *pointer; |
88f14a14e005
New misc type Lisp_Save_Value.
Richard M. Stallman <rms@gnu.org>
parents:
48540
diff
changeset
|
1404 int integer; |
88f14a14e005
New misc type Lisp_Save_Value.
Richard M. Stallman <rms@gnu.org>
parents:
48540
diff
changeset
|
1405 }; |
88f14a14e005
New misc type Lisp_Save_Value.
Richard M. Stallman <rms@gnu.org>
parents:
48540
diff
changeset
|
1406 |
10387
40988c371fca
(struct Lisp_Free, struct Lisp_Marker, etc.):
Richard M. Stallman <rms@gnu.org>
parents:
10339
diff
changeset
|
1407 |
53088
63a8b584e971
(VALMASK): Only define for non-union type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53001
diff
changeset
|
1408 /* A miscellaneous object, when it's on the free list. */ |
63a8b584e971
(VALMASK): Only define for non-union type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53001
diff
changeset
|
1409 struct Lisp_Free |
63a8b584e971
(VALMASK): Only define for non-union type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53001
diff
changeset
|
1410 { |
91727
b2df1fe6ce6d
(struct Lisp_Misc_Any, struct Lisp_Marker)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91720
diff
changeset
|
1411 enum Lisp_Misc_Type type : 16; /* = Lisp_Misc_Free */ |
53088
63a8b584e971
(VALMASK): Only define for non-union type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53001
diff
changeset
|
1412 unsigned gcmarkbit : 1; |
63a8b584e971
(VALMASK): Only define for non-union type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53001
diff
changeset
|
1413 int spacer : 15; |
63a8b584e971
(VALMASK): Only define for non-union type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53001
diff
changeset
|
1414 union Lisp_Misc *chain; |
53654
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
1415 #ifdef USE_LSB_TAG |
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
1416 /* Try to make sure that sizeof(Lisp_Misc) preserves TYPEBITS-alignment. |
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
1417 This assumes that Lisp_Marker is the largest of the alternatives and |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1418 that Lisp_Misc_Any has the same size as "Lisp_Free w/o padding". */ |
53654
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
1419 char padding[((((sizeof (struct Lisp_Marker) - 1) >> GCTYPEBITS) + 1) |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1420 << GCTYPEBITS) - sizeof (struct Lisp_Misc_Any)]; |
53654
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
1421 #endif |
53088
63a8b584e971
(VALMASK): Only define for non-union type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53001
diff
changeset
|
1422 }; |
63a8b584e971
(VALMASK): Only define for non-union type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53001
diff
changeset
|
1423 |
11335
78eda0ee4cba
(XMISCTYPE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
11204
diff
changeset
|
1424 /* To get the type field of a union Lisp_Misc, use XMISCTYPE. |
78eda0ee4cba
(XMISCTYPE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
11204
diff
changeset
|
1425 It uses one of these struct subtypes to get the type field. */ |
78eda0ee4cba
(XMISCTYPE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
11204
diff
changeset
|
1426 |
9435
3a157cdf395c
(Lisp_Misc): new type code, replacing Lisp_Marker (and soon to replace other
Karl Heuer <kwzh@gnu.org>
parents:
9392
diff
changeset
|
1427 union Lisp_Misc |
3a157cdf395c
(Lisp_Misc): new type code, replacing Lisp_Marker (and soon to replace other
Karl Heuer <kwzh@gnu.org>
parents:
9392
diff
changeset
|
1428 { |
85328
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85250
diff
changeset
|
1429 struct Lisp_Misc_Any u_any; /* Supertype of all Misc types. */ |
d0d527210b0c
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85250
diff
changeset
|
1430 struct Lisp_Free u_free; /* Includes padding to force alignment. */ |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1431 struct Lisp_Marker u_marker; /* 5 */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1432 struct Lisp_Overlay u_overlay; /* 5 */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1433 struct Lisp_Save_Value u_save_value; /* 3 */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1434 }; |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1435 |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1436 union Lisp_Fwd |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1437 { |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1438 struct Lisp_Intfwd u_intfwd; /* 2 */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1439 struct Lisp_Boolfwd u_boolfwd; /* 2 */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1440 struct Lisp_Objfwd u_objfwd; /* 2 */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1441 struct Lisp_Buffer_Objfwd u_buffer_objfwd; /* 2 */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1442 struct Lisp_Kboard_Objfwd u_kboard_objfwd; /* 2 */ |
9435
3a157cdf395c
(Lisp_Misc): new type code, replacing Lisp_Marker (and soon to replace other
Karl Heuer <kwzh@gnu.org>
parents:
9392
diff
changeset
|
1443 }; |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1444 |
27727
9400865ec7cf
Remove `LISP_FLOAT_TYPE' and `standalone'.
Gerd Moellmann <gerd@gnu.org>
parents:
27427
diff
changeset
|
1445 /* Lisp floating point type */ |
302 | 1446 struct Lisp_Float |
1447 { | |
66888
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
1448 union |
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
1449 { |
25421
65a7e9c02d4f
(struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change names of structure
Ken Raeburn <raeburn@raeburn.org>
parents:
25392
diff
changeset
|
1450 #ifdef HIDE_LISP_IMPLEMENTATION |
66888
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
1451 double data_; |
25421
65a7e9c02d4f
(struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change names of structure
Ken Raeburn <raeburn@raeburn.org>
parents:
25392
diff
changeset
|
1452 #else |
66888
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
1453 double data; |
25421
65a7e9c02d4f
(struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change names of structure
Ken Raeburn <raeburn@raeburn.org>
parents:
25392
diff
changeset
|
1454 #endif |
66888
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
1455 struct Lisp_Float *chain; |
b991cdef1a8d
(struct Lisp_Cons): Make cdr a union.
Andreas Schwab <schwab@suse.de>
parents:
66778
diff
changeset
|
1456 } u; |
302 | 1457 }; |
25421
65a7e9c02d4f
(struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change names of structure
Ken Raeburn <raeburn@raeburn.org>
parents:
25392
diff
changeset
|
1458 |
65a7e9c02d4f
(struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change names of structure
Ken Raeburn <raeburn@raeburn.org>
parents:
25392
diff
changeset
|
1459 #ifdef HIDE_LISP_IMPLEMENTATION |
108604
3b0bab58a95f
* lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (bug#5916)
Ken Raeburn <raeburn@raeburn.org>
parents:
108375
diff
changeset
|
1460 #define XFLOAT_DATA(f) (0 ? XFLOAT (f)->u.data_ : XFLOAT (f)->u.data_) |
25421
65a7e9c02d4f
(struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change names of structure
Ken Raeburn <raeburn@raeburn.org>
parents:
25392
diff
changeset
|
1461 #else |
108604
3b0bab58a95f
* lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (bug#5916)
Ken Raeburn <raeburn@raeburn.org>
parents:
108375
diff
changeset
|
1462 #define XFLOAT_DATA(f) (0 ? XFLOAT (f)->u.data : XFLOAT (f)->u.data) |
104313
73f76307d49b
* lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
Ken Raeburn <raeburn@raeburn.org>
parents:
104284
diff
changeset
|
1463 /* This should be used only in alloc.c, which always disables |
73f76307d49b
* lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
Ken Raeburn <raeburn@raeburn.org>
parents:
104284
diff
changeset
|
1464 HIDE_LISP_IMPLEMENTATION. */ |
73f76307d49b
* lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
Ken Raeburn <raeburn@raeburn.org>
parents:
104284
diff
changeset
|
1465 #define XFLOAT_INIT(f,n) (XFLOAT (f)->u.data = (n)) |
25421
65a7e9c02d4f
(struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change names of structure
Ken Raeburn <raeburn@raeburn.org>
parents:
25392
diff
changeset
|
1466 #endif |
302 | 1467 |
1468 /* A character, declared with the following typedef, is a member | |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
1469 of some character set associated with the current buffer. */ |
3324
b0e1cf2177fc
(UCHAR): Don't define if _UCHAR_T.
Richard M. Stallman <rms@gnu.org>
parents:
2979
diff
changeset
|
1470 #ifndef _UCHAR_T /* Protect against something in ctab.h on AIX. */ |
b0e1cf2177fc
(UCHAR): Don't define if _UCHAR_T.
Richard M. Stallman <rms@gnu.org>
parents:
2979
diff
changeset
|
1471 #define _UCHAR_T |
302 | 1472 typedef unsigned char UCHAR; |
3324
b0e1cf2177fc
(UCHAR): Don't define if _UCHAR_T.
Richard M. Stallman <rms@gnu.org>
parents:
2979
diff
changeset
|
1473 #endif |
302 | 1474 |
1475 /* Meanings of slots in a Lisp_Compiled: */ | |
1476 | |
1477 #define COMPILED_ARGLIST 0 | |
1478 #define COMPILED_BYTECODE 1 | |
1479 #define COMPILED_CONSTANTS 2 | |
1480 #define COMPILED_STACK_DEPTH 3 | |
1481 #define COMPILED_DOC_STRING 4 | |
1482 #define COMPILED_INTERACTIVE 5 | |
2014
637d9ebe3f50
(CHAR_META, CHAR_SHIFT, CHAR_CTL): New macros.
Richard M. Stallman <rms@gnu.org>
parents:
1990
diff
changeset
|
1483 |
2662
5b92bdfb7fbb
* lisp.h (CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT, CHAR_CTL,
Jim Blandy <jimb@redhat.com>
parents:
2653
diff
changeset
|
1484 /* Flag bits in a character. These also get used in termhooks.h. |
5b92bdfb7fbb
* lisp.h (CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT, CHAR_CTL,
Jim Blandy <jimb@redhat.com>
parents:
2653
diff
changeset
|
1485 Richard Stallman <rms@gnu.ai.mit.edu> thinks that MULE |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1486 (MUlti-Lingual Emacs) might need 22 bits for the character value |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1487 itself, so we probably shouldn't use any bits lower than 0x0400000. */ |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1488 #define CHAR_ALT (0x0400000) |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1489 #define CHAR_SUPER (0x0800000) |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1490 #define CHAR_HYPER (0x1000000) |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1491 #define CHAR_SHIFT (0x2000000) |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1492 #define CHAR_CTL (0x4000000) |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1493 #define CHAR_META (0x8000000) |
2728
93c9529b2b69
* config.h.in: Remove mention of GLYPH datatype; that shouldn't be
Jim Blandy <jimb@redhat.com>
parents:
2662
diff
changeset
|
1494 |
25252
fc1b2b29e66d
(CHAR_MODIFIER_MASK): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25017
diff
changeset
|
1495 #define CHAR_MODIFIER_MASK \ |
fc1b2b29e66d
(CHAR_MODIFIER_MASK): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25017
diff
changeset
|
1496 (CHAR_ALT | CHAR_SUPER | CHAR_HYPER | CHAR_SHIFT | CHAR_CTL | CHAR_META) |
fc1b2b29e66d
(CHAR_MODIFIER_MASK): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25017
diff
changeset
|
1497 |
fc1b2b29e66d
(CHAR_MODIFIER_MASK): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25017
diff
changeset
|
1498 |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
1499 /* Actually, the current Emacs uses 22 bits for the character value |
17037
af637c0168ad
(CHARACTERBITS, GLYPH_MASK_REV_DIR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
16913
diff
changeset
|
1500 itself. */ |
89688
0d74a1b6efa9
(CHARACTERBITS): Define as 22.
Kenichi Handa <handa@m17n.org>
parents:
89668
diff
changeset
|
1501 #define CHARACTERBITS 22 |
17037
af637c0168ad
(CHARACTERBITS, GLYPH_MASK_REV_DIR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
16913
diff
changeset
|
1502 |
26479
cf75e5b634ec
(KEY_DESCRIPTION_SIZE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
26404
diff
changeset
|
1503 /* The maximum byte size consumed by push_key_description. |
cf75e5b634ec
(KEY_DESCRIPTION_SIZE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
26404
diff
changeset
|
1504 All callers should assure that at least this size of memory is |
cf75e5b634ec
(KEY_DESCRIPTION_SIZE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
26404
diff
changeset
|
1505 allocated at the place pointed by the second argument. |
cf75e5b634ec
(KEY_DESCRIPTION_SIZE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
26404
diff
changeset
|
1506 |
87741 | 1507 There are 6 modifiers, each consumes 2 chars. |
26479
cf75e5b634ec
(KEY_DESCRIPTION_SIZE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
26404
diff
changeset
|
1508 The octal form of a character code consumes |
cf75e5b634ec
(KEY_DESCRIPTION_SIZE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
26404
diff
changeset
|
1509 (1 + CHARACTERBITS / 3 + 1) chars (including backslash at the head). |
cf75e5b634ec
(KEY_DESCRIPTION_SIZE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
26404
diff
changeset
|
1510 We need one more byte for string terminator `\0'. */ |
cf75e5b634ec
(KEY_DESCRIPTION_SIZE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
26404
diff
changeset
|
1511 #define KEY_DESCRIPTION_SIZE ((2 * 6) + 1 + (CHARACTERBITS / 3) + 1 + 1) |
cf75e5b634ec
(KEY_DESCRIPTION_SIZE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
26404
diff
changeset
|
1512 |
2728
93c9529b2b69
* config.h.in: Remove mention of GLYPH datatype; that shouldn't be
Jim Blandy <jimb@redhat.com>
parents:
2662
diff
changeset
|
1513 |
92279
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1514 /* The glyph datatype, used to represent characters on the display. |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1515 It consists of a char code and a face id. */ |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1516 |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1517 typedef struct { |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1518 int ch; |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1519 int face_id; |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1520 } GLYPH; |
2728
93c9529b2b69
* config.h.in: Remove mention of GLYPH datatype; that shouldn't be
Jim Blandy <jimb@redhat.com>
parents:
2662
diff
changeset
|
1521 |
93c9529b2b69
* config.h.in: Remove mention of GLYPH datatype; that shouldn't be
Jim Blandy <jimb@redhat.com>
parents:
2662
diff
changeset
|
1522 /* Return a glyph's character code. */ |
92279
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1523 #define GLYPH_CHAR(glyph) ((glyph).ch) |
2728
93c9529b2b69
* config.h.in: Remove mention of GLYPH datatype; that shouldn't be
Jim Blandy <jimb@redhat.com>
parents:
2662
diff
changeset
|
1524 |
93c9529b2b69
* config.h.in: Remove mention of GLYPH datatype; that shouldn't be
Jim Blandy <jimb@redhat.com>
parents:
2662
diff
changeset
|
1525 /* Return a glyph's face ID. */ |
92279
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1526 #define GLYPH_FACE(glyph) ((glyph).face_id) |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1527 |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1528 #define SET_GLYPH_CHAR(glyph, char) ((glyph).ch = (char)) |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1529 #define SET_GLYPH_FACE(glyph, face) ((glyph).face_id = (face)) |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1530 #define SET_GLYPH(glyph, char, face) ((glyph).ch = (char), (glyph).face_id = (face)) |
2728
93c9529b2b69
* config.h.in: Remove mention of GLYPH datatype; that shouldn't be
Jim Blandy <jimb@redhat.com>
parents:
2662
diff
changeset
|
1531 |
78501 | 1532 /* Return 1 if GLYPH contains valid character code. */ |
92279
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1533 #define GLYPH_CHAR_VALID_P(glyph) CHAR_VALID_P (GLYPH_CHAR (glyph), 1) |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1534 |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1535 |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1536 /* Glyph Code from a display vector may either be an integer which |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1537 encodes a char code in the lower CHARACTERBITS bits and a (very small) |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1538 face-id in the upper bits, or it may be a cons (CHAR . FACE-ID). */ |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1539 |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1540 #define GLYPH_CODE_CHAR(gc) \ |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1541 (CONSP (gc) ? XINT (XCAR (gc)) : INTEGERP (gc) ? (XINT (gc) & ((1 << CHARACTERBITS)-1)) : 0) |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1542 |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1543 #define GLYPH_CODE_FACE(gc) \ |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1544 (CONSP (gc) ? XINT (XCDR (gc)) : INTEGERP (gc) ? (XINT (gc) >> CHARACTERBITS) : DEFAULT_FACE_ID) |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1545 |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1546 /* Return 1 if glyph code from display vector contains valid character code. */ |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1547 #define GLYPH_CODE_CHAR_VALID_P(gc) CHAR_VALID_P (GLYPH_CODE_CHAR (gc), 1) |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1548 |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1549 #define GLYPH_CODE_P(gc) ((CONSP (gc) && INTEGERP (XCAR (gc)) && INTEGERP (XCDR (gc))) || INTEGERP (gc)) |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1550 |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1551 /* Only called when GLYPH_CODE_P (gc) is true. */ |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1552 #define SET_GLYPH_FROM_GLYPH_CODE(glyph, gc) \ |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1553 do \ |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1554 { \ |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1555 if (CONSP (gc)) \ |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1556 SET_GLYPH (glyph, XINT (XCAR (gc)), XINT (XCDR (gc))); \ |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1557 else \ |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1558 SET_GLYPH (glyph, (XINT (gc) & ((1 << CHARACTERBITS)-1)), \ |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1559 (XINT (gc) >> CHARACTERBITS)); \ |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1560 } \ |
14182a83bd23
(GLYPH): Change type from int to struct with separate char
Kim F. Storm <storm@cua.dk>
parents:
92108
diff
changeset
|
1561 while (0) |
17188
e38cc84db8ab
(CHAR_TABLE_ORDINARY_SLOTS): Change to 384 (== 256 + 128).
Kenichi Handa <handa@m17n.org>
parents:
17141
diff
changeset
|
1562 |
6277
444351051761
(GLYPH_MODE_LINE_FACE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
6243
diff
changeset
|
1563 /* The ID of the mode line highlighting face. */ |
444351051761
(GLYPH_MODE_LINE_FACE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
6243
diff
changeset
|
1564 #define GLYPH_MODE_LINE_FACE 1 |
302 | 1565 |
111340
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1566 /* Structure to hold mouse highlight data. This is here because other |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1567 header files need it for defining struct x_output etc. */ |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1568 typedef struct { |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1569 /* These variables describe the range of text currently shown in its |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1570 mouse-face, together with the window they apply to. As long as |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1571 the mouse stays within this range, we need not redraw anything on |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1572 its account. Rows and columns are glyph matrix positions in |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1573 MOUSE_FACE_WINDOW. */ |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1574 int mouse_face_beg_row, mouse_face_beg_col; |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1575 int mouse_face_beg_x, mouse_face_beg_y; |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1576 int mouse_face_end_row, mouse_face_end_col; |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1577 int mouse_face_end_x, mouse_face_end_y; |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1578 int mouse_face_past_end; |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1579 Lisp_Object mouse_face_window; |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1580 int mouse_face_face_id; |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1581 Lisp_Object mouse_face_overlay; |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1582 |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1583 /* 1 if a mouse motion event came and we didn't handle it right away because |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1584 gc was in progress. */ |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1585 int mouse_face_deferred_gc; |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1586 |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1587 /* FRAME and X, Y position of mouse when last checked for |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1588 highlighting. X and Y can be negative or out of range for the frame. */ |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1589 struct frame *mouse_face_mouse_frame; |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1590 int mouse_face_mouse_x, mouse_face_mouse_y; |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1591 |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1592 /* Nonzero means defer mouse-motion highlighting. */ |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1593 int mouse_face_defer; |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1594 |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1595 /* Nonzero means that the mouse highlight should not be shown. */ |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1596 int mouse_face_hidden; |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1597 |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1598 int mouse_face_image_state; |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1599 } Mouse_HLInfo; |
2186ab0af4a5
Start redesigning portable mouse highlight. Not compiled.
Eli Zaretskii <eliz@gnu.org>
parents:
110967
diff
changeset
|
1600 |
302 | 1601 /* Data type checking */ |
1602 | |
58264
e8156cc4a58f
(NILP): Use EQ rather than XFASTINT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58238
diff
changeset
|
1603 #define NILP(x) EQ (x, Qnil) |
621 | 1604 |
9150
642bbaf7c3fc
(BOOLFWDP, INTERNALP, INTFWDP, OBJFWDP, INTERNAL_STREAMP, BUFFER_LOCAL_VALUEP,
Karl Heuer <kwzh@gnu.org>
parents:
9099
diff
changeset
|
1605 #define NUMBERP(x) (INTEGERP (x) || FLOATP (x)) |
9943 | 1606 #define NATNUMP(x) (INTEGERP (x) && XINT (x) >= 0) |
302 | 1607 |
105885
8103235103a7
Let integers use up 2 tags to give them one extra bit and double their range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105872
diff
changeset
|
1608 #define INTEGERP(x) (LISP_INT_TAG_P (XTYPE ((x)))) |
2187
12b50e8d3b1c
(INTEGERP, SYMBOLP, MARKERP, STRINGP, VECTORP): New macros.
Richard M. Stallman <rms@gnu.org>
parents:
2155
diff
changeset
|
1609 #define SYMBOLP(x) (XTYPE ((x)) == Lisp_Symbol) |
9435
3a157cdf395c
(Lisp_Misc): new type code, replacing Lisp_Marker (and soon to replace other
Karl Heuer <kwzh@gnu.org>
parents:
9392
diff
changeset
|
1610 #define MISCP(x) (XTYPE ((x)) == Lisp_Misc) |
10010
67375493afa2
(enum Lisp_Misc_Type): Rename Lisp_Vector to Lisp_Vectorlike. Mark
Karl Heuer <kwzh@gnu.org>
parents:
10003
diff
changeset
|
1611 #define VECTORLIKEP(x) (XTYPE ((x)) == Lisp_Vectorlike) |
2187
12b50e8d3b1c
(INTEGERP, SYMBOLP, MARKERP, STRINGP, VECTORP): New macros.
Richard M. Stallman <rms@gnu.org>
parents:
2155
diff
changeset
|
1612 #define STRINGP(x) (XTYPE ((x)) == Lisp_String) |
302 | 1613 #define CONSP(x) (XTYPE ((x)) == Lisp_Cons) |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1614 |
2187
12b50e8d3b1c
(INTEGERP, SYMBOLP, MARKERP, STRINGP, VECTORP): New macros.
Richard M. Stallman <rms@gnu.org>
parents:
2155
diff
changeset
|
1615 #define FLOATP(x) (XTYPE ((x)) == Lisp_Float) |
90971
2acda4a4ac92
(XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
90918
diff
changeset
|
1616 #define VECTORP(x) (VECTORLIKEP (x) && !(XVECTOR (x)->size & PSEUDOVECTOR_FLAG)) |
11335
78eda0ee4cba
(XMISCTYPE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
11204
diff
changeset
|
1617 #define OVERLAYP(x) (MISCP (x) && XMISCTYPE (x) == Lisp_Misc_Overlay) |
78eda0ee4cba
(XMISCTYPE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
11204
diff
changeset
|
1618 #define MARKERP(x) (MISCP (x) && XMISCTYPE (x) == Lisp_Misc_Marker) |
85345
35d2f0abc597
(XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY, XBUFFER_OBJFWD)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85328
diff
changeset
|
1619 #define SAVE_VALUEP(x) (MISCP (x) && XMISCTYPE (x) == Lisp_Misc_Save_Value) |
2187
12b50e8d3b1c
(INTEGERP, SYMBOLP, MARKERP, STRINGP, VECTORP): New macros.
Richard M. Stallman <rms@gnu.org>
parents:
2155
diff
changeset
|
1620 |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1621 #define INTFWDP(x) (XFWDTYPE (x) == Lisp_Fwd_Int) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1622 #define BOOLFWDP(x) (XFWDTYPE (x) == Lisp_Fwd_Bool) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1623 #define OBJFWDP(x) (XFWDTYPE (x) == Lisp_Fwd_Obj) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1624 #define BUFFER_OBJFWDP(x) (XFWDTYPE (x) == Lisp_Fwd_Buffer_Obj) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1625 #define KBOARD_OBJFWDP(x) (XFWDTYPE (x) == Lisp_Fwd_Kboard_Obj) |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1626 |
10322
c1c2ec3aeefa
Use consistent spelling in comments.
Karl Heuer <kwzh@gnu.org>
parents:
10321
diff
changeset
|
1627 /* True if object X is a pseudovector whose code is CODE. */ |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1628 #define PSEUDOVECTORP(x, code) \ |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1629 (VECTORLIKEP (x) \ |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1630 && (((XVECTOR (x)->size & (PSEUDOVECTOR_FLAG | (code)))) \ |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1631 == (PSEUDOVECTOR_FLAG | (code)))) |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1632 |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1633 /* Test for specific pseudovector types. */ |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1634 #define WINDOW_CONFIGURATIONP(x) PSEUDOVECTORP (x, PVEC_WINDOW_CONFIGURATION) |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1635 #define PROCESSP(x) PSEUDOVECTORP (x, PVEC_PROCESS) |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1636 #define WINDOWP(x) PSEUDOVECTORP (x, PVEC_WINDOW) |
84689
73c717fa7866
(enum pvec_type): New `terminal' pseudovector.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84434
diff
changeset
|
1637 #define TERMINALP(x) PSEUDOVECTORP (x, PVEC_TERMINAL) |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1638 #define SUBRP(x) PSEUDOVECTORP (x, PVEC_SUBR) |
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1639 #define COMPILEDP(x) PSEUDOVECTORP (x, PVEC_COMPILED) |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
1640 #define BUFFERP(x) PSEUDOVECTORP (x, PVEC_BUFFER) |
13149
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
1641 #define CHAR_TABLE_P(x) PSEUDOVECTORP (x, PVEC_CHAR_TABLE) |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
1642 #define SUB_CHAR_TABLE_P(x) PSEUDOVECTORP (x, PVEC_SUB_CHAR_TABLE) |
13149
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
1643 #define BOOL_VECTOR_P(x) PSEUDOVECTORP (x, PVEC_BOOL_VECTOR) |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1644 #define FRAMEP(x) PSEUDOVECTORP (x, PVEC_FRAME) |
53331
db670c1b5944
(IMAGEP): New macro to test for image object type.
Kim F. Storm <storm@cua.dk>
parents:
53111
diff
changeset
|
1645 |
db670c1b5944
(IMAGEP): New macro to test for image object type.
Kim F. Storm <storm@cua.dk>
parents:
53111
diff
changeset
|
1646 /* Test for image (image . spec) */ |
db670c1b5944
(IMAGEP): New macro to test for image object type.
Kim F. Storm <storm@cua.dk>
parents:
53111
diff
changeset
|
1647 #define IMAGEP(x) (CONSP (x) && EQ (XCAR (x), Qimage)) |
db670c1b5944
(IMAGEP): New macro to test for image object type.
Kim F. Storm <storm@cua.dk>
parents:
53111
diff
changeset
|
1648 |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1649 /* Array types. */ |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1650 |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1651 #define ARRAYP(x) \ |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1652 (VECTORP (x) || STRINGP (x) || CHAR_TABLE_P (x) || BOOL_VECTOR_P (x)) |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1653 |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1654 #define CHECK_LIST(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1655 CHECK_TYPE (CONSP (x) || NILP (x), Qlistp, x) |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1656 |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1657 #define CHECK_LIST_CONS(x, y) \ |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1658 CHECK_TYPE (CONSP (x), Qlistp, y) |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1659 |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1660 #define CHECK_LIST_END(x, y) \ |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1661 CHECK_TYPE (NILP (x), Qlistp, y) |
302 | 1662 |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1663 #define CHECK_STRING(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1664 CHECK_TYPE (STRINGP (x), Qstringp, x) |
302 | 1665 |
40689
1e79b0de40a1
(CHECK_STRING_CAR): New macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
40653
diff
changeset
|
1666 #define CHECK_STRING_CAR(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1667 CHECK_TYPE (STRINGP (XCAR (x)), Qstringp, XCAR (x)) |
40689
1e79b0de40a1
(CHECK_STRING_CAR): New macro.
Ken Raeburn <raeburn@raeburn.org>
parents:
40653
diff
changeset
|
1668 |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1669 #define CHECK_CONS(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1670 CHECK_TYPE (CONSP (x), Qconsp, x) |
302 | 1671 |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1672 #define CHECK_SYMBOL(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1673 CHECK_TYPE (SYMBOLP (x), Qsymbolp, x) |
302 | 1674 |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1675 #define CHECK_CHAR_TABLE(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1676 CHECK_TYPE (CHAR_TABLE_P (x), Qchar_table_p, x) |
13149
b1dcc3e87ffb
(struct Lisp_Boolvector): New data type.
Richard M. Stallman <rms@gnu.org>
parents:
12890
diff
changeset
|
1677 |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1678 #define CHECK_VECTOR(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1679 CHECK_TYPE (VECTORP (x), Qvectorp, x) |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1680 |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1681 #define CHECK_VECTOR_OR_STRING(x) \ |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1682 CHECK_TYPE (VECTORP (x) || STRINGP (x), Qarrayp, x) |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1683 |
108933 | 1684 #define CHECK_ARRAY(x, Qxxxp) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1685 CHECK_TYPE (ARRAYP (x), Qxxxp, x) |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1686 |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1687 #define CHECK_VECTOR_OR_CHAR_TABLE(x) \ |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1688 CHECK_TYPE (VECTORP (x) || CHAR_TABLE_P (x), Qvector_or_char_table_p, x) |
13202
b307cd5c259f
(struct Lisp_Char_Table): New slot `purpose'.
Richard M. Stallman <rms@gnu.org>
parents:
13149
diff
changeset
|
1689 |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1690 #define CHECK_BUFFER(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1691 CHECK_TYPE (BUFFERP (x), Qbufferp, x) |
302 | 1692 |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1693 #define CHECK_WINDOW(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1694 CHECK_TYPE (WINDOWP (x), Qwindowp, x) |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1695 |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1696 #define CHECK_WINDOW_CONFIGURATION(x) \ |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1697 CHECK_TYPE (WINDOW_CONFIGURATIONP (x), Qwindow_configuration_p, x) |
302 | 1698 |
1442
89ac471c745c
* lisp.h (CHECK_LIVE_WINDOW): New predicate.
Jim Blandy <jimb@redhat.com>
parents:
1306
diff
changeset
|
1699 /* This macro rejects windows on the interior of the window tree as |
17404
73012b195cf3
(DOWNCASE): Return int, not Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
17326
diff
changeset
|
1700 "dead", which is what we want; this is an argument-checking macro, and |
1442
89ac471c745c
* lisp.h (CHECK_LIVE_WINDOW): New predicate.
Jim Blandy <jimb@redhat.com>
parents:
1306
diff
changeset
|
1701 the user should never get access to interior windows. |
89ac471c745c
* lisp.h (CHECK_LIVE_WINDOW): New predicate.
Jim Blandy <jimb@redhat.com>
parents:
1306
diff
changeset
|
1702 |
78501 | 1703 A window of any sort, leaf or interior, is dead if the buffer, |
1442
89ac471c745c
* lisp.h (CHECK_LIVE_WINDOW): New predicate.
Jim Blandy <jimb@redhat.com>
parents:
1306
diff
changeset
|
1704 vchild, and hchild members are all nil. */ |
89ac471c745c
* lisp.h (CHECK_LIVE_WINDOW): New predicate.
Jim Blandy <jimb@redhat.com>
parents:
1306
diff
changeset
|
1705 |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1706 #define CHECK_LIVE_WINDOW(x) \ |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1707 CHECK_TYPE (WINDOWP (x) && !NILP (XWINDOW (x)->buffer), Qwindow_live_p, x) |
1442
89ac471c745c
* lisp.h (CHECK_LIVE_WINDOW): New predicate.
Jim Blandy <jimb@redhat.com>
parents:
1306
diff
changeset
|
1708 |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1709 #define CHECK_PROCESS(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1710 CHECK_TYPE (PROCESSP (x), Qprocessp, x) |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1711 |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1712 #define CHECK_SUBR(x) \ |
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1713 CHECK_TYPE (SUBRP (x), Qsubrp, x) |
302 | 1714 |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1715 #define CHECK_NUMBER(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1716 CHECK_TYPE (INTEGERP (x), Qintegerp, x) |
302 | 1717 |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1718 #define CHECK_NATNUM(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1719 CHECK_TYPE (NATNUMP (x), Qwholenump, x) |
302 | 1720 |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1721 #define CHECK_MARKER(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1722 CHECK_TYPE (MARKERP (x), Qmarkerp, x) |
302 | 1723 |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1724 #define CHECK_NUMBER_COERCE_MARKER(x) \ |
9292 | 1725 do { if (MARKERP ((x))) XSETFASTINT (x, marker_position (x)); \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1726 else CHECK_TYPE (INTEGERP (x), Qinteger_or_marker_p, x); } while (0) |
302 | 1727 |
1728 #define XFLOATINT(n) extract_float((n)) | |
1729 | |
108933 | 1730 #define CHECK_FLOAT(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1731 CHECK_TYPE (FLOATP (x), Qfloatp, x) |
302 | 1732 |
108933 | 1733 #define CHECK_NUMBER_OR_FLOAT(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1734 CHECK_TYPE (FLOATP (x) || INTEGERP (x), Qnumberp, x) |
302 | 1735 |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1736 #define CHECK_NUMBER_OR_FLOAT_COERCE_MARKER(x) \ |
108933 | 1737 do { if (MARKERP (x)) XSETFASTINT (x, marker_position (x)); \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1738 else CHECK_TYPE (INTEGERP (x) || FLOATP (x), Qnumber_or_marker_p, x); } while (0) |
302 | 1739 |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1740 #define CHECK_OVERLAY(x) \ |
71822
7b7a32c8c767
(CHECK_TYPE): New macro for generic type checking.
Kim F. Storm <storm@cua.dk>
parents:
71796
diff
changeset
|
1741 CHECK_TYPE (OVERLAYP (x), Qoverlayp, x) |
2780
cfe7659bbc05
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2728
diff
changeset
|
1742 |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
1743 /* Since we can't assign directly to the CAR or CDR fields of a cons |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
1744 cell, use these when checking that those fields contain numbers. */ |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1745 #define CHECK_NUMBER_CAR(x) \ |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
1746 do { \ |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
1747 Lisp_Object tmp = XCAR (x); \ |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1748 CHECK_NUMBER (tmp); \ |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
1749 XSETCAR ((x), tmp); \ |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
1750 } while (0) |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
1751 |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1752 #define CHECK_NUMBER_CDR(x) \ |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
1753 do { \ |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
1754 Lisp_Object tmp = XCDR (x); \ |
40653
6c48a4da1da5
(CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST, CHECK_STRING,
Pavel Janík <Pavel@Janik.cz>
parents:
40536
diff
changeset
|
1755 CHECK_NUMBER (tmp); \ |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
1756 XSETCDR ((x), tmp); \ |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
1757 } while (0) |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39924
diff
changeset
|
1758 |
89483 | 1759 #define CHECK_NATNUM_CAR(x) \ |
1760 do { \ | |
1761 Lisp_Object tmp = XCAR (x); \ | |
1762 CHECK_NATNUM (tmp); \ | |
1763 XSETCAR ((x), tmp); \ | |
1764 } while (0) | |
1765 | |
1766 #define CHECK_NATNUM_CDR(x) \ | |
1767 do { \ | |
1768 Lisp_Object tmp = XCDR (x); \ | |
1769 CHECK_NATNUM (tmp); \ | |
1770 XSETCDR ((x), tmp); \ | |
1771 } while (0) | |
1772 | |
302 | 1773 /* Cast pointers to this type to compare them. Some machines want int. */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25818
diff
changeset
|
1774 #define PNTR_COMPARISON_TYPE EMACS_UINT |
302 | 1775 |
1776 /* Define a built-in function for calling from Lisp. | |
1777 `lname' should be the name to give the function in Lisp, | |
1778 as a null-terminated C string. | |
1779 `fnname' should be the name of the function in C. | |
1780 By convention, it starts with F. | |
1781 `sname' should be the name for the C constant structure | |
1782 that records information on this function for internal use. | |
1783 By convention, it should be the same as `fnname' but with S instead of F. | |
1784 It's too bad that C macros can't compute this from `fnname'. | |
1785 `minargs' should be a number, the minimum number of arguments allowed. | |
1786 `maxargs' should be a number, the maximum number of arguments allowed, | |
1787 or else MANY or UNEVALLED. | |
1788 MANY means pass a vector of evaluated arguments, | |
1789 in the form of an integer number-of-arguments | |
1790 followed by the address of a vector of Lisp_Objects | |
1791 which contains the argument values. | |
1792 UNEVALLED means pass the list of unevaluated arguments | |
84434
83ebc6baeac5
(struct Lisp_Subr): Rename `prompt' field to `intspec'.
Michaël Cadilhac <michael.cadilhac@lrde.org>
parents:
83766
diff
changeset
|
1793 `intspec' says how interactive arguments are to be fetched. |
83ebc6baeac5
(struct Lisp_Subr): Rename `prompt' field to `intspec'.
Michaël Cadilhac <michael.cadilhac@lrde.org>
parents:
83766
diff
changeset
|
1794 If the string starts with a `(', `intspec' is evaluated and the resulting |
83ebc6baeac5
(struct Lisp_Subr): Rename `prompt' field to `intspec'.
Michaël Cadilhac <michael.cadilhac@lrde.org>
parents:
83766
diff
changeset
|
1795 list is the list of arguments. |
83ebc6baeac5
(struct Lisp_Subr): Rename `prompt' field to `intspec'.
Michaël Cadilhac <michael.cadilhac@lrde.org>
parents:
83766
diff
changeset
|
1796 If it's a string that doesn't start with `(', the value should follow |
83ebc6baeac5
(struct Lisp_Subr): Rename `prompt' field to `intspec'.
Michaël Cadilhac <michael.cadilhac@lrde.org>
parents:
83766
diff
changeset
|
1797 the one of the doc string for `interactive'. |
302 | 1798 A null string means call interactively with no arguments. |
9904 | 1799 `doc' is documentation for the user. */ |
302 | 1800 |
5241
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1801 /* This version of DEFUN declares a function prototype with the right |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
1802 arguments, so we can catch errors with maxargs at compile-time. */ |
84434
83ebc6baeac5
(struct Lisp_Subr): Rename `prompt' field to `intspec'.
Michaël Cadilhac <michael.cadilhac@lrde.org>
parents:
83766
diff
changeset
|
1803 #define DEFUN(lname, fnname, sname, minargs, maxargs, intspec, doc) \ |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1804 Lisp_Object fnname DEFUN_ARGS_ ## maxargs ; \ |
53654
8dc805af6250
[USE_LSB_TAG]: Add definitions for Lisp_Object value
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53653
diff
changeset
|
1805 DECL_ALIGN (struct Lisp_Subr, sname) = \ |
10292
c467ec24a6bd
(VALBITS): Default now 28.
Richard M. Stallman <rms@gnu.org>
parents:
10247
diff
changeset
|
1806 { PVEC_SUBR | (sizeof (struct Lisp_Subr) / sizeof (EMACS_INT)), \ |
109476
94ad8639f676
Fix up "missing braces" warning.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109375
diff
changeset
|
1807 { .a ## maxargs = fnname }, \ |
94ad8639f676
Fix up "missing braces" warning.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
109375
diff
changeset
|
1808 minargs, maxargs, lname, intspec, 0}; \ |
5241
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1809 Lisp_Object fnname |
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1810 |
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1811 /* Note that the weird token-substitution semantics of ANSI C makes |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
1812 this work for MANY and UNEVALLED. */ |
5241
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1813 #define DEFUN_ARGS_MANY (int, Lisp_Object *) |
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1814 #define DEFUN_ARGS_UNEVALLED (Lisp_Object) |
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1815 #define DEFUN_ARGS_0 (void) |
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1816 #define DEFUN_ARGS_1 (Lisp_Object) |
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1817 #define DEFUN_ARGS_2 (Lisp_Object, Lisp_Object) |
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1818 #define DEFUN_ARGS_3 (Lisp_Object, Lisp_Object, Lisp_Object) |
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1819 #define DEFUN_ARGS_4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object) |
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1820 #define DEFUN_ARGS_5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, \ |
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1821 Lisp_Object) |
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1822 #define DEFUN_ARGS_6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, \ |
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1823 Lisp_Object, Lisp_Object) |
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1824 #define DEFUN_ARGS_7 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, \ |
1536c6b80ff6
Use WORDS_BIG_ENDIAN, not BIG_ENDIAN.
Richard M. Stallman <rms@gnu.org>
parents:
5128
diff
changeset
|
1825 Lisp_Object, Lisp_Object, Lisp_Object) |
19547
70d930b49bb4
(DEFUN_ARGS_8): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19224
diff
changeset
|
1826 #define DEFUN_ARGS_8 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, \ |
70d930b49bb4
(DEFUN_ARGS_8): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19224
diff
changeset
|
1827 Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object) |
108933 | 1828 |
30218 | 1829 /* Non-zero if OBJ is a Lisp function. */ |
1830 #define FUNCTIONP(OBJ) \ | |
1831 ((CONSP (OBJ) && EQ (XCAR (OBJ), Qlambda)) \ | |
1832 || (SYMBOLP (OBJ) && !NILP (Ffboundp (OBJ))) \ | |
1833 || COMPILEDP (OBJ) \ | |
1834 || SUBRP (OBJ)) | |
45623
0e92d219e195
(current_column): Now returns float.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
45545
diff
changeset
|
1835 |
302 | 1836 /* defsubr (Sname); |
41080 | 1837 is how we define the symbol for function `name' at start-up time. */ |
109099 | 1838 extern void defsubr (struct Lisp_Subr *); |
302 | 1839 |
1840 #define MANY -2 | |
1841 #define UNEVALLED -1 | |
1842 | |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1843 extern void defvar_lisp (struct Lisp_Objfwd *, const char *, Lisp_Object *); |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1844 extern void defvar_lisp_nopro (struct Lisp_Objfwd *, const char *, Lisp_Object *); |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1845 extern void defvar_bool (struct Lisp_Boolfwd *, const char *, int *); |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1846 extern void defvar_int (struct Lisp_Intfwd *, const char *, EMACS_INT *); |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1847 extern void defvar_kboard (struct Lisp_Kboard_Objfwd *, const char *, int); |
302 | 1848 |
1849 /* Macros we use to define forwarded Lisp variables. | |
1850 These are used in the syms_of_FILENAME functions. */ | |
1851 | |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1852 #define DEFVAR_LISP(lname, vname, doc) \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1853 do { \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1854 static struct Lisp_Objfwd o_fwd; \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1855 defvar_lisp (&o_fwd, lname, vname); \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1856 } while (0) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1857 #define DEFVAR_LISP_NOPRO(lname, vname, doc) \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1858 do { \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1859 static struct Lisp_Objfwd o_fwd; \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1860 defvar_lisp_nopro (&o_fwd, lname, vname); \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1861 } while (0) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1862 #define DEFVAR_BOOL(lname, vname, doc) \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1863 do { \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1864 static struct Lisp_Boolfwd b_fwd; \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1865 defvar_bool (&b_fwd, lname, vname); \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1866 } while (0) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1867 #define DEFVAR_INT(lname, vname, doc) \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1868 do { \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1869 static struct Lisp_Intfwd i_fwd; \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1870 defvar_int (&i_fwd, lname, vname); \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1871 } while (0) |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1872 |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1873 #define DEFVAR_KBOARD(lname, vname, doc) \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1874 do { \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1875 static struct Lisp_Kboard_Objfwd ko_fwd; \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1876 defvar_kboard (&ko_fwd, \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1877 lname, \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1878 (int)((char *)(¤t_kboard->vname) \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1879 - (char *)current_kboard)); \ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
1880 } while (0) |
39898
bc20a5e30bfd
(DEFUN, DEFVAR_LISP, ...) [DOC_STRINGS_IN_COMMENTS]:
Gerd Moellmann <gerd@gnu.org>
parents:
39861
diff
changeset
|
1881 |
bc20a5e30bfd
(DEFUN, DEFVAR_LISP, ...) [DOC_STRINGS_IN_COMMENTS]:
Gerd Moellmann <gerd@gnu.org>
parents:
39861
diff
changeset
|
1882 |
302 | 1883 |
1197
4eee4dc734bb
* lisp.h (struct handler): Remove the poll_suppress_count member
Jim Blandy <jimb@redhat.com>
parents:
1184
diff
changeset
|
1884 /* Structure for recording Lisp call stack for backtrace purposes. */ |
4eee4dc734bb
* lisp.h (struct handler): Remove the poll_suppress_count member
Jim Blandy <jimb@redhat.com>
parents:
1184
diff
changeset
|
1885 |
4eee4dc734bb
* lisp.h (struct handler): Remove the poll_suppress_count member
Jim Blandy <jimb@redhat.com>
parents:
1184
diff
changeset
|
1886 /* The special binding stack holds the outer values of variables while |
4eee4dc734bb
* lisp.h (struct handler): Remove the poll_suppress_count member
Jim Blandy <jimb@redhat.com>
parents:
1184
diff
changeset
|
1887 they are bound by a function application or a let form, stores the |
4eee4dc734bb
* lisp.h (struct handler): Remove the poll_suppress_count member
Jim Blandy <jimb@redhat.com>
parents:
1184
diff
changeset
|
1888 code to be executed for Lisp unwind-protect forms, and stores the C |
4eee4dc734bb
* lisp.h (struct handler): Remove the poll_suppress_count member
Jim Blandy <jimb@redhat.com>
parents:
1184
diff
changeset
|
1889 functions to be called for record_unwind_protect. |
302 | 1890 |
1197
4eee4dc734bb
* lisp.h (struct handler): Remove the poll_suppress_count member
Jim Blandy <jimb@redhat.com>
parents:
1184
diff
changeset
|
1891 If func is non-zero, undoing this binding applies func to old_value; |
4eee4dc734bb
* lisp.h (struct handler): Remove the poll_suppress_count member
Jim Blandy <jimb@redhat.com>
parents:
1184
diff
changeset
|
1892 This implements record_unwind_protect. |
27292
d0aba668c5af
(set_internal): Enter the new arg.
Richard M. Stallman <rms@gnu.org>
parents:
27141
diff
changeset
|
1893 |
d0aba668c5af
(set_internal): Enter the new arg.
Richard M. Stallman <rms@gnu.org>
parents:
27141
diff
changeset
|
1894 Otherwise, the element is a variable binding. |
45623
0e92d219e195
(current_column): Now returns float.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
45545
diff
changeset
|
1895 |
27292
d0aba668c5af
(set_internal): Enter the new arg.
Richard M. Stallman <rms@gnu.org>
parents:
27141
diff
changeset
|
1896 If the symbol field is a symbol, it is an ordinary variable binding. |
45623
0e92d219e195
(current_column): Now returns float.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
45545
diff
changeset
|
1897 |
108933 | 1898 Otherwise, it should be a structure (SYMBOL WHERE . CURRENT-BUFFER), |
1899 which means having bound a local value while CURRENT-BUFFER was active. | |
1900 If WHERE is nil this means we saw the default value when binding SYMBOL. | |
1901 WHERE being a buffer or frame means we saw a buffer-local or frame-local | |
1902 value. Other values of WHERE mean an internal error. */ | |
27292
d0aba668c5af
(set_internal): Enter the new arg.
Richard M. Stallman <rms@gnu.org>
parents:
27141
diff
changeset
|
1903 |
109099 | 1904 typedef Lisp_Object (*specbinding_func) (Lisp_Object); |
51035
b17fe74b2af3
(specbinding_func): New typedef.
Richard M. Stallman <rms@gnu.org>
parents:
50996
diff
changeset
|
1905 |
302 | 1906 struct specbinding |
1907 { | |
69157
76d55cdb7481
(struct specbinding, specpdl_ptr): Remove the volatile qualifier which was
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68758
diff
changeset
|
1908 Lisp_Object symbol, old_value; |
76d55cdb7481
(struct specbinding, specpdl_ptr): Remove the volatile qualifier which was
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68758
diff
changeset
|
1909 specbinding_func func; |
302 | 1910 Lisp_Object unused; /* Dividing by 16 is faster than by 12 */ |
1911 }; | |
1912 | |
1913 extern struct specbinding *specpdl; | |
69157
76d55cdb7481
(struct specbinding, specpdl_ptr): Remove the volatile qualifier which was
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68758
diff
changeset
|
1914 extern struct specbinding *specpdl_ptr; |
110554
e49fcbdc458f
Fix int/EMACS_INT in eval.c and indent.c, correct previous changes.
Eli Zaretskii <eliz@gnu.org>
parents:
110548
diff
changeset
|
1915 extern EMACS_INT specpdl_size; |
302 | 1916 |
43713
f92c4d87863a
Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43699
diff
changeset
|
1917 extern EMACS_INT max_specpdl_size; |
42415
cdbdb10cfbe6
(max_specpdl_size): Add declaration.
Richard M. Stallman <rms@gnu.org>
parents:
42278
diff
changeset
|
1918 |
110515
6248bcadfd21
Cast SPECPDL_INDEX to int, and do further EMACS_INT/int cleanups.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
110514
diff
changeset
|
1919 #define SPECPDL_INDEX() ((int) (specpdl_ptr - specpdl)) |
33508
027d4bc2e846
(BINDING_STACK_SIZE): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
33461
diff
changeset
|
1920 |
1197
4eee4dc734bb
* lisp.h (struct handler): Remove the poll_suppress_count member
Jim Blandy <jimb@redhat.com>
parents:
1184
diff
changeset
|
1921 /* Everything needed to describe an active condition case. */ |
302 | 1922 struct handler |
1923 { | |
1197
4eee4dc734bb
* lisp.h (struct handler): Remove the poll_suppress_count member
Jim Blandy <jimb@redhat.com>
parents:
1184
diff
changeset
|
1924 /* The handler clauses and variable from the condition-case form. */ |
46866 | 1925 /* For a handler set up in Lisp code, this is always a list. |
1926 For an internal handler set up by internal_condition_case*, | |
1927 this can instead be the symbol t or `error'. | |
1928 t: handle all conditions. | |
1929 error: handle all conditions, and errors can run the debugger | |
1930 or display a backtrace. */ | |
302 | 1931 Lisp_Object handler; |
1932 Lisp_Object var; | |
6131
854e14ecfa93
(struct handler): New field chosen_clause.
Richard M. Stallman <rms@gnu.org>
parents:
6094
diff
changeset
|
1933 /* Fsignal stores here the condition-case clause that applies, |
854e14ecfa93
(struct handler): New field chosen_clause.
Richard M. Stallman <rms@gnu.org>
parents:
6094
diff
changeset
|
1934 and Fcondition_case thus knows which clause to run. */ |
854e14ecfa93
(struct handler): New field chosen_clause.
Richard M. Stallman <rms@gnu.org>
parents:
6094
diff
changeset
|
1935 Lisp_Object chosen_clause; |
1197
4eee4dc734bb
* lisp.h (struct handler): Remove the poll_suppress_count member
Jim Blandy <jimb@redhat.com>
parents:
1184
diff
changeset
|
1936 |
4eee4dc734bb
* lisp.h (struct handler): Remove the poll_suppress_count member
Jim Blandy <jimb@redhat.com>
parents:
1184
diff
changeset
|
1937 /* Used to effect the longjump out to the handler. */ |
302 | 1938 struct catchtag *tag; |
1197
4eee4dc734bb
* lisp.h (struct handler): Remove the poll_suppress_count member
Jim Blandy <jimb@redhat.com>
parents:
1184
diff
changeset
|
1939 |
4eee4dc734bb
* lisp.h (struct handler): Remove the poll_suppress_count member
Jim Blandy <jimb@redhat.com>
parents:
1184
diff
changeset
|
1940 /* The next enclosing handler. */ |
302 | 1941 struct handler *next; |
1942 }; | |
1943 | |
1944 extern struct handler *handlerlist; | |
1945 | |
105669
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1946 /* This structure helps implement the `catch' and `throw' control |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1947 structure. A struct catchtag contains all the information needed |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1948 to restore the state of the interpreter after a non-local jump. |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1949 |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1950 Handlers for error conditions (represented by `struct handler' |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1951 structures) just point to a catch tag to do the cleanup required |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1952 for their jumps. |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1953 |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1954 catchtag structures are chained together in the C calling stack; |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1955 the `next' member points to the next outer catchtag. |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1956 |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1957 A call like (throw TAG VAL) searches for a catchtag whose `tag' |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1958 member is TAG, and then unbinds to it. The `val' member is used to |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1959 hold VAL while the stack is unwound; `val' is returned as the value |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1960 of the catch form. |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1961 |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1962 All the other members are concerned with restoring the interpreter |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1963 state. */ |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1964 |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1965 struct catchtag |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1966 { |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1967 Lisp_Object tag; |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1968 Lisp_Object val; |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1969 struct catchtag *next; |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1970 struct gcpro *gcpro; |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1971 jmp_buf jmp; |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1972 struct backtrace *backlist; |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1973 struct handler *handlerlist; |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1974 int lisp_eval_depth; |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1975 int pdlcount; |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1976 int poll_suppress_count; |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1977 int interrupt_input_blocked; |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1978 struct byte_stack *byte_stack; |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1979 }; |
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105373
diff
changeset
|
1980 |
302 | 1981 extern struct catchtag *catchlist; |
1982 extern struct backtrace *backtrace_list; | |
1983 | |
6131
854e14ecfa93
(struct handler): New field chosen_clause.
Richard M. Stallman <rms@gnu.org>
parents:
6094
diff
changeset
|
1984 extern Lisp_Object memory_signal_data; |
854e14ecfa93
(struct handler): New field chosen_clause.
Richard M. Stallman <rms@gnu.org>
parents:
6094
diff
changeset
|
1985 |
302 | 1986 /* An address near the bottom of the stack. |
1987 Tells GC how to save a copy of the stack. */ | |
1988 extern char *stack_bottom; | |
1989 | |
26296
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
1990 /* Check quit-flag and quit if it is non-nil. |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
1991 Typing C-g does not directly cause a quit; it only sets Vquit_flag. |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
1992 So the program needs to do QUIT at times when it is safe to quit. |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
1993 Every loop that might run for a long time or might not exit |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
1994 ought to do QUIT at least once, at a safe place. |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
1995 Unless that is impossible, of course. |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
1996 But it is very desirable to avoid creating loops where QUIT is impossible. |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
1997 |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
1998 Exception: if you set immediate_quit to nonzero, |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
1999 then the handler that responds to the C-g does the quit itself. |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2000 This is a good thing to do around a loop that has no side effects |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2001 and (in particular) cannot call arbitrary Lisp code. */ |
302 | 2002 |
53658
c6460069583e
(QUIT) [SYNC_INPUT]: Check interrupt_input_pending as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53654
diff
changeset
|
2003 #ifdef SYNC_INPUT |
109099 | 2004 extern void process_pending_signals (void); |
101653
f2bc801a3377
(QUIT): Check pending_signals instead of interrupt_input_pending. Use
Chong Yidong <cyd@stupidchicken.com>
parents:
100951
diff
changeset
|
2005 extern int pending_signals; |
107338
feb1bc86a749
Make it possible to C-g in a tight bytecode loop again (bug#5680).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
106950
diff
changeset
|
2006 #define ELSE_PENDING_SIGNALS \ |
feb1bc86a749
Make it possible to C-g in a tight bytecode loop again (bug#5680).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
106950
diff
changeset
|
2007 else if (pending_signals) \ |
feb1bc86a749
Make it possible to C-g in a tight bytecode loop again (bug#5680).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
106950
diff
changeset
|
2008 process_pending_signals (); |
feb1bc86a749
Make it possible to C-g in a tight bytecode loop again (bug#5680).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
106950
diff
changeset
|
2009 #else /* not SYNC_INPUT */ |
feb1bc86a749
Make it possible to C-g in a tight bytecode loop again (bug#5680).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
106950
diff
changeset
|
2010 #define ELSE_PENDING_SIGNALS |
feb1bc86a749
Make it possible to C-g in a tight bytecode loop again (bug#5680).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
106950
diff
changeset
|
2011 #endif /* not SYNC_INPUT */ |
58932
ce2e33a2adae
(QUIT): Check for Vthrow_on_input.
Richard M. Stallman <rms@gnu.org>
parents:
58818
diff
changeset
|
2012 |
53658
c6460069583e
(QUIT) [SYNC_INPUT]: Check interrupt_input_pending as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53654
diff
changeset
|
2013 #define QUIT \ |
c6460069583e
(QUIT) [SYNC_INPUT]: Check interrupt_input_pending as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53654
diff
changeset
|
2014 do { \ |
c6460069583e
(QUIT) [SYNC_INPUT]: Check interrupt_input_pending as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53654
diff
changeset
|
2015 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit)) \ |
c6460069583e
(QUIT) [SYNC_INPUT]: Check interrupt_input_pending as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53654
diff
changeset
|
2016 { \ |
58932
ce2e33a2adae
(QUIT): Check for Vthrow_on_input.
Richard M. Stallman <rms@gnu.org>
parents:
58818
diff
changeset
|
2017 Lisp_Object flag = Vquit_flag; \ |
53658
c6460069583e
(QUIT) [SYNC_INPUT]: Check interrupt_input_pending as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53654
diff
changeset
|
2018 Vquit_flag = Qnil; \ |
58932
ce2e33a2adae
(QUIT): Check for Vthrow_on_input.
Richard M. Stallman <rms@gnu.org>
parents:
58818
diff
changeset
|
2019 if (EQ (Vthrow_on_input, flag)) \ |
64847
ac757cf8a328
(QUIT): Throw t to Vthrow_on_input.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
2020 Fthrow (Vthrow_on_input, Qt); \ |
53658
c6460069583e
(QUIT) [SYNC_INPUT]: Check interrupt_input_pending as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53654
diff
changeset
|
2021 Fsignal (Qquit, Qnil); \ |
c6460069583e
(QUIT) [SYNC_INPUT]: Check interrupt_input_pending as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53654
diff
changeset
|
2022 } \ |
107338
feb1bc86a749
Make it possible to C-g in a tight bytecode loop again (bug#5680).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
106950
diff
changeset
|
2023 ELSE_PENDING_SIGNALS \ |
53658
c6460069583e
(QUIT) [SYNC_INPUT]: Check interrupt_input_pending as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53654
diff
changeset
|
2024 } while (0) |
c6460069583e
(QUIT) [SYNC_INPUT]: Check interrupt_input_pending as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53654
diff
changeset
|
2025 |
c6460069583e
(QUIT) [SYNC_INPUT]: Check interrupt_input_pending as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53654
diff
changeset
|
2026 |
302 | 2027 /* Nonzero if ought to quit now. */ |
2028 | |
493 | 2029 #define QUITP (!NILP (Vquit_flag) && NILP (Vinhibit_quit)) |
302 | 2030 |
18006
d29a9b467ac9
(CHAR_TABLE_REF): Do not check validity of CT.
Kenichi Handa <handa@m17n.org>
parents:
17871
diff
changeset
|
2031 /* Variables used locally in the following case handling macros. */ |
18613
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18115
diff
changeset
|
2032 extern int case_temp1; |
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18115
diff
changeset
|
2033 extern Lisp_Object case_temp2; |
18006
d29a9b467ac9
(CHAR_TABLE_REF): Do not check validity of CT.
Kenichi Handa <handa@m17n.org>
parents:
17871
diff
changeset
|
2034 |
17404
73012b195cf3
(DOWNCASE): Return int, not Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
17326
diff
changeset
|
2035 /* Current buffer's map from characters to lower-case characters. */ |
73012b195cf3
(DOWNCASE): Return int, not Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
17326
diff
changeset
|
2036 |
18006
d29a9b467ac9
(CHAR_TABLE_REF): Do not check validity of CT.
Kenichi Handa <handa@m17n.org>
parents:
17871
diff
changeset
|
2037 #define DOWNCASE_TABLE current_buffer->downcase_table |
17404
73012b195cf3
(DOWNCASE): Return int, not Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
17326
diff
changeset
|
2038 |
73012b195cf3
(DOWNCASE): Return int, not Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
17326
diff
changeset
|
2039 /* Current buffer's map from characters to upper-case characters. */ |
73012b195cf3
(DOWNCASE): Return int, not Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
17326
diff
changeset
|
2040 |
18006
d29a9b467ac9
(CHAR_TABLE_REF): Do not check validity of CT.
Kenichi Handa <handa@m17n.org>
parents:
17871
diff
changeset
|
2041 #define UPCASE_TABLE current_buffer->upcase_table |
17404
73012b195cf3
(DOWNCASE): Return int, not Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
17326
diff
changeset
|
2042 |
73012b195cf3
(DOWNCASE): Return int, not Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
17326
diff
changeset
|
2043 /* Downcase a character, or make no change if that cannot be done. */ |
73012b195cf3
(DOWNCASE): Return int, not Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
17326
diff
changeset
|
2044 |
18006
d29a9b467ac9
(CHAR_TABLE_REF): Do not check validity of CT.
Kenichi Handa <handa@m17n.org>
parents:
17871
diff
changeset
|
2045 #define DOWNCASE(CH) \ |
d29a9b467ac9
(CHAR_TABLE_REF): Do not check validity of CT.
Kenichi Handa <handa@m17n.org>
parents:
17871
diff
changeset
|
2046 ((case_temp1 = (CH), \ |
d29a9b467ac9
(CHAR_TABLE_REF): Do not check validity of CT.
Kenichi Handa <handa@m17n.org>
parents:
17871
diff
changeset
|
2047 case_temp2 = CHAR_TABLE_REF (DOWNCASE_TABLE, case_temp1), \ |
d29a9b467ac9
(CHAR_TABLE_REF): Do not check validity of CT.
Kenichi Handa <handa@m17n.org>
parents:
17871
diff
changeset
|
2048 NATNUMP (case_temp2)) \ |
d29a9b467ac9
(CHAR_TABLE_REF): Do not check validity of CT.
Kenichi Handa <handa@m17n.org>
parents:
17871
diff
changeset
|
2049 ? XFASTINT (case_temp2) : case_temp1) |
17404
73012b195cf3
(DOWNCASE): Return int, not Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
17326
diff
changeset
|
2050 |
302 | 2051 /* 1 if CH is upper case. */ |
2052 | |
18111
4bd5e5e3db42
(concat3, get_truename_buffer): Declare them.
Richard M. Stallman <rms@gnu.org>
parents:
18006
diff
changeset
|
2053 #define UPPERCASEP(CH) (DOWNCASE (CH) != (CH)) |
17404
73012b195cf3
(DOWNCASE): Return int, not Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
17326
diff
changeset
|
2054 |
73012b195cf3
(DOWNCASE): Return int, not Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
17326
diff
changeset
|
2055 /* 1 if CH is neither upper nor lower case. */ |
73012b195cf3
(DOWNCASE): Return int, not Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
17326
diff
changeset
|
2056 |
18006
d29a9b467ac9
(CHAR_TABLE_REF): Do not check validity of CT.
Kenichi Handa <handa@m17n.org>
parents:
17871
diff
changeset
|
2057 #define NOCASEP(CH) (UPCASE1 (CH) == (CH)) |
302 | 2058 |
2059 /* 1 if CH is lower case. */ | |
2060 | |
17289
83cc6a193391
(CHAR_TABLE_REF): Fix syntax error.
Karl Heuer <kwzh@gnu.org>
parents:
17188
diff
changeset
|
2061 #define LOWERCASEP(CH) (!UPPERCASEP (CH) && !NOCASEP(CH)) |
302 | 2062 |
2063 /* Upcase a character, or make no change if that cannot be done. */ | |
2064 | |
17289
83cc6a193391
(CHAR_TABLE_REF): Fix syntax error.
Karl Heuer <kwzh@gnu.org>
parents:
17188
diff
changeset
|
2065 #define UPCASE(CH) (!UPPERCASEP (CH) ? UPCASE1 (CH) : (CH)) |
302 | 2066 |
2067 /* Upcase a character known to be not upper case. */ | |
2068 | |
18006
d29a9b467ac9
(CHAR_TABLE_REF): Do not check validity of CT.
Kenichi Handa <handa@m17n.org>
parents:
17871
diff
changeset
|
2069 #define UPCASE1(CH) \ |
d29a9b467ac9
(CHAR_TABLE_REF): Do not check validity of CT.
Kenichi Handa <handa@m17n.org>
parents:
17871
diff
changeset
|
2070 ((case_temp1 = (CH), \ |
d29a9b467ac9
(CHAR_TABLE_REF): Do not check validity of CT.
Kenichi Handa <handa@m17n.org>
parents:
17871
diff
changeset
|
2071 case_temp2 = CHAR_TABLE_REF (UPCASE_TABLE, case_temp1), \ |
d29a9b467ac9
(CHAR_TABLE_REF): Do not check validity of CT.
Kenichi Handa <handa@m17n.org>
parents:
17871
diff
changeset
|
2072 NATNUMP (case_temp2)) \ |
d29a9b467ac9
(CHAR_TABLE_REF): Do not check validity of CT.
Kenichi Handa <handa@m17n.org>
parents:
17871
diff
changeset
|
2073 ? XFASTINT (case_temp2) : case_temp1) |
302 | 2074 |
61187
4d082fa849ea
(Vascii_upcase_table, Vascii_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
60897
diff
changeset
|
2075 extern Lisp_Object Vascii_downcase_table, Vascii_upcase_table; |
4d082fa849ea
(Vascii_upcase_table, Vascii_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
60897
diff
changeset
|
2076 extern Lisp_Object Vascii_canon_table, Vascii_eqv_table; |
302 | 2077 |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
2078 /* Number of bytes of structure consed since last GC. */ |
302 | 2079 |
2080 extern int consing_since_gc; | |
2081 | |
64612
6926a2764ae6
(gc_cons_threshold, gc_relative_threshold): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
64272
diff
changeset
|
2082 /* Thresholds for doing another gc. */ |
6926a2764ae6
(gc_cons_threshold, gc_relative_threshold): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
64272
diff
changeset
|
2083 |
6926a2764ae6
(gc_cons_threshold, gc_relative_threshold): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
64272
diff
changeset
|
2084 extern EMACS_INT gc_cons_threshold; |
6926a2764ae6
(gc_cons_threshold, gc_relative_threshold): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
64272
diff
changeset
|
2085 |
6926a2764ae6
(gc_cons_threshold, gc_relative_threshold): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
64272
diff
changeset
|
2086 extern EMACS_INT gc_relative_threshold; |
302 | 2087 |
66531
8d5d518bafa5
(memory_full_cons_threshold): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
65795
diff
changeset
|
2088 extern EMACS_INT memory_full_cons_threshold; |
8d5d518bafa5
(memory_full_cons_threshold): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
65795
diff
changeset
|
2089 |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
2090 /* Structure for recording stack slots that need marking. */ |
302 | 2091 |
108933 | 2092 /* This is a chain of structures, each of which points at a Lisp_Object |
2093 variable whose value should be marked in garbage collection. | |
2094 Normally every link of the chain is an automatic variable of a function, | |
2095 and its `val' points to some argument or local variable of the function. | |
2096 On exit to the function, the chain is set back to the value it had on entry. | |
2097 This way, no link remains in the chain when the stack frame containing the | |
2098 link disappears. | |
2099 | |
2100 Every function that can call Feval must protect in this fashion all | |
2101 Lisp_Object variables whose contents will be used again. */ | |
302 | 2102 |
2103 extern struct gcpro *gcprolist; | |
2104 | |
2105 struct gcpro | |
32065
4f8ce7eb45a5
(wrong_type_argument): Remove NO_RETURN, the function can
Gerd Moellmann <gerd@gnu.org>
parents:
31991
diff
changeset
|
2106 { |
4f8ce7eb45a5
(wrong_type_argument): Remove NO_RETURN, the function can
Gerd Moellmann <gerd@gnu.org>
parents:
31991
diff
changeset
|
2107 struct gcpro *next; |
45623
0e92d219e195
(current_column): Now returns float.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
45545
diff
changeset
|
2108 |
32065
4f8ce7eb45a5
(wrong_type_argument): Remove NO_RETURN, the function can
Gerd Moellmann <gerd@gnu.org>
parents:
31991
diff
changeset
|
2109 /* Address of first protected variable. */ |
4f8ce7eb45a5
(wrong_type_argument): Remove NO_RETURN, the function can
Gerd Moellmann <gerd@gnu.org>
parents:
31991
diff
changeset
|
2110 volatile Lisp_Object *var; |
45623
0e92d219e195
(current_column): Now returns float.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
45545
diff
changeset
|
2111 |
32065
4f8ce7eb45a5
(wrong_type_argument): Remove NO_RETURN, the function can
Gerd Moellmann <gerd@gnu.org>
parents:
31991
diff
changeset
|
2112 /* Number of consecutive protected variables. */ |
4f8ce7eb45a5
(wrong_type_argument): Remove NO_RETURN, the function can
Gerd Moellmann <gerd@gnu.org>
parents:
31991
diff
changeset
|
2113 int nvars; |
45623
0e92d219e195
(current_column): Now returns float.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
45545
diff
changeset
|
2114 |
26296
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2115 #ifdef DEBUG_GCPRO |
32065
4f8ce7eb45a5
(wrong_type_argument): Remove NO_RETURN, the function can
Gerd Moellmann <gerd@gnu.org>
parents:
31991
diff
changeset
|
2116 int level; |
26296
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2117 #endif |
32065
4f8ce7eb45a5
(wrong_type_argument): Remove NO_RETURN, the function can
Gerd Moellmann <gerd@gnu.org>
parents:
31991
diff
changeset
|
2118 }; |
302 | 2119 |
27741
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2120 /* Values of GC_MARK_STACK during compilation: |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2121 |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2122 0 Use GCPRO as before |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2123 1 Do the real thing, make GCPROs and UNGCPRO no-ops. |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2124 2 Mark the stack, and check that everything GCPRO'd is |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2125 marked. |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2126 3 Mark using GCPRO's, mark stack last, and count how many |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2127 dead objects are kept alive. */ |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2128 |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2129 |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2130 #define GC_USE_GCPROS_AS_BEFORE 0 |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2131 #define GC_MAKE_GCPROS_NOOPS 1 |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2132 #define GC_MARK_STACK_CHECK_GCPROS 2 |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2133 #define GC_USE_GCPROS_CHECK_ZOMBIES 3 |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2134 |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2135 #ifndef GC_MARK_STACK |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2136 #define GC_MARK_STACK GC_USE_GCPROS_AS_BEFORE |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2137 #endif |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2138 |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2139 #if GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2140 |
41659
e37febff5532
(GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41615
diff
changeset
|
2141 /* Do something silly with gcproN vars just so gcc shuts up. */ |
48540 | 2142 /* You get warnings from MIPSPro... */ |
41659
e37febff5532
(GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41615
diff
changeset
|
2143 |
e37febff5532
(GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41615
diff
changeset
|
2144 #define GCPRO1(varname) ((void) gcpro1) |
45623
0e92d219e195
(current_column): Now returns float.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
45545
diff
changeset
|
2145 #define GCPRO2(varname1, varname2)(((void) gcpro2, (void) gcpro1)) |
41659
e37febff5532
(GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41615
diff
changeset
|
2146 #define GCPRO3(varname1, varname2, varname3) \ |
e37febff5532
(GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41615
diff
changeset
|
2147 (((void) gcpro3, (void) gcpro2, (void) gcpro1)) |
e37febff5532
(GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41615
diff
changeset
|
2148 #define GCPRO4(varname1, varname2, varname3, varname4) \ |
e37febff5532
(GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41615
diff
changeset
|
2149 (((void) gcpro4, (void) gcpro3, (void) gcpro2, (void) gcpro1)) |
e37febff5532
(GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41615
diff
changeset
|
2150 #define GCPRO5(varname1, varname2, varname3, varname4, varname5) \ |
e37febff5532
(GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41615
diff
changeset
|
2151 (((void) gcpro5, (void) gcpro4, (void) gcpro3, (void) gcpro2, (void) gcpro1)) |
43616 | 2152 #define GCPRO6(varname1, varname2, varname3, varname4, varname5, varname6) \ |
2153 (((void) gcpro6, (void) gcpro5, (void) gcpro4, (void) gcpro3, (void) gcpro2, (void) gcpro1)) | |
27741
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2154 #define UNGCPRO ((void) 0) |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2155 |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2156 #else /* GC_MARK_STACK != GC_MAKE_GCPROS_NOOPS */ |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2157 |
26296
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2158 #ifndef DEBUG_GCPRO |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2159 |
302 | 2160 #define GCPRO1(varname) \ |
2161 {gcpro1.next = gcprolist; gcpro1.var = &varname; gcpro1.nvars = 1; \ | |
2162 gcprolist = &gcpro1; } | |
2163 | |
2164 #define GCPRO2(varname1, varname2) \ | |
2165 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \ | |
2166 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \ | |
2167 gcprolist = &gcpro2; } | |
2168 | |
2169 #define GCPRO3(varname1, varname2, varname3) \ | |
2170 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \ | |
2171 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \ | |
2172 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \ | |
2173 gcprolist = &gcpro3; } | |
2174 | |
2175 #define GCPRO4(varname1, varname2, varname3, varname4) \ | |
2176 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \ | |
2177 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \ | |
2178 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \ | |
2179 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \ | |
2180 gcprolist = &gcpro4; } | |
2181 | |
8009
abbe65c17b55
(RETURN_UNGCPRO): Swallow semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
7906
diff
changeset
|
2182 #define GCPRO5(varname1, varname2, varname3, varname4, varname5) \ |
abbe65c17b55
(RETURN_UNGCPRO): Swallow semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
7906
diff
changeset
|
2183 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \ |
abbe65c17b55
(RETURN_UNGCPRO): Swallow semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
7906
diff
changeset
|
2184 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \ |
abbe65c17b55
(RETURN_UNGCPRO): Swallow semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
7906
diff
changeset
|
2185 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \ |
abbe65c17b55
(RETURN_UNGCPRO): Swallow semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
7906
diff
changeset
|
2186 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \ |
abbe65c17b55
(RETURN_UNGCPRO): Swallow semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
7906
diff
changeset
|
2187 gcpro5.next = &gcpro4; gcpro5.var = &varname5; gcpro5.nvars = 1; \ |
abbe65c17b55
(RETURN_UNGCPRO): Swallow semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
7906
diff
changeset
|
2188 gcprolist = &gcpro5; } |
abbe65c17b55
(RETURN_UNGCPRO): Swallow semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
7906
diff
changeset
|
2189 |
43616 | 2190 #define GCPRO6(varname1, varname2, varname3, varname4, varname5, varname6) \ |
2191 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \ | |
2192 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \ | |
2193 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \ | |
2194 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \ | |
2195 gcpro5.next = &gcpro4; gcpro5.var = &varname5; gcpro5.nvars = 1; \ | |
2196 gcpro6.next = &gcpro5; gcpro6.var = &varname6; gcpro6.nvars = 1; \ | |
2197 gcprolist = &gcpro6; } | |
2198 | |
302 | 2199 #define UNGCPRO (gcprolist = gcpro1.next) |
2200 | |
26296
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2201 #else |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2202 |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2203 extern int gcpro_level; |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2204 |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2205 #define GCPRO1(varname) \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2206 {gcpro1.next = gcprolist; gcpro1.var = &varname; gcpro1.nvars = 1; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2207 gcpro1.level = gcpro_level++; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2208 gcprolist = &gcpro1; } |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2209 |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2210 #define GCPRO2(varname1, varname2) \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2211 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2212 gcpro1.level = gcpro_level; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2213 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2214 gcpro2.level = gcpro_level++; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2215 gcprolist = &gcpro2; } |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2216 |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2217 #define GCPRO3(varname1, varname2, varname3) \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2218 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2219 gcpro1.level = gcpro_level; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2220 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2221 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2222 gcpro3.level = gcpro_level++; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2223 gcprolist = &gcpro3; } |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2224 |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2225 #define GCPRO4(varname1, varname2, varname3, varname4) \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2226 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2227 gcpro1.level = gcpro_level; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2228 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2229 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2230 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2231 gcpro4.level = gcpro_level++; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2232 gcprolist = &gcpro4; } |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2233 |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2234 #define GCPRO5(varname1, varname2, varname3, varname4, varname5) \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2235 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2236 gcpro1.level = gcpro_level; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2237 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2238 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2239 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2240 gcpro5.next = &gcpro4; gcpro5.var = &varname5; gcpro5.nvars = 1; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2241 gcpro5.level = gcpro_level++; \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2242 gcprolist = &gcpro5; } |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2243 |
43616 | 2244 #define GCPRO6(varname1, varname2, varname3, varname4, varname5, varname6) \ |
2245 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \ | |
2246 gcpro1.level = gcpro_level; \ | |
2247 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \ | |
2248 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \ | |
2249 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \ | |
2250 gcpro5.next = &gcpro4; gcpro5.var = &varname5; gcpro5.nvars = 1; \ | |
2251 gcpro6.next = &gcpro5; gcpro6.var = &varname6; gcpro6.nvars = 1; \ | |
2252 gcpro6.level = gcpro_level++; \ | |
2253 gcprolist = &gcpro6; } | |
2254 | |
26296
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2255 #define UNGCPRO \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2256 ((--gcpro_level != gcpro1.level) \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2257 ? (abort (), 0) \ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2258 : ((gcprolist = gcpro1.next), 0)) |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2259 |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2260 #endif /* DEBUG_GCPRO */ |
27741
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2261 #endif /* GC_MARK_STACK != GC_MAKE_GCPROS_NOOPS */ |
ef732a190ead
(GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2262 |
26296
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2263 |
8560 | 2264 /* Evaluate expr, UNGCPRO, and then return the value of expr. */ |
8009
abbe65c17b55
(RETURN_UNGCPRO): Swallow semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
7906
diff
changeset
|
2265 #define RETURN_UNGCPRO(expr) \ |
25769
4399d55899d3
(RETURN_UNGCPRO): Use do-while (0) idiom.
Gerd Moellmann <gerd@gnu.org>
parents:
25765
diff
changeset
|
2266 do \ |
8009
abbe65c17b55
(RETURN_UNGCPRO): Swallow semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
7906
diff
changeset
|
2267 { \ |
abbe65c17b55
(RETURN_UNGCPRO): Swallow semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
7906
diff
changeset
|
2268 Lisp_Object ret_ungc_val; \ |
abbe65c17b55
(RETURN_UNGCPRO): Swallow semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
7906
diff
changeset
|
2269 ret_ungc_val = (expr); \ |
abbe65c17b55
(RETURN_UNGCPRO): Swallow semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
7906
diff
changeset
|
2270 UNGCPRO; \ |
abbe65c17b55
(RETURN_UNGCPRO): Swallow semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
7906
diff
changeset
|
2271 return ret_ungc_val; \ |
abbe65c17b55
(RETURN_UNGCPRO): Swallow semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
7906
diff
changeset
|
2272 } \ |
25769
4399d55899d3
(RETURN_UNGCPRO): Use do-while (0) idiom.
Gerd Moellmann <gerd@gnu.org>
parents:
25765
diff
changeset
|
2273 while (0) |
26296
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2274 |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2275 /* Call staticpro (&var) to protect static variable `var'. */ |
e5c745f5a9fc
(struct gcpro) [DEBUG_GCPRO]: New field `level'.
Richard M. Stallman <rms@gnu.org>
parents:
26275
diff
changeset
|
2276 |
109099 | 2277 void staticpro (Lisp_Object *); |
302 | 2278 |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2279 /* Declare a Lisp-callable function. The MAXARGS parameter has the same |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2280 meaning as in the DEFUN macro, and is used to construct a prototype. */ |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2281 /* We can use the same trick as in the DEFUN macro to generate the |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2282 appropriate prototype. */ |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2283 #define EXFUN(fnname, maxargs) \ |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2284 extern Lisp_Object fnname DEFUN_ARGS_ ## maxargs |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2285 |
20297
bf0a54297d95
Add more prototypes and declarations. Forward declare
Andreas Schwab <schwab@suse.de>
parents:
20123
diff
changeset
|
2286 /* Forward declarations for prototypes. */ |
bf0a54297d95
Add more prototypes and declarations. Forward declare
Andreas Schwab <schwab@suse.de>
parents:
20123
diff
changeset
|
2287 struct window; |
bf0a54297d95
Add more prototypes and declarations. Forward declare
Andreas Schwab <schwab@suse.de>
parents:
20123
diff
changeset
|
2288 struct frame; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2289 |
302 | 2290 /* Defined in data.c */ |
2291 extern Lisp_Object Qnil, Qt, Qquote, Qlambda, Qsubr, Qunbound; | |
2292 extern Lisp_Object Qerror_conditions, Qerror_message, Qtop_level; | |
2293 extern Lisp_Object Qerror, Qquit, Qwrong_type_argument, Qargs_out_of_range; | |
2294 extern Lisp_Object Qvoid_variable, Qvoid_function; | |
2295 extern Lisp_Object Qsetting_constant, Qinvalid_read_syntax; | |
2296 extern Lisp_Object Qinvalid_function, Qwrong_number_of_arguments, Qno_catch; | |
53111 | 2297 extern Lisp_Object Qend_of_file, Qarith_error, Qmark_inactive; |
302 | 2298 extern Lisp_Object Qbeginning_of_buffer, Qend_of_buffer, Qbuffer_read_only; |
53111 | 2299 extern Lisp_Object Qtext_read_only; |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
2300 extern Lisp_Object Qinteractive_form; |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2301 extern Lisp_Object Qcircular_list; |
53111 | 2302 extern Lisp_Object Qintegerp, Qnatnump, Qwholenump, Qsymbolp, Qlistp, Qconsp; |
2303 extern Lisp_Object Qstringp, Qarrayp, Qsequencep, Qbufferp; | |
2304 extern Lisp_Object Qchar_or_string_p, Qmarkerp, Qinteger_or_marker_p, Qvectorp; | |
2305 extern Lisp_Object Qbuffer_or_string_p; | |
2306 extern Lisp_Object Qboundp, Qfboundp; | |
2307 extern Lisp_Object Qchar_table_p, Qvector_or_char_table_p; | |
2308 | |
2309 extern Lisp_Object Qcdr; | |
302 | 2310 |
2653
d547e1a7eb9b
* lisp.h (CHAR_ALT, CHAR_SUPER, CHAR_HYPER): New constants, in
Jim Blandy <jimb@redhat.com>
parents:
2605
diff
changeset
|
2311 extern Lisp_Object Qrange_error, Qdomain_error, Qsingularity_error; |
d547e1a7eb9b
* lisp.h (CHAR_ALT, CHAR_SUPER, CHAR_HYPER): New constants, in
Jim Blandy <jimb@redhat.com>
parents:
2605
diff
changeset
|
2312 extern Lisp_Object Qoverflow_error, Qunderflow_error; |
2155
3ec142562a65
(Qrange_error, Qdomain_error, Qsingularity_error):
Richard M. Stallman <rms@gnu.org>
parents:
2014
diff
changeset
|
2313 |
53111 | 2314 extern Lisp_Object Qfloatp; |
2315 extern Lisp_Object Qnumberp, Qnumber_or_marker_p; | |
2316 | |
2317 extern Lisp_Object Qinteger; | |
302 | 2318 |
102160
c2cff0e96ec7
Define Qfont_spec, Qfont_entity, Qfont_object extern.
Chong Yidong <cyd@stupidchicken.com>
parents:
101965
diff
changeset
|
2319 extern Lisp_Object Qfont_spec, Qfont_entity, Qfont_object; |
c2cff0e96ec7
Define Qfont_spec, Qfont_entity, Qfont_object extern.
Chong Yidong <cyd@stupidchicken.com>
parents:
101965
diff
changeset
|
2320 |
109099 | 2321 extern void circular_list_error (Lisp_Object) NO_RETURN; |
54628
d0210728ec3f
(Finteractive_form): Declare.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54555
diff
changeset
|
2322 EXFUN (Finteractive_form, 1); |
106095
32eb9a991725
(Fbyteorder, init_font, Ffont_get_system_font): Declare.
Andreas Schwab <schwab@linux-m68k.org>
parents:
106085
diff
changeset
|
2323 EXFUN (Fbyteorder, 0); |
39766
2a0aa5b942d7
(circular_list_error): Add prototype.
Gerd Moellmann <gerd@gnu.org>
parents:
39710
diff
changeset
|
2324 |
53111 | 2325 /* Defined in frame.c */ |
2326 extern Lisp_Object Qframep; | |
2327 | |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2328 EXFUN (Feq, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2329 EXFUN (Fnull, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2330 EXFUN (Flistp, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2331 EXFUN (Fconsp, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2332 EXFUN (Fatom, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2333 EXFUN (Fnlistp, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2334 EXFUN (Fintegerp, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2335 EXFUN (Fnatnump, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2336 EXFUN (Fsymbolp, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2337 EXFUN (Fvectorp, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2338 EXFUN (Fstringp, 1); |
20625
a9c4bf3f4e46
(STRING_MULTIBYTE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20569
diff
changeset
|
2339 EXFUN (Fmultibyte_string_p, 1); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2340 EXFUN (Farrayp, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2341 EXFUN (Fsequencep, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2342 EXFUN (Fbufferp, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2343 EXFUN (Fmarkerp, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2344 EXFUN (Fsubrp, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2345 EXFUN (Fchar_or_string_p, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2346 EXFUN (Finteger_or_marker_p, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2347 EXFUN (Ffloatp, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2348 EXFUN (Finteger_or_floatp, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2349 EXFUN (Finteger_or_float_or_marker_p, 1); |
302 | 2350 |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2351 EXFUN (Fcar, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2352 EXFUN (Fcar_safe, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2353 EXFUN (Fcdr, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2354 EXFUN (Fcdr_safe, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2355 EXFUN (Fsetcar, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2356 EXFUN (Fsetcdr, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2357 EXFUN (Fboundp, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2358 EXFUN (Ffboundp, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2359 EXFUN (Fmakunbound, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2360 EXFUN (Ffmakunbound, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2361 EXFUN (Fsymbol_function, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2362 EXFUN (Fsymbol_plist, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2363 EXFUN (Fsymbol_name, 1); |
109099 | 2364 extern Lisp_Object indirect_function (Lisp_Object); |
68758
13c1b7c5f555
* data.c (Findirect_function): Add NOERROR arg. All callers changed
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
2365 EXFUN (Findirect_function, 2); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2366 EXFUN (Ffset, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2367 EXFUN (Fsetplist, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2368 EXFUN (Fsymbol_value, 1); |
109099 | 2369 extern Lisp_Object find_symbol_value (Lisp_Object); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2370 EXFUN (Fset, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2371 EXFUN (Fdefault_value, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2372 EXFUN (Fset_default, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2373 EXFUN (Fdefault_boundp, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2374 EXFUN (Fmake_local_variable, 1); |
19224
db9418ba5d32
(Flocal_variable_p, Ffind_operation_coding_system): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
19119
diff
changeset
|
2375 EXFUN (Flocal_variable_p, 2); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2376 EXFUN (Flocal_variable_if_set_p, 2); |
302 | 2377 |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2378 EXFUN (Faref, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2379 EXFUN (Faset, 3); |
302 | 2380 |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2381 EXFUN (Fstring_to_number, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2382 EXFUN (Fnumber_to_string, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2383 EXFUN (Feqlsign, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2384 EXFUN (Fgtr, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2385 EXFUN (Flss, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2386 EXFUN (Fgeq, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2387 EXFUN (Fleq, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2388 EXFUN (Fneq, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2389 EXFUN (Fzerop, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2390 EXFUN (Fplus, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2391 EXFUN (Fminus, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2392 EXFUN (Ftimes, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2393 EXFUN (Fquo, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2394 EXFUN (Frem, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2395 EXFUN (Fmax, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2396 EXFUN (Fmin, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2397 EXFUN (Flogand, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2398 EXFUN (Flogior, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2399 EXFUN (Flogxor, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2400 EXFUN (Flognot, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2401 EXFUN (Flsh, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2402 EXFUN (Fash, 2); |
302 | 2403 |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2404 EXFUN (Fadd1, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2405 EXFUN (Fsub1, 1); |
34154
88440ae23652
(Fmake_variable_buffer_local, Fbuffer_file_name): Declare.
Ken Raeburn <raeburn@raeburn.org>
parents:
33508
diff
changeset
|
2406 EXFUN (Fmake_variable_buffer_local, 1); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2407 |
95112
0835cb21d60e
* lisp.h (indirect_variable):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94994
diff
changeset
|
2408 extern struct Lisp_Symbol *indirect_variable (struct Lisp_Symbol *); |
109099 | 2409 extern Lisp_Object long_to_cons (unsigned long); |
2410 extern unsigned long cons_to_long (Lisp_Object); | |
2411 extern void args_out_of_range (Lisp_Object, Lisp_Object) NO_RETURN; | |
2412 extern void args_out_of_range_3 (Lisp_Object, Lisp_Object, | |
2413 Lisp_Object) NO_RETURN; | |
2414 extern Lisp_Object wrong_type_argument (Lisp_Object, Lisp_Object) NO_RETURN; | |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
2415 extern Lisp_Object do_symval_forwarding (union Lisp_Fwd *); |
108308
ee0a08d8887e
Try and fix unbind_to when localness of binding has changed
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
108223
diff
changeset
|
2416 extern void set_internal (Lisp_Object, Lisp_Object, Lisp_Object, int); |
109099 | 2417 extern void syms_of_data (void); |
2418 extern void init_data (void); | |
2419 extern void swap_in_global_binding (struct Lisp_Symbol *); | |
302 | 2420 |
11934
4b82fb5bde27
(Foverlay_start, Foverlay_end): Declare these functions.
Karl Heuer <kwzh@gnu.org>
parents:
11913
diff
changeset
|
2421 /* Defined in cmds.c */ |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2422 EXFUN (Fend_of_line, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2423 EXFUN (Fforward_char, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2424 EXFUN (Fforward_line, 1); |
109099 | 2425 extern void syms_of_cmds (void); |
2426 extern void keys_of_cmds (void); | |
11934
4b82fb5bde27
(Foverlay_start, Foverlay_end): Declare these functions.
Karl Heuer <kwzh@gnu.org>
parents:
11913
diff
changeset
|
2427 |
17037
af637c0168ad
(CHARACTERBITS, GLYPH_MASK_REV_DIR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
16913
diff
changeset
|
2428 /* Defined in coding.c */ |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2429 EXFUN (Fcoding_system_p, 1); |
90156
26485da86a22
(Fcoding_system_base, Fcoding_system_eol_type)
Kenichi Handa <handa@m17n.org>
parents:
90147
diff
changeset
|
2430 EXFUN (Fcoding_system_base, 1); |
26485da86a22
(Fcoding_system_base, Fcoding_system_eol_type)
Kenichi Handa <handa@m17n.org>
parents:
90147
diff
changeset
|
2431 EXFUN (Fcoding_system_eol_type, 1); |
26485da86a22
(Fcoding_system_base, Fcoding_system_eol_type)
Kenichi Handa <handa@m17n.org>
parents:
90147
diff
changeset
|
2432 EXFUN (Fcheck_coding_system, 1); |
19757
328233592e3b
(Fread_coding_system): Update decl.
Richard M. Stallman <rms@gnu.org>
parents:
19698
diff
changeset
|
2433 EXFUN (Fread_coding_system, 2); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2434 EXFUN (Fread_non_nil_coding_system, 1); |
19224
db9418ba5d32
(Flocal_variable_p, Ffind_operation_coding_system): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
19119
diff
changeset
|
2435 EXFUN (Ffind_operation_coding_system, MANY); |
42756
711b64458618
(adjust_after_replace_noundo)
Pavel Janík <Pavel@Janik.cz>
parents:
42466
diff
changeset
|
2436 EXFUN (Fupdate_coding_systems_internal, 0); |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2437 EXFUN (Fencode_coding_string, 4); |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2438 EXFUN (Fdecode_coding_string, 4); |
109099 | 2439 extern Lisp_Object detect_coding_system (const unsigned char *, EMACS_INT, |
2440 EMACS_INT, int, int, Lisp_Object); | |
2441 extern void init_coding (void); | |
2442 extern void init_coding_once (void); | |
2443 extern void syms_of_coding (void); | |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2444 |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2445 /* Defined in character.c */ |
109099 | 2446 extern void init_character_once (void); |
2447 extern void syms_of_character (void); | |
89520 | 2448 EXFUN (Funibyte_char_to_multibyte, 1); |
17037
af637c0168ad
(CHARACTERBITS, GLYPH_MASK_REV_DIR): New macros.
Karl Heuer <kwzh@gnu.org>
parents:
16913
diff
changeset
|
2449 |
19574 | 2450 /* Defined in charset.c */ |
2451 EXFUN (Fchar_bytes, 1); | |
21515 | 2452 EXFUN (Fchar_width, 1); |
27885 | 2453 EXFUN (Fstring, MANY); |
109099 | 2454 extern EMACS_INT chars_in_text (const unsigned char *, EMACS_INT); |
2455 extern EMACS_INT multibyte_chars_in_text (const unsigned char *, EMACS_INT); | |
2456 extern int multibyte_char_to_unibyte (int, Lisp_Object); | |
2457 extern int multibyte_char_to_unibyte_safe (int); | |
21038
9b33c6a5b4dc
(Vnonascii_translate_table, Qcharset): New variable decls.
Richard M. Stallman <rms@gnu.org>
parents:
20723
diff
changeset
|
2458 extern Lisp_Object Qcharset; |
109099 | 2459 extern void init_charset (void); |
2460 extern void init_charset_once (void); | |
2461 extern void syms_of_charset (void); | |
89483 | 2462 /* Structure forward declarations. */ |
2463 struct charset; | |
19574 | 2464 |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2465 /* Defined in composite.c */ |
109099 | 2466 extern void syms_of_composite (void); |
19574 | 2467 |
11934
4b82fb5bde27
(Foverlay_start, Foverlay_end): Declare these functions.
Karl Heuer <kwzh@gnu.org>
parents:
11913
diff
changeset
|
2468 /* Defined in syntax.c */ |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2469 EXFUN (Fforward_word, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2470 EXFUN (Fskip_chars_forward, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2471 EXFUN (Fskip_chars_backward, 2); |
20297
bf0a54297d95
Add more prototypes and declarations. Forward declare
Andreas Schwab <schwab@suse.de>
parents:
20123
diff
changeset
|
2472 EXFUN (Fsyntax_table_p, 1); |
bf0a54297d95
Add more prototypes and declarations. Forward declare
Andreas Schwab <schwab@suse.de>
parents:
20123
diff
changeset
|
2473 EXFUN (Fsyntax_table, 0); |
bf0a54297d95
Add more prototypes and declarations. Forward declare
Andreas Schwab <schwab@suse.de>
parents:
20123
diff
changeset
|
2474 EXFUN (Fset_syntax_table, 1); |
109099 | 2475 extern void init_syntax_once (void); |
2476 extern void syms_of_syntax (void); | |
11934
4b82fb5bde27
(Foverlay_start, Foverlay_end): Declare these functions.
Karl Heuer <kwzh@gnu.org>
parents:
11913
diff
changeset
|
2477 |
302 | 2478 /* Defined in fns.c */ |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2479 extern Lisp_Object QCrehash_size, QCrehash_threshold; |
31015
0a24ffcc4061
(set_time_zone_rule): Add prototype.
Gerd Moellmann <gerd@gnu.org>
parents:
30943
diff
changeset
|
2480 extern int use_dialog_box; |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
2481 extern int use_file_dialog; |
109099 | 2482 extern int next_almost_prime (int); |
2483 extern Lisp_Object larger_vector (Lisp_Object, int, Lisp_Object); | |
2484 extern void sweep_weak_hash_tables (void); | |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
2485 extern Lisp_Object Qcursor_in_echo_area; |
302 | 2486 extern Lisp_Object Qstring_lessp; |
2487 extern Lisp_Object Vfeatures; | |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2488 extern Lisp_Object QCsize, QCtest, QCweakness, Qequal, Qeq, Qeql; |
109099 | 2489 unsigned sxhash (Lisp_Object, int); |
2490 Lisp_Object make_hash_table (Lisp_Object, Lisp_Object, Lisp_Object, | |
2491 Lisp_Object, Lisp_Object, Lisp_Object, | |
2492 Lisp_Object); | |
2493 Lisp_Object copy_hash_table (struct Lisp_Hash_Table *); | |
2494 int hash_lookup (struct Lisp_Hash_Table *, Lisp_Object, unsigned *); | |
2495 int hash_put (struct Lisp_Hash_Table *, Lisp_Object, Lisp_Object, | |
2496 unsigned); | |
2497 void hash_clear (struct Lisp_Hash_Table *); | |
2498 void init_weak_hash_tables (void); | |
2499 extern void init_fns (void); | |
25017
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2500 EXFUN (Fsxhash, 1); |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2501 EXFUN (Fmake_hash_table, MANY); |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2502 EXFUN (Fmakehash, 1); |
25366
78de9d041747
Add prototype for copy_hash_table and Fcopy_hash_table.
Gerd Moellmann <gerd@gnu.org>
parents:
25353
diff
changeset
|
2503 EXFUN (Fcopy_hash_table, 1); |
25017
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2504 EXFUN (Fhash_table_count, 1); |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2505 EXFUN (Fhash_table_rehash_size, 1); |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2506 EXFUN (Fhash_table_rehash_threshold, 1); |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2507 EXFUN (Fhash_table_size, 1); |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2508 EXFUN (Fhash_table_test, 1); |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2509 EXFUN (Fhash_table_weak, 1); |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2510 EXFUN (Fhash_table_p, 1); |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2511 EXFUN (Fclrhash, 1); |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2512 EXFUN (Fgethash, 3); |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2513 EXFUN (Fputhash, 3); |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2514 EXFUN (Fremhash, 2); |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2515 EXFUN (Fmaphash, 2); |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2516 EXFUN (Fdefine_hash_table_test, 3); |
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2517 |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2518 EXFUN (Fidentity, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2519 EXFUN (Frandom, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2520 EXFUN (Flength, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2521 EXFUN (Fsafe_length, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2522 EXFUN (Fappend, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2523 EXFUN (Fconcat, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2524 EXFUN (Fvconcat, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2525 EXFUN (Fcopy_sequence, 1); |
21038
9b33c6a5b4dc
(Vnonascii_translate_table, Qcharset): New variable decls.
Richard M. Stallman <rms@gnu.org>
parents:
20723
diff
changeset
|
2526 EXFUN (Fstring_make_multibyte, 1); |
9b33c6a5b4dc
(Vnonascii_translate_table, Qcharset): New variable decls.
Richard M. Stallman <rms@gnu.org>
parents:
20723
diff
changeset
|
2527 EXFUN (Fstring_make_unibyte, 1); |
9b33c6a5b4dc
(Vnonascii_translate_table, Qcharset): New variable decls.
Richard M. Stallman <rms@gnu.org>
parents:
20723
diff
changeset
|
2528 EXFUN (Fstring_as_multibyte, 1); |
9b33c6a5b4dc
(Vnonascii_translate_table, Qcharset): New variable decls.
Richard M. Stallman <rms@gnu.org>
parents:
20723
diff
changeset
|
2529 EXFUN (Fstring_as_unibyte, 1); |
49866
c1513decc2e5
(Fcancel_kbd_macro_events, Fstring_to_multibyte): Add
Andreas Schwab <schwab@suse.de>
parents:
49665
diff
changeset
|
2530 EXFUN (Fstring_to_multibyte, 1); |
97232 | 2531 EXFUN (Fstring_to_unibyte, 1); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2532 EXFUN (Fsubstring, 3); |
110543
a89eabac600d
Fix int/EMACS_INT usage in fns.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110515
diff
changeset
|
2533 extern Lisp_Object substring_both (Lisp_Object, EMACS_INT, EMACS_INT, |
a89eabac600d
Fix int/EMACS_INT usage in fns.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110515
diff
changeset
|
2534 EMACS_INT, EMACS_INT); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2535 EXFUN (Fnth, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2536 EXFUN (Fnthcdr, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2537 EXFUN (Fmemq, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2538 EXFUN (Fassq, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2539 EXFUN (Fassoc, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2540 EXFUN (Felt, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2541 EXFUN (Fmember, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2542 EXFUN (Frassq, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2543 EXFUN (Fdelq, 2); |
58092 | 2544 EXFUN (Fdelete, 2); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2545 EXFUN (Fsort, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2546 EXFUN (Freverse, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2547 EXFUN (Fnreverse, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2548 EXFUN (Fget, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2549 EXFUN (Fput, 3); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2550 EXFUN (Fequal, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2551 EXFUN (Ffillarray, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2552 EXFUN (Fnconc, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2553 EXFUN (Fmapcar, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2554 EXFUN (Fmapconcat, 3); |
109099 | 2555 extern Lisp_Object do_yes_or_no_p (Lisp_Object); |
23772
afe440aabd55
(Frequire): Update declaration.
Kenichi Handa <handa@m17n.org>
parents:
23721
diff
changeset
|
2556 EXFUN (Frequire, 3); |
39860
32241ddd6e73
(Ffeaturep, Fprovide): Update prototype.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39810
diff
changeset
|
2557 EXFUN (Fprovide, 2); |
109099 | 2558 extern Lisp_Object concat2 (Lisp_Object, Lisp_Object); |
2559 extern Lisp_Object concat3 (Lisp_Object, Lisp_Object, Lisp_Object); | |
2560 extern Lisp_Object nconc2 (Lisp_Object, Lisp_Object); | |
2561 extern Lisp_Object assq_no_quit (Lisp_Object, Lisp_Object); | |
2562 extern Lisp_Object assoc_no_quit (Lisp_Object, Lisp_Object); | |
2563 extern void clear_string_char_byte_cache (void); | |
2564 extern EMACS_INT string_char_to_byte (Lisp_Object, EMACS_INT); | |
2565 extern EMACS_INT string_byte_to_char (Lisp_Object, EMACS_INT); | |
2566 extern Lisp_Object string_make_multibyte (Lisp_Object); | |
2567 extern Lisp_Object string_to_multibyte (Lisp_Object); | |
2568 extern Lisp_Object string_make_unibyte (Lisp_Object); | |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2569 EXFUN (Fcopy_alist, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2570 EXFUN (Fplist_get, 2); |
25017
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
2571 EXFUN (Fplist_put, 3); |
44009
e67bcd447b16
(Fplist_member): Add prototype.
Pavel Janík <Pavel@Janik.cz>
parents:
43816
diff
changeset
|
2572 EXFUN (Fplist_member, 2); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2573 EXFUN (Frassoc, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2574 EXFUN (Fstring_equal, 2); |
21842
870b55420529
Declare Fcompare_strings.
Andreas Schwab <schwab@suse.de>
parents:
21826
diff
changeset
|
2575 EXFUN (Fcompare_strings, 7); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2576 EXFUN (Fstring_lessp, 2); |
109099 | 2577 extern void syms_of_fns (void); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2578 |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2579 /* Defined in floatfns.c */ |
109099 | 2580 extern double extract_float (Lisp_Object); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2581 EXFUN (Ffloat, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2582 EXFUN (Ftruncate, 2); |
109099 | 2583 extern void init_floatfns (void); |
2584 extern void syms_of_floatfns (void); | |
109653
9cfca8c9fb07
Fix missing prototypes for HAVE_NS (caused crash) and vrious warnings.
Jan D <jan.h.d@swipnet.se>
parents:
109635
diff
changeset
|
2585 extern Lisp_Object fmod_float (Lisp_Object x, Lisp_Object y); |
302 | 2586 |
53884
1b20aa00ebc2
(syms_of_fringe, init_fringe, init_fringe_once):
Kim F. Storm <storm@cua.dk>
parents:
53669
diff
changeset
|
2587 /* Defined in fringe.c */ |
109099 | 2588 extern void syms_of_fringe (void); |
2589 extern void init_fringe (void); | |
2590 extern void init_fringe_once (void); | |
53884
1b20aa00ebc2
(syms_of_fringe, init_fringe, init_fringe_once):
Kim F. Storm <storm@cua.dk>
parents:
53669
diff
changeset
|
2591 |
54340 | 2592 /* Defined in image.c */ |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
2593 extern Lisp_Object QCascent, QCmargin, QCrelief, Qcount, Qextension_data; |
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
2594 extern Lisp_Object QCconversion, QCcolor_symbols, QCheuristic_mask; |
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
2595 extern Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask; |
56287
f336a26a714d
Declare Finit_image_library.
Andreas Schwab <schwab@suse.de>
parents:
56242
diff
changeset
|
2596 EXFUN (Finit_image_library, 2); |
109099 | 2597 extern void syms_of_image (void); |
2598 extern void init_image (void); | |
54340 | 2599 |
10396
47938020b39d
Use large constants for Lisp_Misc_Type.
Karl Heuer <kwzh@gnu.org>
parents:
10387
diff
changeset
|
2600 /* Defined in insdel.c */ |
39245
76c1a0ab4517
(Qinhibit_modification_hooks): Declare.
Gerd Moellmann <gerd@gnu.org>
parents:
39194
diff
changeset
|
2601 extern Lisp_Object Qinhibit_modification_hooks; |
102753
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2602 extern void move_gap (EMACS_INT); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2603 extern void move_gap_both (EMACS_INT, EMACS_INT); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2604 extern void make_gap (EMACS_INT); |
102759
ec3ec7f5d54e
* editfns.c (general_insert_function): Adjust to insdel.c changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102753
diff
changeset
|
2605 extern EMACS_INT copy_text (const unsigned char *, unsigned char *, |
ec3ec7f5d54e
* editfns.c (general_insert_function): Adjust to insdel.c changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102753
diff
changeset
|
2606 EMACS_INT, int, int); |
ec3ec7f5d54e
* editfns.c (general_insert_function): Adjust to insdel.c changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102753
diff
changeset
|
2607 extern EMACS_INT count_size_as_multibyte (const unsigned char *, EMACS_INT); |
102753
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2608 extern int count_combining_before (const unsigned char *, |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2609 EMACS_INT, EMACS_INT, EMACS_INT); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2610 extern int count_combining_after (const unsigned char *, |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2611 EMACS_INT, EMACS_INT, EMACS_INT); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2612 extern void insert (const unsigned char *, EMACS_INT); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2613 extern void insert_and_inherit (const unsigned char *, EMACS_INT); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2614 extern void insert_1 (const unsigned char *, EMACS_INT, int, int, int); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2615 extern void insert_1_both (const unsigned char *, EMACS_INT, EMACS_INT, |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2616 int, int, int); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2617 extern void insert_from_gap (EMACS_INT, EMACS_INT); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2618 extern void insert_from_string (Lisp_Object, EMACS_INT, EMACS_INT, |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2619 EMACS_INT, EMACS_INT, int); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2620 extern void insert_from_buffer (struct buffer *, EMACS_INT, EMACS_INT, int); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2621 extern void insert_char (int); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2622 extern void insert_string (const char *); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2623 extern void insert_before_markers (const unsigned char *, EMACS_INT); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2624 extern void insert_before_markers_and_inherit (const unsigned char *, |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2625 EMACS_INT); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2626 extern void insert_from_string_before_markers (Lisp_Object, EMACS_INT, |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2627 EMACS_INT, EMACS_INT, |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2628 EMACS_INT, int); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2629 extern void del_range (EMACS_INT, EMACS_INT); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2630 extern Lisp_Object del_range_1 (EMACS_INT, EMACS_INT, int, int); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2631 extern void del_range_byte (EMACS_INT, EMACS_INT, int); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2632 extern void del_range_both (EMACS_INT, EMACS_INT, EMACS_INT, EMACS_INT, int); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2633 extern Lisp_Object del_range_2 (EMACS_INT, EMACS_INT, |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2634 EMACS_INT, EMACS_INT, int); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2635 extern void modify_region (struct buffer *, EMACS_INT, EMACS_INT, int); |
102759
ec3ec7f5d54e
* editfns.c (general_insert_function): Adjust to insdel.c changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102753
diff
changeset
|
2636 extern void prepare_to_modify_buffer (EMACS_INT, EMACS_INT, EMACS_INT *); |
ec3ec7f5d54e
* editfns.c (general_insert_function): Adjust to insdel.c changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102753
diff
changeset
|
2637 extern void signal_before_change (EMACS_INT, EMACS_INT, EMACS_INT *); |
102753
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2638 extern void signal_after_change (EMACS_INT, EMACS_INT, EMACS_INT); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2639 extern void adjust_after_replace (EMACS_INT, EMACS_INT, Lisp_Object, |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2640 EMACS_INT, EMACS_INT); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2641 extern void adjust_after_replace_noundo (EMACS_INT, EMACS_INT, EMACS_INT, |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2642 EMACS_INT, EMACS_INT, EMACS_INT); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2643 extern void adjust_after_insert (EMACS_INT, EMACS_INT, EMACS_INT, |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2644 EMACS_INT, EMACS_INT); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2645 extern void adjust_markers_for_delete (EMACS_INT, EMACS_INT, |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2646 EMACS_INT, EMACS_INT); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2647 extern void replace_range (EMACS_INT, EMACS_INT, Lisp_Object, int, int, int); |
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2648 extern void replace_range_2 (EMACS_INT, EMACS_INT, EMACS_INT, EMACS_INT, |
109313
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2649 const char *, EMACS_INT, EMACS_INT, int); |
102753
b6116169967f
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102736
diff
changeset
|
2650 extern void syms_of_insdel (void); |
10396
47938020b39d
Use large constants for Lisp_Misc_Type.
Karl Heuer <kwzh@gnu.org>
parents:
10387
diff
changeset
|
2651 |
16133 | 2652 /* Defined in dispnew.c */ |
25672
68068da11161
(selected_frame): Add external declaration.
Gerd Moellmann <gerd@gnu.org>
parents:
25556
diff
changeset
|
2653 extern Lisp_Object selected_frame; |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2654 extern Lisp_Object Vwindow_system_version; |
43713
f92c4d87863a
Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43699
diff
changeset
|
2655 extern EMACS_INT baud_rate; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2656 EXFUN (Fding, 1); |
25450
b5c133b3bfa0
Add declarations for some functions.
Andreas Schwab <schwab@suse.de>
parents:
25421
diff
changeset
|
2657 EXFUN (Fredraw_frame, 1); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2658 EXFUN (Fredraw_display, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2659 EXFUN (Fsleep_for, 2); |
71796 | 2660 EXFUN (Fredisplay, 1); |
109099 | 2661 extern Lisp_Object sit_for (Lisp_Object, int, int); |
2662 extern void init_display (void); | |
2663 extern void syms_of_display (void); | |
16133 | 2664 |
10396
47938020b39d
Use large constants for Lisp_Misc_Type.
Karl Heuer <kwzh@gnu.org>
parents:
10387
diff
changeset
|
2665 /* Defined in xdisp.c */ |
34796
560b081d8800
(Qinhibit_point_motion_hooks): Declare extern.
Gerd Moellmann <gerd@gnu.org>
parents:
34534
diff
changeset
|
2666 extern Lisp_Object Qinhibit_point_motion_hooks; |
31447
12a61566fea1
(Qdisplay): Declare extern.
Gerd Moellmann <gerd@gnu.org>
parents:
31207
diff
changeset
|
2667 extern Lisp_Object Qinhibit_redisplay, Qdisplay; |
37042
a644f4966169
(Qinhibit_eval_during_redisplay): Declare extern.
Gerd Moellmann <gerd@gnu.org>
parents:
36941
diff
changeset
|
2668 extern Lisp_Object Qinhibit_eval_during_redisplay; |
29636
04d079a75b41
(Qmessage_truncate_lines): External declaration.
Gerd Moellmann <gerd@gnu.org>
parents:
29443
diff
changeset
|
2669 extern Lisp_Object Qmessage_truncate_lines; |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2670 extern Lisp_Object Qmenu_bar_update_hook; |
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2671 extern Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions; |
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2672 extern Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map; |
109566
d03bc4a3fced
Add tool bar style text-image-horiz (text to the left of the image).
Jan D. <jan.h.d@swipnet.se>
parents:
109554
diff
changeset
|
2673 extern Lisp_Object Qimage, Qtext, Qboth, Qboth_horiz, Qtext_image_horiz; |
109554
b22b609d1fa7
* src/lisp.h (Fkill_emacs): Mark as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109548
diff
changeset
|
2674 extern Lisp_Object Qspace, Qcenter, QCalign_to; |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2675 extern Lisp_Object Qbar, Qhbar, Qbox, Qhollow; |
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2676 extern Lisp_Object Qleft_margin, Qright_margin; |
11191 | 2677 extern Lisp_Object Vmessage_log_max; |
109554
b22b609d1fa7
* src/lisp.h (Fkill_emacs): Mark as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109548
diff
changeset
|
2678 extern Lisp_Object QCdata, QCfile; |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2679 extern Lisp_Object QCmap; |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
2680 extern Lisp_Object Qrisky_local_variable; |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2681 extern Lisp_Object Vinhibit_redisplay; |
20625
a9c4bf3f4e46
(STRING_MULTIBYTE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20569
diff
changeset
|
2682 extern int message_enable_multibyte; |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2683 extern int noninteractive_need_newline; |
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2684 extern EMACS_INT scroll_margin; |
25353 | 2685 extern Lisp_Object echo_area_buffer[2]; |
109554
b22b609d1fa7
* src/lisp.h (Fkill_emacs): Mark as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109548
diff
changeset
|
2686 extern void add_to_log (const char *, Lisp_Object, Lisp_Object); |
109099 | 2687 extern void check_message_stack (void); |
2688 extern void setup_echo_area_for_printing (int); | |
2689 extern int push_message (void); | |
2690 extern Lisp_Object pop_message_unwind (Lisp_Object); | |
2691 extern Lisp_Object restore_message_unwind (Lisp_Object); | |
2692 extern void pop_message (void); | |
2693 extern void restore_message (void); | |
2694 extern Lisp_Object current_message (void); | |
110645
7d7a02c19d8c
Fix int/EMACS_INT use in xdisp.c and print.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110609
diff
changeset
|
2695 extern void set_message (const char *s, Lisp_Object, EMACS_INT, int); |
109099 | 2696 extern void clear_message (int, int); |
109313
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2697 extern void message (const char *, ...); |
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2698 extern void message_nolog (const char *, ...); |
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2699 extern void message1 (const char *); |
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2700 extern void message1_nolog (const char *); |
110645
7d7a02c19d8c
Fix int/EMACS_INT use in xdisp.c and print.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110609
diff
changeset
|
2701 extern void message2 (const char *, EMACS_INT, int); |
7d7a02c19d8c
Fix int/EMACS_INT use in xdisp.c and print.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110609
diff
changeset
|
2702 extern void message2_nolog (const char *, EMACS_INT, int); |
7d7a02c19d8c
Fix int/EMACS_INT use in xdisp.c and print.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110609
diff
changeset
|
2703 extern void message3 (Lisp_Object, EMACS_INT, int); |
7d7a02c19d8c
Fix int/EMACS_INT use in xdisp.c and print.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110609
diff
changeset
|
2704 extern void message3_nolog (Lisp_Object, EMACS_INT, int); |
110548
f7b98576d87f
Fix all EMACS_INT/int conversion errors in print.c (and related files).
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
110545
diff
changeset
|
2705 extern void message_dolog (const char *, EMACS_INT, int, int); |
109313
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2706 extern void message_with_string (const char *, Lisp_Object, int); |
109099 | 2707 extern void message_log_maybe_newline (void); |
2708 extern void update_echo_area (void); | |
110559
9c63d46e000c
Fix int/EMACS_INT use in keyboard.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110554
diff
changeset
|
2709 extern void truncate_echo_area (EMACS_INT); |
109099 | 2710 extern void redisplay (void); |
26865
87623e53b7c6
(QCtest, QCweakness, Qequal): Extern them.
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
2711 extern int check_point_in_composition |
110504
0fdd992ff057
Fix more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110503
diff
changeset
|
2712 (struct buffer *, EMACS_INT, struct buffer *, EMACS_INT); |
109099 | 2713 extern void redisplay_preserve_echo_area (int); |
2714 extern void prepare_menu_bars (void); | |
2715 | |
2716 void set_frame_cursor_types (struct frame *, Lisp_Object); | |
2717 extern void syms_of_xdisp (void); | |
2718 extern void init_xdisp (void); | |
2719 extern Lisp_Object safe_eval (Lisp_Object); | |
110645
7d7a02c19d8c
Fix int/EMACS_INT use in xdisp.c and print.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110609
diff
changeset
|
2720 extern int pos_visible_p (struct window *, EMACS_INT, int *, |
109099 | 2721 int *, int *, int *, int *, int *); |
10396
47938020b39d
Use large constants for Lisp_Misc_Type.
Karl Heuer <kwzh@gnu.org>
parents:
10387
diff
changeset
|
2722 |
106085
cd4cbab8bb21
Handle system default font and changing font parameters.
Jan Djärv <jan.h.d@swipnet.se>
parents:
105885
diff
changeset
|
2723 /* Defined in xsettings.c */ |
109099 | 2724 extern void syms_of_xsettings (void); |
106085
cd4cbab8bb21
Handle system default font and changing font parameters.
Jan Djärv <jan.h.d@swipnet.se>
parents:
105885
diff
changeset
|
2725 |
25748
6fddda6e635e
Add prototype for uninterrupt_malloc, memory_warnings,
Gerd Moellmann <gerd@gnu.org>
parents:
25737
diff
changeset
|
2726 /* Defined in vm-limit.c. */ |
109313
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2727 extern void memory_warnings (POINTER_TYPE *, void (*warnfun) (const char *)); |
28054
d53d22ce7f4b
(P_): Define based on PROTOTYPES, not __STDC__.
Dave Love <fx@gnu.org>
parents:
27885
diff
changeset
|
2728 |
302 | 2729 /* Defined in alloc.c */ |
109099 | 2730 extern void check_pure_size (void); |
110480
5290c80fda43
Fix some uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110314
diff
changeset
|
2731 extern void allocate_string_data (struct Lisp_String *, EMACS_INT, EMACS_INT); |
109099 | 2732 extern void reset_malloc_hooks (void); |
2733 extern void uninterrupt_malloc (void); | |
109313
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2734 extern void malloc_warning (const char *); |
109099 | 2735 extern void memory_full (void) NO_RETURN; |
2736 extern void buffer_memory_full (void) NO_RETURN; | |
2737 extern int survives_gc_p (Lisp_Object); | |
2738 extern void mark_object (Lisp_Object); | |
111632
e06fc3baed8c
* src/alloc.c (refill_memory_reserve): Move declaration ...
Dan Nicolaescu <dann@ics.uci.edu>
parents:
111629
diff
changeset
|
2739 extern void refill_memory_reserve (void); |
111629
6c24c5598611
Move declarations from .c files to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
111512
diff
changeset
|
2740 extern const char *pending_malloc_warning; |
302 | 2741 extern Lisp_Object Vpurify_flag; |
46304
76246741e5c2
(Vmemory_full): Add declaration.
Richard M. Stallman <rms@gnu.org>
parents:
46284
diff
changeset
|
2742 extern Lisp_Object Vmemory_full; |
109554
b22b609d1fa7
* src/lisp.h (Fkill_emacs): Mark as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109548
diff
changeset
|
2743 extern Lisp_Object *stack_base; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2744 EXFUN (Fcons, 2); |
71983 | 2745 EXFUN (list1, 1); |
21038
9b33c6a5b4dc
(Vnonascii_translate_table, Qcharset): New variable decls.
Richard M. Stallman <rms@gnu.org>
parents:
20723
diff
changeset
|
2746 EXFUN (list2, 2); |
9b33c6a5b4dc
(Vnonascii_translate_table, Qcharset): New variable decls.
Richard M. Stallman <rms@gnu.org>
parents:
20723
diff
changeset
|
2747 EXFUN (list3, 3); |
9b33c6a5b4dc
(Vnonascii_translate_table, Qcharset): New variable decls.
Richard M. Stallman <rms@gnu.org>
parents:
20723
diff
changeset
|
2748 EXFUN (list4, 4); |
9b33c6a5b4dc
(Vnonascii_translate_table, Qcharset): New variable decls.
Richard M. Stallman <rms@gnu.org>
parents:
20723
diff
changeset
|
2749 EXFUN (list5, 5); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2750 EXFUN (Flist, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2751 EXFUN (Fmake_list, 2); |
109099 | 2752 extern Lisp_Object allocate_misc (void); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2753 EXFUN (Fmake_vector, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2754 EXFUN (Fvector, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2755 EXFUN (Fmake_symbol, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2756 EXFUN (Fmake_marker, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2757 EXFUN (Fmake_string, 2); |
109099 | 2758 extern Lisp_Object build_string (const char *); |
110503
fda36a325177
Fix some more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110484
diff
changeset
|
2759 extern Lisp_Object make_string (const char *, EMACS_INT); |
fda36a325177
Fix some more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110484
diff
changeset
|
2760 extern Lisp_Object make_unibyte_string (const char *, EMACS_INT); |
fda36a325177
Fix some more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110484
diff
changeset
|
2761 extern Lisp_Object make_multibyte_string (const char *, EMACS_INT, EMACS_INT); |
109099 | 2762 extern Lisp_Object make_event_array (int, Lisp_Object *); |
110480
5290c80fda43
Fix some uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110314
diff
changeset
|
2763 extern Lisp_Object make_uninit_string (EMACS_INT); |
5290c80fda43
Fix some uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110314
diff
changeset
|
2764 extern Lisp_Object make_uninit_multibyte_string (EMACS_INT, EMACS_INT); |
110503
fda36a325177
Fix some more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110484
diff
changeset
|
2765 extern Lisp_Object make_string_from_bytes (const char *, EMACS_INT, EMACS_INT); |
fda36a325177
Fix some more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110484
diff
changeset
|
2766 extern Lisp_Object make_specified_string (const char *, |
fda36a325177
Fix some more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110484
diff
changeset
|
2767 EMACS_INT, EMACS_INT, int); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2768 EXFUN (Fpurecopy, 1); |
110503
fda36a325177
Fix some more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110484
diff
changeset
|
2769 extern Lisp_Object make_pure_string (const char *, EMACS_INT, EMACS_INT, int); |
105872
89183b6f6e9d
* process.c (socket_options): Make it const.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105840
diff
changeset
|
2770 extern Lisp_Object make_pure_c_string (const char *data); |
109099 | 2771 extern Lisp_Object pure_cons (Lisp_Object, Lisp_Object); |
2772 extern Lisp_Object make_pure_vector (EMACS_INT); | |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2773 EXFUN (Fgarbage_collect, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2774 EXFUN (Fmake_byte_code, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2775 EXFUN (Fmake_bool_vector, 2); |
13202
b307cd5c259f
(struct Lisp_Char_Table): New slot `purpose'.
Richard M. Stallman <rms@gnu.org>
parents:
13149
diff
changeset
|
2776 extern Lisp_Object Qchar_table_extra_slots; |
109099 | 2777 extern struct Lisp_Vector *allocate_vector (EMACS_INT); |
2778 extern struct Lisp_Vector *allocate_pseudovector (int memlen, int lisplen, EMACS_INT tag); | |
86160
1ede747999c6
* alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85764
diff
changeset
|
2779 #define ALLOCATE_PSEUDOVECTOR(typ,field,tag) \ |
1ede747999c6
* alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85764
diff
changeset
|
2780 ((typ*) \ |
1ede747999c6
* alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85764
diff
changeset
|
2781 allocate_pseudovector \ |
1ede747999c6
* alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85764
diff
changeset
|
2782 (VECSIZE (typ), PSEUDOVECSIZE (typ, field), tag)) |
109099 | 2783 extern struct Lisp_Hash_Table *allocate_hash_table (void); |
2784 extern struct window *allocate_window (void); | |
2785 extern struct frame *allocate_frame (void); | |
2786 extern struct Lisp_Process *allocate_process (void); | |
2787 extern struct terminal *allocate_terminal (void); | |
6657
28359458811c
(gc_in_progress): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
6458
diff
changeset
|
2788 extern int gc_in_progress; |
50748
7c1d1ca51ca7
(abort_on_gc): Add decl.
Richard M. Stallman <rms@gnu.org>
parents:
50539
diff
changeset
|
2789 extern int abort_on_gc; |
109099 | 2790 extern Lisp_Object make_float (double); |
2791 extern void display_malloc_warning (void); | |
2792 extern int inhibit_garbage_collection (void); | |
2793 extern Lisp_Object make_save_value (void *, int); | |
2794 extern void free_misc (Lisp_Object); | |
2795 extern void free_marker (Lisp_Object); | |
2796 extern void free_cons (struct Lisp_Cons *); | |
2797 extern void init_alloc_once (void); | |
2798 extern void init_alloc (void); | |
2799 extern void syms_of_alloc (void); | |
2800 extern struct buffer * allocate_buffer (void); | |
2801 extern int valid_lisp_object_p (Lisp_Object); | |
302 | 2802 |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2803 /* Defined in chartab.c */ |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2804 EXFUN (Fmake_char_table, 2); |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2805 EXFUN (Fchar_table_parent, 1); |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2806 EXFUN (Fset_char_table_parent, 2); |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2807 EXFUN (Fchar_table_extra_slot, 2); |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2808 EXFUN (Fset_char_table_extra_slot, 3); |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2809 EXFUN (Fchar_table_range, 2); |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2810 EXFUN (Fset_char_table_range, 3); |
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2811 EXFUN (Fset_char_table_default, 3); |
95430
04a952ac356f
* chartab.c (Foptimize_char_table, optimize_sub_char_table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
95188
diff
changeset
|
2812 EXFUN (Foptimize_char_table, 2); |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2813 EXFUN (Fmap_char_table, 2); |
109099 | 2814 extern Lisp_Object copy_char_table (Lisp_Object); |
2815 extern Lisp_Object sub_char_table_ref (Lisp_Object, int); | |
2816 extern Lisp_Object char_table_ref (Lisp_Object, int); | |
2817 extern Lisp_Object char_table_ref_and_range (Lisp_Object, int, | |
2818 int *, int *); | |
2819 extern Lisp_Object char_table_set (Lisp_Object, int, Lisp_Object); | |
2820 extern Lisp_Object char_table_set_range (Lisp_Object, int, int, | |
2821 Lisp_Object); | |
2822 extern int char_table_translate (Lisp_Object, int); | |
2823 extern void map_char_table (void (*) (Lisp_Object, Lisp_Object, | |
2824 Lisp_Object), | |
2825 Lisp_Object, Lisp_Object, Lisp_Object); | |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
2826 extern void map_char_table_for_charset (void (*c_function) (Lisp_Object, Lisp_Object), |
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
2827 Lisp_Object, Lisp_Object, |
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
2828 Lisp_Object, struct charset *, |
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
2829 unsigned, unsigned); |
109099 | 2830 extern void syms_of_chartab (void); |
88382
5e3e1d9d514f
(enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
Kenichi Handa <handa@m17n.org>
parents:
43176
diff
changeset
|
2831 |
302 | 2832 /* Defined in print.c */ |
2833 extern Lisp_Object Vprin1_to_string_buffer; | |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2834 extern Lisp_Object Vprint_level, Vprint_length; |
109099 | 2835 extern void debug_print (Lisp_Object); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2836 EXFUN (Fprin1, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2837 EXFUN (Fprin1_to_string, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2838 EXFUN (Fprinc, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2839 EXFUN (Fterpri, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2840 EXFUN (Fprint, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2841 EXFUN (Ferror_message_string, 1); |
302 | 2842 extern Lisp_Object Vstandard_output, Qstandard_output; |
439 | 2843 extern Lisp_Object Qexternal_debugging_output; |
109099 | 2844 extern void temp_output_buffer_setup (const char *); |
302 | 2845 extern int print_level, print_escape_newlines; |
2846 extern Lisp_Object Qprint_escape_newlines; | |
109313
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2847 extern void write_string (const char *, int); |
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2848 extern void write_string_1 (const char *, int, Lisp_Object); |
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2849 extern void print_error_message (Lisp_Object, Lisp_Object, const char *, |
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2850 Lisp_Object); |
20297
bf0a54297d95
Add more prototypes and declarations. Forward declare
Andreas Schwab <schwab@suse.de>
parents:
20123
diff
changeset
|
2851 extern Lisp_Object internal_with_output_to_temp_buffer |
109099 | 2852 (const char *, Lisp_Object (*) (Lisp_Object), Lisp_Object); |
2853 extern void float_to_string (unsigned char *, double); | |
2854 extern void syms_of_print (void); | |
20297
bf0a54297d95
Add more prototypes and declarations. Forward declare
Andreas Schwab <schwab@suse.de>
parents:
20123
diff
changeset
|
2855 |
bf0a54297d95
Add more prototypes and declarations. Forward declare
Andreas Schwab <schwab@suse.de>
parents:
20123
diff
changeset
|
2856 /* Defined in doprnt.c */ |
110513
43adca79c8fd
Clean up EMACS_INT/int usage in doc.c and doprnt.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
110512
diff
changeset
|
2857 extern EMACS_INT doprnt (char *, int, const char *, const char *, va_list); |
302 | 2858 |
2859 /* Defined in lread.c */ | |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2860 extern Lisp_Object Vafter_load_alist; |
302 | 2861 extern Lisp_Object Qvariable_documentation, Qstandard_input; |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2862 extern Lisp_Object Qbackquote, Qcomma, Qcomma_at, Qcomma_dot, Qfunction; |
21774
101cc2e8a4b7
Include initial_obarray from lread.c
Richard M. Stallman <rms@gnu.org>
parents:
21711
diff
changeset
|
2863 extern Lisp_Object Vobarray, initial_obarray, Vstandard_input; |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2864 extern int load_in_progress; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2865 EXFUN (Fread, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2866 EXFUN (Fread_from_string, 3); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2867 EXFUN (Fintern, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2868 EXFUN (Fintern_soft, 2); |
19119
e772b77b919e
(Fload): Update declaration.
Richard M. Stallman <rms@gnu.org>
parents:
18732
diff
changeset
|
2869 EXFUN (Fload, 5); |
69171
269a00c6f882
EXFUN Fget_load_suffixes. Extern Vload_file_rep_suffixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
69157
diff
changeset
|
2870 EXFUN (Fget_load_suffixes, 0); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2871 EXFUN (Fget_file_char, 0); |
72133
995e57f32746
* lisp.h: Update read-char, read-event, and read_filtered_event
Chong Yidong <cyd@stupidchicken.com>
parents:
72005
diff
changeset
|
2872 EXFUN (Fread_char, 3); |
995e57f32746
* lisp.h: Update read-char, read-event, and read_filtered_event
Chong Yidong <cyd@stupidchicken.com>
parents:
72005
diff
changeset
|
2873 EXFUN (Fread_event, 3); |
109099 | 2874 extern Lisp_Object read_filtered_event (int, int, int, int, Lisp_Object); |
22418
340060628c47
(Feval_region): Accept 4 args.
Richard M. Stallman <rms@gnu.org>
parents:
22269
diff
changeset
|
2875 EXFUN (Feval_region, 4); |
109099 | 2876 extern Lisp_Object check_obarray (Lisp_Object); |
2877 extern Lisp_Object intern (const char *); | |
105872
89183b6f6e9d
* process.c (socket_options): Make it const.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105840
diff
changeset
|
2878 extern Lisp_Object intern_c_string (const char *); |
109313
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2879 extern Lisp_Object make_symbol (const char *); |
110514
8e5fcc5dd96b
Clean up EMACS_INT/int in cmds.c, as well as USE_SAFE_ALLOCA.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
110513
diff
changeset
|
2880 extern Lisp_Object oblookup (Lisp_Object, const char *, EMACS_INT, EMACS_INT); |
2605
b3c605e9bb30
(LOADHIST_ATTACH): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
2881 #define LOADHIST_ATTACH(x) \ |
108161
514ebf69b289
Fix wrong-docstring problem introduced with hash-consing.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
108024
diff
changeset
|
2882 do { \ |
514ebf69b289
Fix wrong-docstring problem introduced with hash-consing.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
108024
diff
changeset
|
2883 if (initialized) Vcurrent_load_list = Fcons (x, Vcurrent_load_list); \ |
514ebf69b289
Fix wrong-docstring problem introduced with hash-consing.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
108024
diff
changeset
|
2884 } while (0) |
2605
b3c605e9bb30
(LOADHIST_ATTACH): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
2515
diff
changeset
|
2885 extern Lisp_Object Vcurrent_load_list; |
69171
269a00c6f882
EXFUN Fget_load_suffixes. Extern Vload_file_rep_suffixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
69157
diff
changeset
|
2886 extern Lisp_Object Vload_history, Vload_suffixes, Vload_file_rep_suffixes; |
109099 | 2887 extern int openp (Lisp_Object, Lisp_Object, Lisp_Object, |
2888 Lisp_Object *, Lisp_Object); | |
109313
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2889 extern int isfloat_string (const char *, int); |
109099 | 2890 extern void map_obarray (Lisp_Object, void (*) (Lisp_Object, Lisp_Object), |
2891 Lisp_Object); | |
109313
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2892 extern void dir_warning (const char *, Lisp_Object); |
109099 | 2893 extern void close_load_descs (void); |
2894 extern void init_obarray (void); | |
2895 extern void init_lread (void); | |
2896 extern void syms_of_lread (void); | |
302 | 2897 |
2898 /* Defined in eval.c */ | |
2899 extern Lisp_Object Qautoload, Qexit, Qinteractive, Qcommandp, Qdefun, Qmacro; | |
381 | 2900 extern Lisp_Object Vinhibit_quit, Qinhibit_quit, Vquit_flag; |
302 | 2901 extern Lisp_Object Vautoload_queue; |
8995
2281d87b7c91
(Vdebug_on_error): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
8912
diff
changeset
|
2902 extern Lisp_Object Vdebug_on_error; |
30072
da80009c3957
(Vsignaling_function): External declaration.
Gerd Moellmann <gerd@gnu.org>
parents:
29978
diff
changeset
|
2903 extern Lisp_Object Vsignaling_function; |
30081
60dfd5c7304c
(handling_signal): External declaration.
Gerd Moellmann <gerd@gnu.org>
parents:
30072
diff
changeset
|
2904 extern int handling_signal; |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
2905 extern int debug_on_next_call; |
109099 | 2906 extern int interactive_p (int); |
30072
da80009c3957
(Vsignaling_function): External declaration.
Gerd Moellmann <gerd@gnu.org>
parents:
29978
diff
changeset
|
2907 |
12731
cac1b80e43be
Declare hook running functions.
Simon Marshall <simon@gnu.org>
parents:
12653
diff
changeset
|
2908 /* To run a normal hook, use the appropriate function from the list below. |
cac1b80e43be
Declare hook running functions.
Simon Marshall <simon@gnu.org>
parents:
12653
diff
changeset
|
2909 The calling convention: |
cac1b80e43be
Declare hook running functions.
Simon Marshall <simon@gnu.org>
parents:
12653
diff
changeset
|
2910 |
6216
9f7708f75f17
(ARRAY_MARK_FLAG): Define here.
Richard M. Stallman <rms@gnu.org>
parents:
6131
diff
changeset
|
2911 if (!NILP (Vrun_hooks)) |
12731
cac1b80e43be
Declare hook running functions.
Simon Marshall <simon@gnu.org>
parents:
12653
diff
changeset
|
2912 call1 (Vrun_hooks, Qmy_funny_hook); |
cac1b80e43be
Declare hook running functions.
Simon Marshall <simon@gnu.org>
parents:
12653
diff
changeset
|
2913 |
cac1b80e43be
Declare hook running functions.
Simon Marshall <simon@gnu.org>
parents:
12653
diff
changeset
|
2914 should no longer be used. */ |
302 | 2915 extern Lisp_Object Vrun_hooks; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2916 EXFUN (Frun_hooks, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2917 EXFUN (Frun_hook_with_args, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2918 EXFUN (Frun_hook_with_args_until_success, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2919 EXFUN (Frun_hook_with_args_until_failure, MANY); |
109099 | 2920 extern Lisp_Object run_hook_list_with_args (Lisp_Object, int, Lisp_Object *); |
2921 extern void run_hook_with_args_2 (Lisp_Object, Lisp_Object, Lisp_Object); | |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2922 EXFUN (Fand, UNEVALLED); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2923 EXFUN (For, UNEVALLED); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2924 EXFUN (Fif, UNEVALLED); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2925 EXFUN (Fprogn, UNEVALLED); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2926 EXFUN (Fprog1, UNEVALLED); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2927 EXFUN (Fprog2, UNEVALLED); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2928 EXFUN (Fsetq, UNEVALLED); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2929 EXFUN (Fquote, UNEVALLED); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2930 EXFUN (Fuser_variable_p, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2931 EXFUN (Finteractive_p, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2932 EXFUN (Fdefun, UNEVALLED); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2933 EXFUN (Flet, UNEVALLED); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2934 EXFUN (FletX, UNEVALLED); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2935 EXFUN (Fwhile, UNEVALLED); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2936 EXFUN (Fcatch, UNEVALLED); |
31833
12c10704f00c
(wrong_type_argument, Fthrow, Fsignal, error): Declare
Gerd Moellmann <gerd@gnu.org>
parents:
31447
diff
changeset
|
2937 EXFUN (Fthrow, 2) NO_RETURN; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2938 EXFUN (Funwind_protect, UNEVALLED); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2939 EXFUN (Fcondition_case, UNEVALLED); |
32065
4f8ce7eb45a5
(wrong_type_argument): Remove NO_RETURN, the function can
Gerd Moellmann <gerd@gnu.org>
parents:
31991
diff
changeset
|
2940 EXFUN (Fsignal, 2); |
109099 | 2941 extern void xsignal (Lisp_Object, Lisp_Object) NO_RETURN; |
2942 extern void xsignal0 (Lisp_Object) NO_RETURN; | |
2943 extern void xsignal1 (Lisp_Object, Lisp_Object) NO_RETURN; | |
2944 extern void xsignal2 (Lisp_Object, Lisp_Object, Lisp_Object) NO_RETURN; | |
2945 extern void xsignal3 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object) NO_RETURN; | |
109313
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2946 extern void signal_error (const char *, Lisp_Object) NO_RETURN; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2947 EXFUN (Fautoload, 5); |
44940
2686a6ef3d19
(Fcommandp): Declare new arg.
Richard M. Stallman <rms@gnu.org>
parents:
44522
diff
changeset
|
2948 EXFUN (Fcommandp, 2); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2949 EXFUN (Feval, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2950 EXFUN (Fapply, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2951 EXFUN (Ffuncall, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2952 EXFUN (Fbacktrace, 0); |
109099 | 2953 extern Lisp_Object apply1 (Lisp_Object, Lisp_Object); |
2954 extern Lisp_Object call0 (Lisp_Object); | |
2955 extern Lisp_Object call1 (Lisp_Object, Lisp_Object); | |
2956 extern Lisp_Object call2 (Lisp_Object, Lisp_Object, Lisp_Object); | |
2957 extern Lisp_Object call3 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); | |
2958 extern Lisp_Object call4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); | |
2959 extern Lisp_Object call5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); | |
2960 extern Lisp_Object call6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); | |
2961 extern Lisp_Object call7 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); | |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2962 EXFUN (Fdo_auto_save, 2); |
109099 | 2963 extern Lisp_Object apply_lambda (Lisp_Object, Lisp_Object, int); |
2964 extern Lisp_Object internal_catch (Lisp_Object, Lisp_Object (*) (Lisp_Object), Lisp_Object); | |
2965 extern Lisp_Object internal_lisp_condition_case (Lisp_Object, Lisp_Object, Lisp_Object); | |
2966 extern Lisp_Object internal_condition_case (Lisp_Object (*) (void), Lisp_Object, Lisp_Object (*) (Lisp_Object)); | |
2967 extern Lisp_Object internal_condition_case_1 (Lisp_Object (*) (Lisp_Object), Lisp_Object, Lisp_Object, Lisp_Object (*) (Lisp_Object)); | |
2968 extern Lisp_Object internal_condition_case_2 (Lisp_Object (*) (Lisp_Object, Lisp_Object), Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object (*) (Lisp_Object)); | |
2969 extern Lisp_Object internal_condition_case_n (Lisp_Object (*) (int, Lisp_Object *), int, Lisp_Object *, Lisp_Object, Lisp_Object (*) (Lisp_Object)); | |
2970 extern void specbind (Lisp_Object, Lisp_Object); | |
2971 extern void record_unwind_protect (Lisp_Object (*) (Lisp_Object), Lisp_Object); | |
2972 extern Lisp_Object unbind_to (int, Lisp_Object); | |
109313
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
2973 extern void error (const char *, ...) NO_RETURN; |
109375
3e07e13fe30a
Convert maybe_fatal to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109320
diff
changeset
|
2974 extern void verror (const char *, va_list) NO_RETURN; |
109099 | 2975 extern void do_autoload (Lisp_Object, Lisp_Object); |
2976 extern Lisp_Object un_autoload (Lisp_Object); | |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2977 EXFUN (Ffetch_bytecode, 1); |
109099 | 2978 extern void init_eval_once (void); |
2979 extern Lisp_Object safe_call (int, Lisp_Object *); | |
2980 extern Lisp_Object safe_call1 (Lisp_Object, Lisp_Object); | |
93369
ed10c3092847
* keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93032
diff
changeset
|
2981 extern Lisp_Object safe_call2 (Lisp_Object, Lisp_Object, Lisp_Object); |
109099 | 2982 extern void init_eval (void); |
2983 extern void syms_of_eval (void); | |
302 | 2984 |
2985 /* Defined in editfns.c */ | |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2986 extern Lisp_Object last_nonmenu_event; |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
2987 extern Lisp_Object Qfield; |
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
2988 extern Lisp_Object Vinhibit_field_text_motion; |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
2989 extern Lisp_Object Vsystem_name; |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
2990 extern Lisp_Object Vuser_login_name; |
44522
cada3f53aa13
(Fpropertize): Add prototype.
Pavel Janík <Pavel@Janik.cz>
parents:
44065
diff
changeset
|
2991 EXFUN (Fpropertize, MANY); |
25353 | 2992 EXFUN (Fcurrent_message, 0); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2993 EXFUN (Fgoto_char, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2994 EXFUN (Fpoint_min_marker, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2995 EXFUN (Fpoint_max_marker, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2996 EXFUN (Fpoint_min, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2997 EXFUN (Fpoint_max, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2998 EXFUN (Fpoint, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2999 EXFUN (Fpoint_marker, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3000 EXFUN (Fmark_marker, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3001 EXFUN (Fline_beginning_position, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3002 EXFUN (Fline_end_position, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3003 EXFUN (Ffollowing_char, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3004 EXFUN (Fprevious_char, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3005 EXFUN (Fchar_after, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3006 EXFUN (Finsert, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3007 EXFUN (Finsert_and_inherit, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3008 EXFUN (Finsert_before_markers, MANY); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3009 EXFUN (Finsert_buffer_substring, 3); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3010 EXFUN (Finsert_char, 3); |
109099 | 3011 extern void insert1 (Lisp_Object); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3012 EXFUN (Feolp, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3013 EXFUN (Feobp, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3014 EXFUN (Fbolp, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3015 EXFUN (Fbobp, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3016 EXFUN (Fformat, MANY); |
25017
4a142fb92f94
(P_): Moved to top of file.
Gerd Moellmann <gerd@gnu.org>
parents:
23984
diff
changeset
|
3017 EXFUN (Fmessage, MANY); |
109313
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
3018 extern Lisp_Object format2 (const char *, Lisp_Object, Lisp_Object); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3019 EXFUN (Fbuffer_substring, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3020 EXFUN (Fbuffer_string, 0); |
109099 | 3021 extern Lisp_Object save_excursion_save (void); |
3022 extern Lisp_Object save_restriction_save (void); | |
3023 extern Lisp_Object save_excursion_restore (Lisp_Object); | |
3024 extern Lisp_Object save_restriction_restore (Lisp_Object); | |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3025 EXFUN (Fchar_to_string, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3026 EXFUN (Fdelete_region, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3027 EXFUN (Fnarrow_to_region, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3028 EXFUN (Fwiden, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3029 EXFUN (Fuser_login_name, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3030 EXFUN (Fsystem_name, 0); |
25450
b5c133b3bfa0
Add declarations for some functions.
Andreas Schwab <schwab@suse.de>
parents:
25421
diff
changeset
|
3031 EXFUN (Fcurrent_time, 0); |
110512
ba79df773e8d
Fix last changes in editfns.c and intervals.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110511
diff
changeset
|
3032 extern EMACS_INT clip_to_bounds (EMACS_INT, EMACS_INT, EMACS_INT); |
110480
5290c80fda43
Fix some uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110314
diff
changeset
|
3033 extern Lisp_Object make_buffer_string (EMACS_INT, EMACS_INT, int); |
5290c80fda43
Fix some uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110314
diff
changeset
|
3034 extern Lisp_Object make_buffer_string_both (EMACS_INT, EMACS_INT, EMACS_INT, |
5290c80fda43
Fix some uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110314
diff
changeset
|
3035 EMACS_INT, int); |
109099 | 3036 extern void init_editfns (void); |
3037 extern void syms_of_editfns (void); | |
30440
a438686586dd
(Fconstrain_to_field): Update external declaration.
Miles Bader <miles@gnu.org>
parents:
30322
diff
changeset
|
3038 EXFUN (Fconstrain_to_field, 5); |
27885 | 3039 EXFUN (Ffield_string, 1); |
3040 EXFUN (Fdelete_field, 1); | |
41067
2031344d2205
(Ffield_beginning, Ffield_end): Update EXFUN decl.
Miles Bader <miles@gnu.org>
parents:
40727
diff
changeset
|
3041 EXFUN (Ffield_beginning, 3); |
2031344d2205
(Ffield_beginning, Ffield_end): Update EXFUN decl.
Miles Bader <miles@gnu.org>
parents:
40727
diff
changeset
|
3042 EXFUN (Ffield_end, 3); |
27885 | 3043 EXFUN (Ffield_string_no_properties, 1); |
109313
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
3044 extern void set_time_zone_rule (const char *); |
302 | 3045 |
108933 | 3046 /* Defined in buffer.c */ |
109099 | 3047 extern int mouse_face_overlay_overlaps (Lisp_Object); |
3048 extern void nsberror (Lisp_Object) NO_RETURN; | |
25353 | 3049 EXFUN (Fset_buffer_multibyte, 1); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3050 EXFUN (Foverlay_start, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3051 EXFUN (Foverlay_end, 1); |
97232 | 3052 EXFUN (Foverlay_buffer, 1); |
109099 | 3053 extern void adjust_overlays_for_insert (EMACS_INT, EMACS_INT); |
3054 extern void adjust_overlays_for_delete (EMACS_INT, EMACS_INT); | |
110545
6ae8bab9b79a
Fix int/EMACS_INT use in buffer.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110543
diff
changeset
|
3055 extern void fix_start_end_in_overlays (EMACS_INT, EMACS_INT); |
109099 | 3056 extern void report_overlay_modification (Lisp_Object, Lisp_Object, int, |
3057 Lisp_Object, Lisp_Object, Lisp_Object); | |
110545
6ae8bab9b79a
Fix int/EMACS_INT use in buffer.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110543
diff
changeset
|
3058 extern int overlay_touches_p (EMACS_INT); |
3539
a9b1e2a5523b
Don't declare malloc or realloc.
Richard M. Stallman <rms@gnu.org>
parents:
3324
diff
changeset
|
3059 extern Lisp_Object Vbuffer_alist, Vinhibit_read_only; |
93032 | 3060 EXFUN (Fbuffer_list, 1); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3061 EXFUN (Fget_buffer, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3062 EXFUN (Fget_buffer_create, 1); |
89439
bc52ad30b028
(Fgenerate_new_buffer_name): EXFUN it.
Kenichi Handa <handa@m17n.org>
parents:
89058
diff
changeset
|
3063 EXFUN (Fgenerate_new_buffer_name, 2); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3064 EXFUN (Fset_buffer, 1); |
20708 | 3065 EXFUN (set_buffer_if_live, 1); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3066 EXFUN (Fbarf_if_buffer_read_only, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3067 EXFUN (Fcurrent_buffer, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3068 EXFUN (Fswitch_to_buffer, 2); |
22190
54a0e89d2a48
(frame_buffer_predicate, frame_buffer_list)
Richard M. Stallman <rms@gnu.org>
parents:
22123
diff
changeset
|
3069 EXFUN (Fother_buffer, 3); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3070 EXFUN (Foverlay_get, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3071 EXFUN (Fbuffer_modified_p, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3072 EXFUN (Fset_buffer_modified_p, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3073 EXFUN (Fkill_buffer, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3074 EXFUN (Fkill_all_local_variables, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3075 EXFUN (Fbuffer_disable_undo, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3076 EXFUN (Fbuffer_enable_undo, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3077 EXFUN (Ferase_buffer, 0); |
2780
cfe7659bbc05
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2728
diff
changeset
|
3078 extern Lisp_Object Qoverlayp; |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3079 extern Lisp_Object Qpriority, Qwindow, Qevaporate, Qbefore_string, Qafter_string; |
109099 | 3080 extern Lisp_Object get_truename_buffer (Lisp_Object); |
302 | 3081 extern struct buffer *all_buffers; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3082 EXFUN (Fprevious_overlay_change, 1); |
34154
88440ae23652
(Fmake_variable_buffer_local, Fbuffer_file_name): Declare.
Ken Raeburn <raeburn@raeburn.org>
parents:
33508
diff
changeset
|
3083 EXFUN (Fbuffer_file_name, 1); |
109099 | 3084 extern void init_buffer_once (void); |
3085 extern void init_buffer (void); | |
3086 extern void syms_of_buffer (void); | |
3087 extern void keys_of_buffer (void); | |
302 | 3088 |
108933 | 3089 /* Defined in marker.c */ |
302 | 3090 |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3091 EXFUN (Fmarker_position, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3092 EXFUN (Fmarker_buffer, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3093 EXFUN (Fcopy_marker, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3094 EXFUN (Fset_marker, 3); |
110511
5746a646bb03
Fix EMACS_INT/int conversion errors in marker.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
110507
diff
changeset
|
3095 extern EMACS_INT marker_position (Lisp_Object); |
5746a646bb03
Fix EMACS_INT/int conversion errors in marker.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
110507
diff
changeset
|
3096 extern EMACS_INT marker_byte_position (Lisp_Object); |
109099 | 3097 extern void clear_charpos_cache (struct buffer *); |
110511
5746a646bb03
Fix EMACS_INT/int conversion errors in marker.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
110507
diff
changeset
|
3098 extern EMACS_INT charpos_to_bytepos (EMACS_INT); |
5746a646bb03
Fix EMACS_INT/int conversion errors in marker.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
110507
diff
changeset
|
3099 extern EMACS_INT buf_charpos_to_bytepos (struct buffer *, EMACS_INT); |
5746a646bb03
Fix EMACS_INT/int conversion errors in marker.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
110507
diff
changeset
|
3100 extern EMACS_INT buf_bytepos_to_charpos (struct buffer *, EMACS_INT); |
109099 | 3101 extern void unchain_marker (struct Lisp_Marker *marker); |
3102 extern Lisp_Object set_marker_restricted (Lisp_Object, Lisp_Object, Lisp_Object); | |
110511
5746a646bb03
Fix EMACS_INT/int conversion errors in marker.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
110507
diff
changeset
|
3103 extern Lisp_Object set_marker_both (Lisp_Object, Lisp_Object, EMACS_INT, EMACS_INT); |
109099 | 3104 extern Lisp_Object set_marker_restricted_both (Lisp_Object, Lisp_Object, |
110511
5746a646bb03
Fix EMACS_INT/int conversion errors in marker.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
110507
diff
changeset
|
3105 EMACS_INT, EMACS_INT); |
109099 | 3106 extern void syms_of_marker (void); |
302 | 3107 |
3108 /* Defined in fileio.c */ | |
3109 | |
3110 extern Lisp_Object Qfile_error; | |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3111 extern Lisp_Object Qfile_exists_p; |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3112 extern Lisp_Object Qfile_directory_p; |
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3113 extern Lisp_Object Qinsert_file_contents; |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3114 extern Lisp_Object Vauto_save_list_file_name; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3115 EXFUN (Ffind_file_name_handler, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3116 EXFUN (Ffile_name_as_directory, 1); |
25450
b5c133b3bfa0
Add declarations for some functions.
Andreas Schwab <schwab@suse.de>
parents:
25421
diff
changeset
|
3117 EXFUN (Fmake_temp_name, 1); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3118 EXFUN (Fexpand_file_name, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3119 EXFUN (Ffile_name_nondirectory, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3120 EXFUN (Fsubstitute_in_file_name, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3121 EXFUN (Ffile_symlink_p, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3122 EXFUN (Fverify_visited_file_modtime, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3123 EXFUN (Ffile_exists_p, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3124 EXFUN (Ffile_name_absolute_p, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3125 EXFUN (Fdirectory_file_name, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3126 EXFUN (Ffile_name_directory, 1); |
109099 | 3127 extern Lisp_Object expand_and_dir_to_file (Lisp_Object, Lisp_Object); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3128 EXFUN (Ffile_accessible_directory_p, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3129 EXFUN (Funhandled_file_name_directory, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3130 EXFUN (Ffile_directory_p, 1); |
21038
9b33c6a5b4dc
(Vnonascii_translate_table, Qcharset): New variable decls.
Richard M. Stallman <rms@gnu.org>
parents:
20723
diff
changeset
|
3131 EXFUN (Fwrite_region, 7); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3132 EXFUN (Ffile_readable_p, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3133 EXFUN (Ffile_executable_p, 1); |
45545
6b37dbf4d2a5
(Fread_file_name): Now has 6 args.
Kim F. Storm <storm@cua.dk>
parents:
45416
diff
changeset
|
3134 EXFUN (Fread_file_name, 6); |
109099 | 3135 extern Lisp_Object close_file_unwind (Lisp_Object); |
3136 extern Lisp_Object restore_point_unwind (Lisp_Object); | |
3137 extern void report_file_error (const char *, Lisp_Object) NO_RETURN; | |
3138 extern int internal_delete_file (Lisp_Object); | |
3139 extern void syms_of_fileio (void); | |
3140 extern Lisp_Object make_temp_name (Lisp_Object, int); | |
55487
3834fb45a740
Declare Fmake_symbolic_link.
Andreas Schwab <schwab@suse.de>
parents:
55157
diff
changeset
|
3141 EXFUN (Fmake_symbolic_link, 3); |
97232 | 3142 extern Lisp_Object Qdelete_file; |
302 | 3143 |
3144 /* Defined in abbrev.c */ | |
3145 | |
109099 | 3146 extern void syms_of_abbrev (void); |
302 | 3147 |
108933 | 3148 /* Defined in search.c */ |
109099 | 3149 extern void shrink_regexp_cache (void); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3150 EXFUN (Fstring_match, 3); |
109099 | 3151 extern void restore_search_regs (void); |
63146
7dced3c64549
(Fmatch_data, Fset_match_data): Fix EXFUN.
Kim F. Storm <storm@cua.dk>
parents:
62660
diff
changeset
|
3152 EXFUN (Fmatch_data, 3); |
7dced3c64549
(Fmatch_data, Fset_match_data): Fix EXFUN.
Kim F. Storm <storm@cua.dk>
parents:
62660
diff
changeset
|
3153 EXFUN (Fset_match_data, 2); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3154 EXFUN (Fmatch_beginning, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3155 EXFUN (Fmatch_end, 1); |
109099 | 3156 extern void record_unwind_save_match_data (void); |
33351
6d19f06da8a4
* lisp.h (Flooking_at): Declare.
Ken Raeburn <raeburn@raeburn.org>
parents:
32988
diff
changeset
|
3157 EXFUN (Flooking_at, 1); |
109099 | 3158 extern int fast_string_match (Lisp_Object, Lisp_Object); |
3159 extern int fast_c_string_match_ignore_case (Lisp_Object, const char *); | |
3160 extern int fast_string_match_ignore_case (Lisp_Object, Lisp_Object); | |
3161 extern EMACS_INT fast_looking_at (Lisp_Object, EMACS_INT, EMACS_INT, | |
3162 EMACS_INT, EMACS_INT, Lisp_Object); | |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110506
diff
changeset
|
3163 extern EMACS_INT scan_buffer (int, EMACS_INT, EMACS_INT, EMACS_INT, |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110506
diff
changeset
|
3164 int *, int); |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110506
diff
changeset
|
3165 extern EMACS_INT scan_newline (EMACS_INT, EMACS_INT, EMACS_INT, EMACS_INT, |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110506
diff
changeset
|
3166 EMACS_INT, int); |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110506
diff
changeset
|
3167 extern EMACS_INT find_next_newline (EMACS_INT, int); |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110506
diff
changeset
|
3168 extern EMACS_INT find_next_newline_no_quit (EMACS_INT, EMACS_INT); |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
110506
diff
changeset
|
3169 extern EMACS_INT find_before_next_newline (EMACS_INT, EMACS_INT, EMACS_INT); |
109099 | 3170 extern void syms_of_search (void); |
3171 extern void clear_regexp_cache (void); | |
302 | 3172 |
108933 | 3173 /* Defined in minibuf.c */ |
302 | 3174 |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3175 extern Lisp_Object Qcompletion_ignore_case; |
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3176 extern Lisp_Object Vcompletion_regexp_list; |
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3177 extern Lisp_Object Vhistory_length; |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3178 extern Lisp_Object Vminibuffer_list; |
302 | 3179 extern Lisp_Object last_minibuf_string; |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3180 extern int completion_ignore_case; |
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3181 extern int history_delete_duplicates; |
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3182 extern int minibuffer_auto_raise; |
109099 | 3183 extern void choose_minibuf_frame (void); |
19547
70d930b49bb4
(DEFUN_ARGS_8): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19224
diff
changeset
|
3184 EXFUN (Fcompleting_read, 8); |
70929
10bd863bbc8a
(Fread_from_minibuffer): Decrement number of args.
Juri Linkov <juri@jurta.org>
parents:
69959
diff
changeset
|
3185 EXFUN (Fread_from_minibuffer, 7); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3186 EXFUN (Fread_variable, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3187 EXFUN (Fread_buffer, 3); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3188 EXFUN (Fread_minibuffer, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3189 EXFUN (Feval_minibuffer, 2); |
19547
70d930b49bb4
(DEFUN_ARGS_8): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19224
diff
changeset
|
3190 EXFUN (Fread_string, 5); |
70d930b49bb4
(DEFUN_ARGS_8): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19224
diff
changeset
|
3191 EXFUN (Fread_no_blanks_input, 3); |
94935
45602a11979b
(enum pvec_type): New member PREV_FONT.
Kenichi Handa <handa@m17n.org>
parents:
94121
diff
changeset
|
3192 EXFUN (Fassoc_string, 3); |
109099 | 3193 extern Lisp_Object get_minibuffer (int); |
3194 extern void temp_echo_area_glyphs (Lisp_Object); | |
3195 extern void init_minibuf_once (void); | |
3196 extern void syms_of_minibuf (void); | |
302 | 3197 |
3198 /* Defined in callint.c */ | |
3199 | |
12114
437964ecfc70
(current_prefix_partial): Deleted.
Karl Heuer <kwzh@gnu.org>
parents:
12093
diff
changeset
|
3200 extern Lisp_Object Qminus, Qplus, Vcurrent_prefix_arg; |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3201 extern Lisp_Object Qwhen; |
302 | 3202 extern Lisp_Object Vcommand_history; |
109554
b22b609d1fa7
* src/lisp.h (Fkill_emacs): Mark as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109548
diff
changeset
|
3203 extern Lisp_Object Vmark_even_if_inactive; |
15695
597fb46cb2fd
(Qmouse_leave_buffer_hook): Declare it here.
Karl Heuer <kwzh@gnu.org>
parents:
15090
diff
changeset
|
3204 extern Lisp_Object Qcall_interactively, Qmouse_leave_buffer_hook; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3205 EXFUN (Fcall_interactively, 3); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3206 EXFUN (Fprefix_numeric_value, 1); |
109099 | 3207 extern void syms_of_callint (void); |
302 | 3208 |
108933 | 3209 /* Defined in casefiddle.c */ |
302 | 3210 |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3211 extern Lisp_Object Qidentity; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3212 EXFUN (Fdowncase, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3213 EXFUN (Fupcase, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3214 EXFUN (Fcapitalize, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3215 EXFUN (Fupcase_region, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3216 EXFUN (Fupcase_initials, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3217 EXFUN (Fupcase_initials_region, 2); |
109099 | 3218 extern void syms_of_casefiddle (void); |
3219 extern void keys_of_casefiddle (void); | |
302 | 3220 |
108933 | 3221 /* Defined in casetab.c */ |
16133 | 3222 |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3223 EXFUN (Fset_case_table, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3224 EXFUN (Fset_standard_case_table, 1); |
109099 | 3225 extern void init_casetab_once (void); |
3226 extern void syms_of_casetab (void); | |
16133 | 3227 |
108933 | 3228 /* Defined in keyboard.c */ |
302 | 3229 |
37188
da91f955f74c
(echoing, echo_message_buffer, cancel_echoing): Declare.
Gerd Moellmann <gerd@gnu.org>
parents:
37042
diff
changeset
|
3230 extern int echoing; |
da91f955f74c
(echoing, echo_message_buffer, cancel_echoing): Declare.
Gerd Moellmann <gerd@gnu.org>
parents:
37042
diff
changeset
|
3231 extern Lisp_Object echo_message_buffer; |
39451
f9d098bd1299
(echo_kboard): Declare extern.
Gerd Moellmann <gerd@gnu.org>
parents:
39245
diff
changeset
|
3232 extern struct kboard *echo_kboard; |
109099 | 3233 extern void cancel_echoing (void); |
29940
3a3b1bda631d
(QCfilter): External declaration.
Gerd Moellmann <gerd@gnu.org>
parents:
29925
diff
changeset
|
3234 extern Lisp_Object Qdisabled, QCfilter; |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3235 extern Lisp_Object Qabove_handle, Qhandle, Qbelow_handle; |
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3236 extern Lisp_Object Qup, Qdown, Qbottom, Qend_scroll; |
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3237 extern Lisp_Object Qtop, Qratio; |
111629
6c24c5598611
Move declarations from .c files to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
111512
diff
changeset
|
3238 extern Lisp_Object Vsaved_region_selection; |
6c24c5598611
Move declarations from .c files to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
111512
diff
changeset
|
3239 extern Lisp_Object Vselect_active_regions; |
17871
1c5753313c4e
(Vtty_erase_char): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
17714
diff
changeset
|
3240 extern Lisp_Object Vtty_erase_char, Vhelp_form, Vtop_level; |
58932
ce2e33a2adae
(QUIT): Check for Vthrow_on_input.
Richard M. Stallman <rms@gnu.org>
parents:
58818
diff
changeset
|
3241 extern Lisp_Object Vthrow_on_input; |
30723
882e52f9e2bd
(input_pending): External declaration.
Gerd Moellmann <gerd@gnu.org>
parents:
30556
diff
changeset
|
3242 extern int input_pending; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3243 EXFUN (Fdiscard_input, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3244 EXFUN (Frecursive_edit, 0); |
109548
155f42db7e61
Mark functions as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109512
diff
changeset
|
3245 EXFUN (Ftop_level, 0) NO_RETURN; |
155f42db7e61
Mark functions as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109512
diff
changeset
|
3246 EXFUN (Fexit_recursive_edit, 0) NO_RETURN; |
155f42db7e61
Mark functions as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109512
diff
changeset
|
3247 EXFUN (Fabort_recursive_edit, 0) NO_RETURN; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3248 EXFUN (Fcommand_execute, 4); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3249 EXFUN (Finput_pending_p, 0); |
109099 | 3250 extern Lisp_Object menu_bar_items (Lisp_Object); |
3251 extern Lisp_Object tool_bar_items (Lisp_Object, int *); | |
1990
c7d6c746fea6
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1923
diff
changeset
|
3252 extern Lisp_Object Qvertical_scroll_bar; |
109099 | 3253 extern void discard_mouse_events (void); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3254 EXFUN (Fevent_convert_list, 1); |
22925
e89aad442cf7
(Fread_key_sequence): Update declaration.
Kenichi Handa <handa@m17n.org>
parents:
22791
diff
changeset
|
3255 EXFUN (Fread_key_sequence, 5); |
83417
fe870a866ce7
Don't let x_initialize break 8-bit input on ttys. (Reported by Joakim Verona.) Split `set-input-mode'.
Karoly Lorentey <lorentey@elte.hu>
parents:
83414
diff
changeset
|
3256 EXFUN (Fset_input_interrupt_mode, 1); |
fe870a866ce7
Don't let x_initialize break 8-bit input on ttys. (Reported by Joakim Verona.) Split `set-input-mode'.
Karoly Lorentey <lorentey@elte.hu>
parents:
83414
diff
changeset
|
3257 EXFUN (Fset_output_flow_control, 2); |
fe870a866ce7
Don't let x_initialize break 8-bit input on ttys. (Reported by Joakim Verona.) Split `set-input-mode'.
Karoly Lorentey <lorentey@elte.hu>
parents:
83414
diff
changeset
|
3258 EXFUN (Fset_input_meta_mode, 2); |
fe870a866ce7
Don't let x_initialize break 8-bit input on ttys. (Reported by Joakim Verona.) Split `set-input-mode'.
Karoly Lorentey <lorentey@elte.hu>
parents:
83414
diff
changeset
|
3259 EXFUN (Fset_quit_char, 1); |
20297
bf0a54297d95
Add more prototypes and declarations. Forward declare
Andreas Schwab <schwab@suse.de>
parents:
20123
diff
changeset
|
3260 EXFUN (Fset_input_mode, 4); |
93369
ed10c3092847
* keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93032
diff
changeset
|
3261 extern Lisp_Object pending_funcalls; |
109099 | 3262 extern int detect_input_pending (void); |
3263 extern int detect_input_pending_ignore_squeezables (void); | |
3264 extern int detect_input_pending_run_timers (int); | |
3265 extern void safe_run_hooks (Lisp_Object); | |
109313
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
3266 extern void cmd_error_internal (Lisp_Object, const char *); |
109099 | 3267 extern Lisp_Object command_loop_1 (void); |
3268 extern Lisp_Object recursive_edit_1 (void); | |
3269 extern void record_auto_save (void); | |
3270 extern void init_keyboard (void); | |
3271 extern void syms_of_keyboard (void); | |
3272 extern void keys_of_keyboard (void); | |
3273 extern char *push_key_description (unsigned int, char *, int); | |
302 | 3274 |
3275 | |
108933 | 3276 /* Defined in indent.c */ |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3277 EXFUN (Fvertical_motion, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3278 EXFUN (Findent_to, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3279 EXFUN (Fcurrent_column, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3280 EXFUN (Fmove_to_column, 2); |
109099 | 3281 extern double current_column (void); |
3282 extern void invalidate_current_column (void); | |
110554
e49fcbdc458f
Fix int/EMACS_INT in eval.c and indent.c, correct previous changes.
Eli Zaretskii <eliz@gnu.org>
parents:
110548
diff
changeset
|
3283 extern int indented_beyond_p (EMACS_INT, EMACS_INT, double); |
109099 | 3284 extern void syms_of_indent (void); |
302 | 3285 |
108933 | 3286 /* Defined in frame.c */ |
55583
21f88361795c
Various fixes to support USE_LSB_TAG with carbon emacs. Mostly fixing
Steven Tamm <steventamm@mac.com>
parents:
55570
diff
changeset
|
3287 #ifdef HAVE_WINDOW_SYSTEM |
21f88361795c
Various fixes to support USE_LSB_TAG with carbon emacs. Mostly fixing
Steven Tamm <steventamm@mac.com>
parents:
55570
diff
changeset
|
3288 extern Lisp_Object Vx_resource_name; |
21f88361795c
Various fixes to support USE_LSB_TAG with carbon emacs. Mostly fixing
Steven Tamm <steventamm@mac.com>
parents:
55570
diff
changeset
|
3289 extern Lisp_Object Vx_resource_class; |
21f88361795c
Various fixes to support USE_LSB_TAG with carbon emacs. Mostly fixing
Steven Tamm <steventamm@mac.com>
parents:
55570
diff
changeset
|
3290 #endif /* HAVE_WINDOW_SYSTEM */ |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3291 extern Lisp_Object Qonly; |
6243 | 3292 extern Lisp_Object Qvisible; |
109099 | 3293 extern void store_frame_param (struct frame *, Lisp_Object, Lisp_Object); |
3294 extern void store_in_alist (Lisp_Object *, Lisp_Object, Lisp_Object); | |
3295 extern Lisp_Object do_switch_frame (Lisp_Object, int, int, Lisp_Object); | |
3296 extern Lisp_Object get_frame_param (struct frame *, Lisp_Object); | |
3297 extern Lisp_Object frame_buffer_predicate (Lisp_Object); | |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3298 EXFUN (Fframep, 1); |
99321
91206eb7321f
(do_switch_frame, Fselect_frame)
Martin Rudalics <rudalics@gmx.at>
parents:
99182
diff
changeset
|
3299 EXFUN (Fselect_frame, 2); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3300 EXFUN (Fselected_frame, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3301 EXFUN (Fwindow_frame, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3302 EXFUN (Fframe_root_window, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3303 EXFUN (Fframe_first_window, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3304 EXFUN (Fframe_selected_window, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3305 EXFUN (Fframe_list, 0); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3306 EXFUN (Fnext_frame, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3307 EXFUN (Fdelete_frame, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3308 EXFUN (Fset_mouse_position, 3); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3309 EXFUN (Fmake_frame_visible, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3310 EXFUN (Fmake_frame_invisible, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3311 EXFUN (Ficonify_frame, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3312 EXFUN (Fframe_visible_p, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3313 EXFUN (Fvisible_frame_list, 0); |
36445
904a83f1b00b
* lisp.h (Fframe_parameter): Declare.
Ken Raeburn <raeburn@raeburn.org>
parents:
36430
diff
changeset
|
3314 EXFUN (Fframe_parameter, 2); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3315 EXFUN (Fframe_parameters, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3316 EXFUN (Fmodify_frame_parameters, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3317 EXFUN (Fset_frame_height, 3); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3318 EXFUN (Fset_frame_width, 3); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3319 EXFUN (Fset_frame_size, 3); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3320 EXFUN (Fset_frame_position, 3); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3321 EXFUN (Fraise_frame, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3322 EXFUN (Fredirect_frame_focus, 2); |
99321
91206eb7321f
(do_switch_frame, Fselect_frame)
Martin Rudalics <rudalics@gmx.at>
parents:
99182
diff
changeset
|
3323 EXFUN (Fset_frame_selected_window, 3); |
109099 | 3324 extern Lisp_Object frame_buffer_list (Lisp_Object); |
3325 extern void frames_discard_buffer (Lisp_Object); | |
3326 extern void set_frame_buffer_list (Lisp_Object, Lisp_Object); | |
3327 extern void frames_bury_buffer (Lisp_Object); | |
3328 extern void syms_of_frame (void); | |
302 | 3329 |
108933 | 3330 /* Defined in emacs.c */ |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3331 extern char **initial_argv; |
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3332 extern int initial_argc; |
109554
b22b609d1fa7
* src/lisp.h (Fkill_emacs): Mark as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109548
diff
changeset
|
3333 #if defined(HAVE_X_WINDOWS) || defined(HAVE_NS) |
b22b609d1fa7
* src/lisp.h (Fkill_emacs): Mark as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109548
diff
changeset
|
3334 extern int display_arg; |
b22b609d1fa7
* src/lisp.h (Fkill_emacs): Mark as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109548
diff
changeset
|
3335 #endif |
109313
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
3336 extern Lisp_Object decode_env_path (const char *, const char *); |
4528
5622149e7f75
(Vinvocation_directory): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
4139
diff
changeset
|
3337 extern Lisp_Object Vinvocation_name, Vinvocation_directory; |
98546
dae1f13ca423
(Vbefore_init_time, Vafter_init_time): Declare.
Chong Yidong <cyd@stupidchicken.com>
parents:
98327
diff
changeset
|
3338 extern Lisp_Object Vbefore_init_time, Vafter_init_time; |
81269
5e310b8be81d
(STRING_SET_UNIBYTE): Return the canonical empty unibyte string, if appropriate.
Juanma Barranquero <lekktu@gmail.com>
parents:
80985
diff
changeset
|
3339 extern Lisp_Object Vinstallation_directory; |
5e310b8be81d
(STRING_SET_UNIBYTE): Return the canonical empty unibyte string, if appropriate.
Juanma Barranquero <lekktu@gmail.com>
parents:
80985
diff
changeset
|
3340 extern Lisp_Object empty_unibyte_string, empty_multibyte_string; |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3341 extern Lisp_Object Qfile_name_handler_alist; |
110967
188673195616
Rename `image-library-alist' to `dynamic-library-alist'.
Juanma Barranquero <lekktu@gmail.com>
parents:
110645
diff
changeset
|
3342 extern Lisp_Object Vdynamic_library_alist; |
109666
8fc5e1925ae2
* src/lisp.h (fatal_error_signal, emacs_root_dir): Add declaration.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109653
diff
changeset
|
3343 extern void (*fatal_error_signal_hook) (void); |
109554
b22b609d1fa7
* src/lisp.h (Fkill_emacs): Mark as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109548
diff
changeset
|
3344 EXFUN (Fkill_emacs, 1) NO_RETURN; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25818
diff
changeset
|
3345 #if HAVE_SETLOCALE |
109099 | 3346 void fixup_locale (void); |
3347 void synchronize_system_messages_locale (void); | |
3348 void synchronize_system_time_locale (void); | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25818
diff
changeset
|
3349 #else |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25818
diff
changeset
|
3350 #define setlocale(category, locale) |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25818
diff
changeset
|
3351 #define fixup_locale() |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26479
diff
changeset
|
3352 #define synchronize_system_messages_locale() |
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26479
diff
changeset
|
3353 #define synchronize_system_time_locale() |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25818
diff
changeset
|
3354 #endif |
109099 | 3355 void shut_down_emacs (int, int, Lisp_Object); |
108933 | 3356 /* Nonzero means don't do interactive redisplay and don't change tty modes. */ |
302 | 3357 extern int noninteractive; |
99182
c1511154e8c2
* emacs.c (daemon_pipe): Make non-static.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
98983
diff
changeset
|
3358 |
105069
4cbb223d0b1c
The --quick command line option now ignores X resources and Registry settings.
Juanma Barranquero <lekktu@gmail.com>
parents:
104622
diff
changeset
|
3359 /* Nonzero means don't load X resources or Windows Registry settings. */ |
4cbb223d0b1c
The --quick command line option now ignores X resources and Registry settings.
Juanma Barranquero <lekktu@gmail.com>
parents:
104622
diff
changeset
|
3360 extern int inhibit_x_resources; |
4cbb223d0b1c
The --quick command line option now ignores X resources and Registry settings.
Juanma Barranquero <lekktu@gmail.com>
parents:
104622
diff
changeset
|
3361 |
99182
c1511154e8c2
* emacs.c (daemon_pipe): Make non-static.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
98983
diff
changeset
|
3362 /* Pipe used to send exit notification to the daemon parent at |
c1511154e8c2
* emacs.c (daemon_pipe): Make non-static.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
98983
diff
changeset
|
3363 startup. */ |
c1511154e8c2
* emacs.c (daemon_pipe): Make non-static.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
98983
diff
changeset
|
3364 extern int daemon_pipe[2]; |
c1511154e8c2
* emacs.c (daemon_pipe): Make non-static.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
98983
diff
changeset
|
3365 #define IS_DAEMON (daemon_pipe[1] != 0) |
c1511154e8c2
* emacs.c (daemon_pipe): Make non-static.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
98983
diff
changeset
|
3366 |
108933 | 3367 /* Nonzero means don't do use window-system-specific display code. */ |
302 | 3368 extern int inhibit_window_system; |
10316
272f15eddaca
(enum Lisp_Type): Delete Lisp_Buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10292
diff
changeset
|
3369 /* Nonzero means that a filter or a sentinel is running. */ |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10010
diff
changeset
|
3370 extern int running_asynch_code; |
302 | 3371 |
108933 | 3372 /* Defined in process.c */ |
109554
b22b609d1fa7
* src/lisp.h (Fkill_emacs): Mark as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109548
diff
changeset
|
3373 extern Lisp_Object QCtype, Qlocal; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3374 EXFUN (Fget_process, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3375 EXFUN (Fget_buffer_process, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3376 EXFUN (Fprocessp, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3377 EXFUN (Fprocess_status, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3378 EXFUN (Fkill_process, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3379 EXFUN (Fprocess_send_eof, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3380 EXFUN (Fwaiting_for_user_input_p, 0); |
10727 | 3381 extern Lisp_Object Qprocessp; |
109099 | 3382 extern void kill_buffer_processes (Lisp_Object); |
3383 extern int wait_reading_process_output (int, int, int, int, | |
3384 Lisp_Object, | |
3385 struct Lisp_Process *, | |
3386 int); | |
3387 extern void add_keyboard_wait_descriptor (int); | |
3388 extern void delete_keyboard_wait_descriptor (int); | |
3389 extern void add_gpm_wait_descriptor (int); | |
3390 extern void delete_gpm_wait_descriptor (int); | |
3391 extern void close_process_descs (void); | |
3392 extern void init_process (void); | |
3393 extern void syms_of_process (void); | |
3394 extern void setup_process_coding_systems (Lisp_Object); | |
302 | 3395 |
108933 | 3396 /* Defined in callproc.c */ |
39810
4b565579e4f5
(Vload_suffixes, Vexec_suffixes): Declare.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39804
diff
changeset
|
3397 extern Lisp_Object Vexec_path, Vexec_suffixes, |
4b565579e4f5
(Vload_suffixes, Vexec_suffixes): Declare.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39804
diff
changeset
|
3398 Vexec_directory, Vdata_directory; |
6029 | 3399 extern Lisp_Object Vdoc_directory; |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3400 extern Lisp_Object Vshell_file_name; |
25450
b5c133b3bfa0
Add declarations for some functions.
Andreas Schwab <schwab@suse.de>
parents:
25421
diff
changeset
|
3401 EXFUN (Fcall_process, MANY); |
109099 | 3402 extern int child_setup (int, int, int, char **, int, Lisp_Object); |
3403 extern void init_callproc_1 (void); | |
3404 extern void init_callproc (void); | |
3405 extern void set_initial_environment (void); | |
3406 extern void syms_of_callproc (void); | |
302 | 3407 |
108933 | 3408 /* Defined in doc.c */ |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3409 extern Lisp_Object Qfunction_documentation; |
302 | 3410 extern Lisp_Object Vdoc_file_name; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3411 EXFUN (Fsubstitute_command_keys, 1); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3412 EXFUN (Fdocumentation, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3413 EXFUN (Fdocumentation_property, 3); |
109099 | 3414 extern Lisp_Object read_doc_string (Lisp_Object); |
3415 extern Lisp_Object get_doc_string (Lisp_Object, int, int); | |
3416 extern void syms_of_doc (void); | |
3417 extern int read_bytecode_char (int); | |
302 | 3418 |
108933 | 3419 /* Defined in bytecode.c */ |
302 | 3420 extern Lisp_Object Qbytecode; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3421 EXFUN (Fbyte_code, 3); |
109099 | 3422 extern void syms_of_bytecode (void); |
26367
9f71d570068d
Add prototypes for new functions in bytecode.c.
Gerd Moellmann <gerd@gnu.org>
parents:
26309
diff
changeset
|
3423 extern struct byte_stack *byte_stack_list; |
109099 | 3424 extern void mark_byte_stack (void); |
3425 extern void unmark_byte_stack (void); | |
302 | 3426 |
108933 | 3427 /* Defined in macros.c */ |
302 | 3428 extern Lisp_Object Qexecute_kbd_macro; |
46886
1bc111036f11
(Fexecute_kbd_macro): Update prototype.
Kim F. Storm <storm@cua.dk>
parents:
46866
diff
changeset
|
3429 EXFUN (Fexecute_kbd_macro, 3); |
49866
c1513decc2e5
(Fcancel_kbd_macro_events, Fstring_to_multibyte): Add
Andreas Schwab <schwab@suse.de>
parents:
49665
diff
changeset
|
3430 EXFUN (Fcancel_kbd_macro_events, 0); |
109099 | 3431 extern void init_macros (void); |
3432 extern void syms_of_macros (void); | |
302 | 3433 |
108933 | 3434 /* Defined in undo.c */ |
109554
b22b609d1fa7
* src/lisp.h (Fkill_emacs): Mark as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109548
diff
changeset
|
3435 extern Lisp_Object Qapply; |
14665
7a50843d260f
(Qinhibit_read_only): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
14473
diff
changeset
|
3436 extern Lisp_Object Qinhibit_read_only; |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3437 EXFUN (Fundo_boundary, 0); |
109099 | 3438 extern void truncate_undo_list (struct buffer *); |
110484
7ca55779eeef
Fix some more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110480
diff
changeset
|
3439 extern void record_marker_adjustment (Lisp_Object, EMACS_INT); |
7ca55779eeef
Fix some more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110480
diff
changeset
|
3440 extern void record_insert (EMACS_INT, EMACS_INT); |
7ca55779eeef
Fix some more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110480
diff
changeset
|
3441 extern void record_delete (EMACS_INT, Lisp_Object); |
109099 | 3442 extern void record_first_change (void); |
110484
7ca55779eeef
Fix some more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110480
diff
changeset
|
3443 extern void record_change (EMACS_INT, EMACS_INT); |
7ca55779eeef
Fix some more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110480
diff
changeset
|
3444 extern void record_property_change (EMACS_INT, EMACS_INT, |
7ca55779eeef
Fix some more uses of int instead of EMACS_INT.
Eli Zaretskii <eliz@gnu.org>
parents:
110480
diff
changeset
|
3445 Lisp_Object, Lisp_Object, |
109099 | 3446 Lisp_Object); |
3447 extern void syms_of_undo (void); | |
59070
0927fb5e3920
(Vundo_outer_limit): Fix decl.
Richard M. Stallman <rms@gnu.org>
parents:
59049
diff
changeset
|
3448 extern Lisp_Object Vundo_outer_limit; |
1518
eda3ace74d74
* lisp.h (Fdefault_boundp, make_float, Ffloat, Fnth, Fcopy_alist,
Jim Blandy <jimb@redhat.com>
parents:
1442
diff
changeset
|
3449 |
108933 | 3450 /* Defined in textprop.c */ |
51858
bf6232373c39
(VALBITS): Define in terms of GCTYPEBITS.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51833
diff
changeset
|
3451 extern Lisp_Object Qfont, Qmouse_face; |
4079
c1b16f1167d4
(Qinsert_in_front_hooks, Qinsert_behind_hooks): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
4067
diff
changeset
|
3452 extern Lisp_Object Qinsert_in_front_hooks, Qinsert_behind_hooks; |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3453 extern Lisp_Object Qfront_sticky, Qrear_nonsticky; |
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3454 extern Lisp_Object Qminibuffer_prompt; |
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3455 |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3456 EXFUN (Fnext_single_property_change, 4); |
30322
6dd0219378f5
(Fnext_single_char_property_change): Add prototype.
Gerd Moellmann <gerd@gnu.org>
parents:
30218
diff
changeset
|
3457 EXFUN (Fnext_single_char_property_change, 4); |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3458 EXFUN (Fprevious_single_property_change, 4); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3459 EXFUN (Fget_text_property, 3); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3460 EXFUN (Fput_text_property, 5); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3461 EXFUN (Fprevious_char_property_change, 2); |
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3462 EXFUN (Fnext_char_property_change, 2); |
109099 | 3463 extern void report_interval_modification (Lisp_Object, Lisp_Object); |
3464 extern Lisp_Object next_single_char_property_change (Lisp_Object, | |
3465 Lisp_Object, | |
3466 Lisp_Object, | |
3467 Lisp_Object); | |
4067
379b03502e48
(Qinsert_before_hooks, Qinsert_after_hooks): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
4035
diff
changeset
|
3468 |
108933 | 3469 /* Defined in menu.c */ |
109099 | 3470 extern void syms_of_menu (void); |
95650
4be5569ac684
Declare syms_of_menu.
Chong Yidong <cyd@stupidchicken.com>
parents:
95590
diff
changeset
|
3471 |
108933 | 3472 /* Defined in xmenu.c */ |
18732
a0663e413622
(EXFUN, P_): New definitions. Use them to declare
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
3473 EXFUN (Fx_popup_menu, 2); |
62660
a3b4d6c789db
Fx_popup_dialog can have three arguments.
Nick Roberts <nickrob@snap.net.nz>
parents:
61724
diff
changeset
|
3474 EXFUN (Fx_popup_dialog, 3); |
109099 | 3475 extern void syms_of_xmenu (void); |
20297
bf0a54297d95
Add more prototypes and declarations. Forward declare
Andreas Schwab <schwab@suse.de>
parents:
20123
diff
changeset
|
3476 |
108933 | 3477 /* Defined in termchar.h */ |
82989
f3845715a5f6
Separate frame-local, tty-dependent parameters from tty-local parameters.
Karoly Lorentey <lorentey@elte.hu>
parents:
53341
diff
changeset
|
3478 struct tty_display_info; |
f3845715a5f6
Separate frame-local, tty-dependent parameters from tty-local parameters.
Karoly Lorentey <lorentey@elte.hu>
parents:
53341
diff
changeset
|
3479 |
108933 | 3480 /* Defined in termhooks.h */ |
83431
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83427
diff
changeset
|
3481 struct terminal; |
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
53111
diff
changeset
|
3482 |
108933 | 3483 /* Defined in sysdep.c */ |
65424 | 3484 #ifndef HAVE_GET_CURRENT_DIR_NAME |
109099 | 3485 extern char *get_current_dir_name (void); |
65420
23daa927d64c
(get_current_dir_name) [!HAVE_GET_CURRENT_DIR_NAME]: Add prototype.
Eli Zaretskii <eliz@gnu.org>
parents:
64981
diff
changeset
|
3486 #endif |
109099 | 3487 extern void stuff_char (char c); |
3488 extern void init_sigio (int); | |
3489 extern void sys_subshell (void); | |
3490 extern void sys_suspend (void); | |
3491 extern void discard_tty_input (void); | |
3492 extern void init_sys_modes (struct tty_display_info *); | |
3493 extern void reset_sys_modes (struct tty_display_info *); | |
3494 extern void init_all_sys_modes (void); | |
3495 extern void reset_all_sys_modes (void); | |
3496 extern void wait_for_termination (int); | |
3497 extern void flush_pending_output (int); | |
3498 extern void child_setup_tty (int); | |
3499 extern void setup_pty (int); | |
3500 extern int set_window_size (int, int, int); | |
3501 extern void create_process (Lisp_Object, char **, Lisp_Object); | |
3502 extern int emacs_open (const char *, int, int); | |
3503 extern int emacs_close (int); | |
3504 extern int emacs_read (int, char *, unsigned int); | |
3505 extern int emacs_write (int, const char *, unsigned int); | |
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109154
diff
changeset
|
3506 #ifndef HAVE_MEMSET |
109512
cd770c24eabe
* lisp.h: Remove leftover P_.
Andreas Schwab <schwab@linux-m68k.org>
parents:
109509
diff
changeset
|
3507 extern void *memset (void *, int, size_t); |
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109154
diff
changeset
|
3508 #endif |
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109154
diff
changeset
|
3509 #ifndef HAVE_MEMCPY |
109512
cd770c24eabe
* lisp.h: Remove leftover P_.
Andreas Schwab <schwab@linux-m68k.org>
parents:
109509
diff
changeset
|
3510 extern void *memcpy (void *, void *, size_t); |
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109154
diff
changeset
|
3511 #endif |
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109154
diff
changeset
|
3512 #ifndef HAVE_MEMMOVE |
109512
cd770c24eabe
* lisp.h: Remove leftover P_.
Andreas Schwab <schwab@linux-m68k.org>
parents:
109509
diff
changeset
|
3513 extern void *memmove (void *, void *, size_t); |
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109154
diff
changeset
|
3514 #endif |
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109154
diff
changeset
|
3515 #ifndef HAVE_MEMCMP |
109512
cd770c24eabe
* lisp.h: Remove leftover P_.
Andreas Schwab <schwab@linux-m68k.org>
parents:
109509
diff
changeset
|
3516 extern int memcmp (void *, void *, size_t); |
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109154
diff
changeset
|
3517 #endif |
20297
bf0a54297d95
Add more prototypes and declarations. Forward declare
Andreas Schwab <schwab@suse.de>
parents:
20123
diff
changeset
|
3518 |
108933 | 3519 /* Defined in filelock.c */ |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3520 extern Lisp_Object Vtemporary_file_directory; |
20297
bf0a54297d95
Add more prototypes and declarations. Forward declare
Andreas Schwab <schwab@suse.de>
parents:
20123
diff
changeset
|
3521 EXFUN (Funlock_buffer, 0); |
21711
2aa9965afd39
Remove extraneous semicolon.
Erik Naggum <erik@naggum.no>
parents:
21515
diff
changeset
|
3522 EXFUN (Ffile_locked_p, 1); |
109099 | 3523 extern void unlock_all_files (void); |
3524 extern void lock_file (Lisp_Object); | |
3525 extern void unlock_file (Lisp_Object); | |
3526 extern void unlock_buffer (struct buffer *); | |
3527 extern void syms_of_filelock (void); | |
3528 extern void init_filelock (void); | |
25748
6fddda6e635e
Add prototype for uninterrupt_malloc, memory_warnings,
Gerd Moellmann <gerd@gnu.org>
parents:
25737
diff
changeset
|
3529 |
6fddda6e635e
Add prototype for uninterrupt_malloc, memory_warnings,
Gerd Moellmann <gerd@gnu.org>
parents:
25737
diff
changeset
|
3530 /* Defined in sound.c */ |
109099 | 3531 extern void syms_of_sound (void); |
3532 extern void init_sound (void); | |
21931 | 3533 |
3534 /* Defined in category.c */ | |
109099 | 3535 extern void init_category_once (void); |
3536 extern Lisp_Object char_category_set (int); | |
3537 extern void syms_of_category (void); | |
21931 | 3538 |
3539 /* Defined in ccl.c */ | |
109099 | 3540 extern void syms_of_ccl (void); |
21931 | 3541 |
3542 /* Defined in dired.c */ | |
53111 | 3543 EXFUN (Ffile_attributes, 2); |
109099 | 3544 extern void syms_of_dired (void); |
3545 extern Lisp_Object directory_files_internal (Lisp_Object, Lisp_Object, | |
3546 Lisp_Object, Lisp_Object, | |
3547 int, Lisp_Object); | |
21931 | 3548 |
3549 /* Defined in term.c */ | |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3550 extern int *char_ins_del_vector; |
109099 | 3551 extern void syms_of_term (void); |
3552 extern void fatal (const char *msgid, ...) NO_RETURN; | |
21931 | 3553 |
83420
521d3f18b3d1
Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents:
83417
diff
changeset
|
3554 /* Defined in terminal.c */ |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107338
diff
changeset
|
3555 EXFUN (Fframe_terminal, 1); |
92108
fc5344b71cdb
(Fdelete_terminal): Declare.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91822
diff
changeset
|
3556 EXFUN (Fdelete_terminal, 2); |
109099 | 3557 extern void syms_of_terminal (void); |
21931 | 3558 |
97232 | 3559 /* Defined in font.c */ |
109099 | 3560 extern void syms_of_font (void); |
3561 extern void init_font (void); | |
97232 | 3562 |
69959
d1856dc3952f
(syms_of_fontset, Fset_fontset_font): Put extern and
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
69928
diff
changeset
|
3563 #ifdef HAVE_WINDOW_SYSTEM |
21931 | 3564 /* Defined in fontset.c */ |
109099 | 3565 extern void syms_of_fontset (void); |
88904
da66b8fcc88c
(CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
Kenichi Handa <handa@m17n.org>
parents:
88748
diff
changeset
|
3566 EXFUN (Fset_fontset_font, 5); |
88933 | 3567 EXFUN (Fnew_fontset, 2); |
69959
d1856dc3952f
(syms_of_fontset, Fset_fontset_font): Put extern and
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
69928
diff
changeset
|
3568 |
d1856dc3952f
(syms_of_fontset, Fset_fontset_font): Put extern and
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
69928
diff
changeset
|
3569 /* Defined in xfns.c, w32fns.c, or macfns.c */ |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3570 extern Lisp_Object Qfont_param; |
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3571 extern Lisp_Object Vx_no_window_manager; |
69959
d1856dc3952f
(syms_of_fontset, Fset_fontset_font): Put extern and
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
69928
diff
changeset
|
3572 EXFUN (Fxw_display_color_p, 1); |
d1856dc3952f
(syms_of_fontset, Fset_fontset_font): Put extern and
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
69928
diff
changeset
|
3573 EXFUN (Fx_file_dialog, 5); |
102736
c8e6da2dab57
(Fx_focus_frame): Declare.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102160
diff
changeset
|
3574 EXFUN (Fx_focus_frame, 1); |
21931 | 3575 #endif |
3576 | |
3577 /* Defined in xfaces.c */ | |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3578 extern Lisp_Object Qdefault, Qtool_bar, Qregion, Qfringe; |
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3579 extern Lisp_Object Qheader_line, Qscroll_bar, Qcursor, Qborder, Qmouse, Qmenu; |
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3580 extern Lisp_Object Qmode_line_inactive, Qvertical_border; |
109573
228a5fa4eda0
Remove extern declarations from .c files, and them to .h files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109566
diff
changeset
|
3581 extern Lisp_Object Qface; |
109554
b22b609d1fa7
* src/lisp.h (Fkill_emacs): Mark as NO_RETURN.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109548
diff
changeset
|
3582 extern Lisp_Object Qnormal; |
109673
0781924c2a38
Remove duplicate declarations.
Juanma Barranquero <lekktu@gmail.com>
parents:
109666
diff
changeset
|
3583 extern Lisp_Object QCfamily, QCweight, QCslant; |
0781924c2a38
Remove duplicate declarations.
Juanma Barranquero <lekktu@gmail.com>
parents:
109666
diff
changeset
|
3584 extern Lisp_Object QCheight, QCname, QCwidth, QCforeground, QCbackground; |
109635
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3585 extern Lisp_Object Vface_alternative_font_family_alist; |
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3586 extern Lisp_Object Vface_font_rescale_alist; |
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3587 extern Lisp_Object Vface_ignored_fonts; |
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3588 extern Lisp_Object Vface_alternative_font_registry_alist; |
fc7a8c411aa3
Add declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109579
diff
changeset
|
3589 extern Lisp_Object Vscalable_fonts_allowed; |
78616
798fe25e4552
(Fclear_face_cache, Fx_send_client_event): Declare.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78501
diff
changeset
|
3590 EXFUN (Fclear_face_cache, 1); |
102954
b5a34573cf82
* nsselect.m (symbol_to_nsstring, clean_local_selection_data)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102759
diff
changeset
|
3591 EXFUN (Fx_load_color_file, 1); |
109099 | 3592 extern void syms_of_xfaces (void); |
21931 | 3593 |
69374
c65249b41906
Remove duplicate prototypes. Make the prototype of getloadavg be conditioned
Eli Zaretskii <eliz@gnu.org>
parents:
69171
diff
changeset
|
3594 #ifndef HAVE_GETLOADAVG |
25712
178d6245c681
Add prototype for debug_print.
Gerd Moellmann <gerd@gnu.org>
parents:
25704
diff
changeset
|
3595 /* Defined in getloadavg.c */ |
109099 | 3596 extern int getloadavg (double *, int); |
69374
c65249b41906
Remove duplicate prototypes. Make the prototype of getloadavg be conditioned
Eli Zaretskii <eliz@gnu.org>
parents:
69171
diff
changeset
|
3597 #endif |
25712
178d6245c681
Add prototype for debug_print.
Gerd Moellmann <gerd@gnu.org>
parents:
25704
diff
changeset
|
3598 |
21931 | 3599 #ifdef HAVE_X_WINDOWS |
3600 /* Defined in xfns.c */ | |
109099 | 3601 extern void syms_of_xfns (void); |
21931 | 3602 |
43816
a00859016219
Extern declare syms_of_xsmfns ().
Jan Djärv <jan.h.d@swipnet.se>
parents:
43782
diff
changeset
|
3603 /* Defined in xsmfns.c */ |
109099 | 3604 extern void syms_of_xsmfns (void); |
43816
a00859016219
Extern declare syms_of_xsmfns ().
Jan Djärv <jan.h.d@swipnet.se>
parents:
43782
diff
changeset
|
3605 |
21931 | 3606 /* Defined in xselect.c */ |
109099 | 3607 extern void syms_of_xselect (void); |
21931 | 3608 |
3609 /* Defined in xterm.c */ | |
109099 | 3610 extern void syms_of_xterm (void); |
69959
d1856dc3952f
(syms_of_fontset, Fset_fontset_font): Put extern and
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
69928
diff
changeset
|
3611 #endif /* HAVE_X_WINDOWS */ |
25759
e473b3e5cf6d
Declare Fcurrent_message, Fmake_temp_name, read_bytecode_char,
Dave Love <fx@gnu.org>
parents:
25748
diff
changeset
|
3612 |
109151
004119b4b62e
Fix conflicting declarations of x_get_keysym_name
Andreas Schwab <schwab@linux-m68k.org>
parents:
109115
diff
changeset
|
3613 #ifdef HAVE_WINDOW_SYSTEM |
004119b4b62e
Fix conflicting declarations of x_get_keysym_name
Andreas Schwab <schwab@linux-m68k.org>
parents:
109115
diff
changeset
|
3614 /* Defined in xterm.c, nsterm.m, w32term.c */ |
004119b4b62e
Fix conflicting declarations of x_get_keysym_name
Andreas Schwab <schwab@linux-m68k.org>
parents:
109115
diff
changeset
|
3615 extern char *x_get_keysym_name (int); |
004119b4b62e
Fix conflicting declarations of x_get_keysym_name
Andreas Schwab <schwab@linux-m68k.org>
parents:
109115
diff
changeset
|
3616 #endif /* HAVE_WINDOW_SYSTEM */ |
004119b4b62e
Fix conflicting declarations of x_get_keysym_name
Andreas Schwab <schwab@linux-m68k.org>
parents:
109115
diff
changeset
|
3617 |
58013
93fda23ae576
Declare Fmsdos_downcase_filename.
Andreas Schwab <schwab@suse.de>
parents:
57868
diff
changeset
|
3618 #ifdef MSDOS |
93fda23ae576
Declare Fmsdos_downcase_filename.
Andreas Schwab <schwab@suse.de>
parents:
57868
diff
changeset
|
3619 /* Defined in msdos.c */ |
93fda23ae576
Declare Fmsdos_downcase_filename.
Andreas Schwab <schwab@suse.de>
parents:
57868
diff
changeset
|
3620 EXFUN (Fmsdos_downcase_filename, 1); |
93fda23ae576
Declare Fmsdos_downcase_filename.
Andreas Schwab <schwab@suse.de>
parents:
57868
diff
changeset
|
3621 #endif |
69959
d1856dc3952f
(syms_of_fontset, Fset_fontset_font): Put extern and
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
69928
diff
changeset
|
3622 |
110302
fd8902911ce3
Add support for the libxml2 library.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
109732
diff
changeset
|
3623 #ifdef HAVE_LIBXML2 |
fd8902911ce3
Add support for the libxml2 library.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
109732
diff
changeset
|
3624 /* Defined in xml.c */ |
fd8902911ce3
Add support for the libxml2 library.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
109732
diff
changeset
|
3625 extern void syms_of_xml (void); |
fd8902911ce3
Add support for the libxml2 library.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
109732
diff
changeset
|
3626 #endif |
fd8902911ce3
Add support for the libxml2 library.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
109732
diff
changeset
|
3627 |
85595
4f5a9f3d91ae
* lisp.h (Fget_text_property): Declare.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85345
diff
changeset
|
3628 #ifdef HAVE_MENUS |
97267
248808aeee3e
fix popup menu selection return (menu.c); add use of popup_activated under NS (nsmenu.m, xdisp.c); improve comments (lisp.h, s/darwin.h); use FORWARD_SIGNAL_TO_MAIN_THREAD (syssignal.h)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents:
97232
diff
changeset
|
3629 /* Defined in (x|w32)fns.c, nsfns.m... */ |
109099 | 3630 extern int have_menus_p (void); |
85595
4f5a9f3d91ae
* lisp.h (Fget_text_property): Declare.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85345
diff
changeset
|
3631 #endif |
97232 | 3632 |
3633 #ifdef HAVE_DBUS | |
3634 /* Defined in dbusbind.c */ | |
109099 | 3635 void syms_of_dbusbind (void); |
97232 | 3636 #endif |
109666
8fc5e1925ae2
* src/lisp.h (fatal_error_signal, emacs_root_dir): Add declaration.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109653
diff
changeset
|
3637 |
8fc5e1925ae2
* src/lisp.h (fatal_error_signal, emacs_root_dir): Add declaration.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109653
diff
changeset
|
3638 #ifdef DOS_NT |
8fc5e1925ae2
* src/lisp.h (fatal_error_signal, emacs_root_dir): Add declaration.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109653
diff
changeset
|
3639 /* Defined in msdos.c, w32.c */ |
8fc5e1925ae2
* src/lisp.h (fatal_error_signal, emacs_root_dir): Add declaration.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109653
diff
changeset
|
3640 extern char *emacs_root_dir (void); |
8fc5e1925ae2
* src/lisp.h (fatal_error_signal, emacs_root_dir): Add declaration.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109653
diff
changeset
|
3641 #endif /* DOS_NT */ |
29779
4fe4901e5113
(x_set_tool_bar_lines, free_frame_xic, compose_text, getenv, ctime)
Dave Love <fx@gnu.org>
parents:
29636
diff
changeset
|
3642 |
302 | 3643 /* Nonzero means Emacs has already been initialized. |
3644 Used during startup to detect startup of dumped Emacs. */ | |
3645 extern int initialized; | |
3646 | |
3647 extern int immediate_quit; /* Nonzero means ^G can quit instantly */ | |
3648 | |
109099 | 3649 extern POINTER_TYPE *xmalloc (size_t); |
3650 extern POINTER_TYPE *xrealloc (POINTER_TYPE *, size_t); | |
3651 extern void xfree (POINTER_TYPE *); | |
3652 | |
3653 extern char *xstrdup (const char *); | |
3654 | |
109313
e856a274549b
Constify functions taking char *
Andreas Schwab <schwab@linux-m68k.org>
parents:
109308
diff
changeset
|
3655 extern char *egetenv (const char *); |
17404
73012b195cf3
(DOWNCASE): Return int, not Lisp_Object.
Karl Heuer <kwzh@gnu.org>
parents:
17326
diff
changeset
|
3656 |
7906
1d64f77001be
declare init_system_name (replaces get_system_name).
Karl Heuer <kwzh@gnu.org>
parents:
7307
diff
changeset
|
3657 /* Set up the name of the machine we're running on. */ |
109099 | 3658 extern void init_system_name (void); |
9799
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3659 |
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3660 /* Some systems (e.g., NT) use a different path separator than Unix, |
108888
c2ac5cece5ea
Turn `directory-sep-char' into a noop.
Juanma Barranquero <lekktu@gmail.com>
parents:
108806
diff
changeset
|
3661 in addition to a device separator. Set the path separator |
9799
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3662 to '/', and don't test for a device separator in IS_ANY_SEP. */ |
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3663 |
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3664 #define DIRECTORY_SEP '/' |
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3665 #ifndef IS_DIRECTORY_SEP |
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3666 #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP) |
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3667 #endif |
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3668 #ifndef IS_DEVICE_SEP |
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3669 #ifndef DEVICE_SEP |
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3670 #define IS_DEVICE_SEP(_c_) 0 |
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3671 #else |
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3672 #define IS_DEVICE_SEP(_c_) ((_c_) == DEVICE_SEP) |
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3673 #endif |
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3674 #endif |
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3675 #ifndef IS_ANY_SEP |
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3676 #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_)) |
c9c11e41bf07
(DEVICE_SEP, DIRECTORY_SEP, IS_DEVICE_SEP)
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3677 #endif |
10455 | 3678 |
3679 #define SWITCH_ENUM_CAST(x) (x) | |
39579
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3680 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3681 /* Loop over Lisp list LIST. Signal an error if LIST is not a proper |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3682 list, or if it contains circles. |
45623
0e92d219e195
(current_column): Now returns float.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
45545
diff
changeset
|
3683 |
39579
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3684 HARE and TORTOISE should be the names of Lisp_Object variables, and |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3685 N should be the name of an EMACS_INT variable declared in the |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3686 function where the macro is used. Each nested loop should use |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3687 its own variables. |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3688 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3689 In the loop body, HARE is set to each cons of LIST, and N is the |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3690 length of the list processed so far. */ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3691 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3692 #define LIST_END_P(list, obj) \ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3693 (NILP (obj) \ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3694 ? 1 \ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3695 : (CONSP (obj) \ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3696 ? 0 \ |
41615
6486180ed9ef
(run_hook_list_with_args): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41262
diff
changeset
|
3697 : (wrong_type_argument (Qlistp, (list))), 1)) |
39579
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3698 |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3699 #define FOREACH(hare, list, tortoise, n) \ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3700 for (tortoise = hare = (list), n = 0; \ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3701 !LIST_END_P (list, hare); \ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3702 (hare = XCDR (hare), ++n, \ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3703 ((n & 1) != 0 \ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3704 ? (tortoise = XCDR (tortoise), \ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3705 (EQ (hare, tortoise) \ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3706 && (circular_list_error ((list)), 1))) \ |
e307d3530117
(LIST_END_P, FOREACH): New macros.
Gerd Moellmann <gerd@gnu.org>
parents:
39451
diff
changeset
|
3707 : 0))) |
39681 | 3708 |
3709 /* The ubiquitous min and max macros. */ | |
3710 | |
39710
45e11013c850
[max]: Undef min and max before redefining them.
Andrew Innes <andrewi@gnu.org>
parents:
39699
diff
changeset
|
3711 #ifdef max |
45e11013c850
[max]: Undef min and max before redefining them.
Andrew Innes <andrewi@gnu.org>
parents:
39699
diff
changeset
|
3712 #undef max |
45e11013c850
[max]: Undef min and max before redefining them.
Andrew Innes <andrewi@gnu.org>
parents:
39699
diff
changeset
|
3713 #undef min |
45e11013c850
[max]: Undef min and max before redefining them.
Andrew Innes <andrewi@gnu.org>
parents:
39699
diff
changeset
|
3714 #endif |
39681 | 3715 #define min(a, b) ((a) < (b) ? (a) : (b)) |
3716 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
39773
51f74f0f7fce
(make_fixnum_or_float): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
39766
diff
changeset
|
3717 |
85250
2acb83e611e8
(eabs): Rename from `abs'. All callers changed.
Eli Zaretskii <eliz@gnu.org>
parents:
85143
diff
changeset
|
3718 /* We used to use `abs', but that clashes with system headers on some |
2acb83e611e8
(eabs): Rename from `abs'. All callers changed.
Eli Zaretskii <eliz@gnu.org>
parents:
85143
diff
changeset
|
3719 platforms, and using a name reserved by Standard C is a bad idea |
2acb83e611e8
(eabs): Rename from `abs'. All callers changed.
Eli Zaretskii <eliz@gnu.org>
parents:
85143
diff
changeset
|
3720 anyway. */ |
2acb83e611e8
(eabs): Rename from `abs'. All callers changed.
Eli Zaretskii <eliz@gnu.org>
parents:
85143
diff
changeset
|
3721 #if !defined(eabs) |
2acb83e611e8
(eabs): Rename from `abs'. All callers changed.
Eli Zaretskii <eliz@gnu.org>
parents:
85143
diff
changeset
|
3722 #define eabs(x) ((x) < 0 ? -(x) : (x)) |
84804
bc91e8a1fafc
Johannes Weiner <hannes at saeurebad.de>
Glenn Morris <rgm@gnu.org>
parents:
84763
diff
changeset
|
3723 #endif |
bc91e8a1fafc
Johannes Weiner <hannes at saeurebad.de>
Glenn Morris <rgm@gnu.org>
parents:
84763
diff
changeset
|
3724 |
39773
51f74f0f7fce
(make_fixnum_or_float): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
39766
diff
changeset
|
3725 /* Return a fixnum or float, depending on whether VAL fits in a Lisp |
51f74f0f7fce
(make_fixnum_or_float): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
39766
diff
changeset
|
3726 fixnum. */ |
51f74f0f7fce
(make_fixnum_or_float): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
39766
diff
changeset
|
3727 |
51f74f0f7fce
(make_fixnum_or_float): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
39766
diff
changeset
|
3728 #define make_fixnum_or_float(val) \ |
41615
6486180ed9ef
(run_hook_list_with_args): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41262
diff
changeset
|
3729 (FIXNUM_OVERFLOW_P (val) \ |
6486180ed9ef
(run_hook_list_with_args): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41262
diff
changeset
|
3730 ? make_float (val) \ |
6486180ed9ef
(run_hook_list_with_args): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41262
diff
changeset
|
3731 : make_number ((EMACS_INT)(val))) |
52274 | 3732 |
55142
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3733 |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3734 /* Checks the `cycle check' variable CHECK to see if it indicates that |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3735 EL is part of a cycle; CHECK must be either Qnil or a value returned |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3736 by an earlier use of CYCLE_CHECK. SUSPICIOUS is the number of |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3737 elements after which a cycle might be suspected; after that many |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3738 elements, this macro begins consing in order to keep more precise |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3739 track of elements. |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3740 |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3741 Returns nil if a cycle was detected, otherwise a new value for CHECK |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3742 that includes EL. |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3743 |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3744 CHECK is evaluated multiple times, EL and SUSPICIOUS 0 or 1 times, so |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3745 the caller should make sure that's ok. */ |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3746 |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3747 #define CYCLE_CHECK(check, el, suspicious) \ |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3748 (NILP (check) \ |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3749 ? make_number (0) \ |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3750 : (INTEGERP (check) \ |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3751 ? (XFASTINT (check) < (suspicious) \ |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3752 ? make_number (XFASTINT (check) + 1) \ |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3753 : Fcons (el, Qnil)) \ |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3754 : (!NILP (Fmemq ((el), (check))) \ |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3755 ? Qnil \ |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3756 : Fcons ((el), (check))))) |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3757 |
45f74adeb581
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
Miles Bader <miles@gnu.org>
parents:
55081
diff
changeset
|
3758 |
56186 | 3759 /* SAFE_ALLOCA normally allocates memory on the stack, but if size is |
3760 larger than MAX_ALLOCA, use xmalloc to avoid overflowing the stack. */ | |
3761 | |
3762 #define MAX_ALLOCA 16*1024 | |
3763 | |
3764 extern Lisp_Object safe_alloca_unwind (Lisp_Object); | |
3765 | |
3766 #define USE_SAFE_ALLOCA \ | |
110514
8e5fcc5dd96b
Clean up EMACS_INT/int in cmds.c, as well as USE_SAFE_ALLOCA.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
110513
diff
changeset
|
3767 int sa_count = (int) SPECPDL_INDEX (), sa_must_free = 0 |
56186 | 3768 |
56198
a803de48faef
(SAFE_ALLOCA_LISP): New macro to allocate Lisp_Objects.
Kim F. Storm <storm@cua.dk>
parents:
56186
diff
changeset
|
3769 /* SAFE_ALLOCA allocates a simple buffer. */ |
a803de48faef
(SAFE_ALLOCA_LISP): New macro to allocate Lisp_Objects.
Kim F. Storm <storm@cua.dk>
parents:
56186
diff
changeset
|
3770 |
56186 | 3771 #define SAFE_ALLOCA(buf, type, size) \ |
3772 do { \ | |
3773 if ((size) < MAX_ALLOCA) \ | |
3774 buf = (type) alloca (size); \ | |
3775 else \ | |
3776 { \ | |
3777 buf = (type) xmalloc (size); \ | |
57724
80393689541a
(USE_SAFE_ALLOCA): Add and init sa_must_free integer.
Kim F. Storm <storm@cua.dk>
parents:
57571
diff
changeset
|
3778 sa_must_free++; \ |
56186 | 3779 record_unwind_protect (safe_alloca_unwind, \ |
3780 make_save_value (buf, 0)); \ | |
3781 } \ | |
3782 } while (0) | |
3783 | |
56198
a803de48faef
(SAFE_ALLOCA_LISP): New macro to allocate Lisp_Objects.
Kim F. Storm <storm@cua.dk>
parents:
56186
diff
changeset
|
3784 /* SAFE_FREE frees xmalloced memory and enables GC as needed. */ |
a803de48faef
(SAFE_ALLOCA_LISP): New macro to allocate Lisp_Objects.
Kim F. Storm <storm@cua.dk>
parents:
56186
diff
changeset
|
3785 |
57724
80393689541a
(USE_SAFE_ALLOCA): Add and init sa_must_free integer.
Kim F. Storm <storm@cua.dk>
parents:
57571
diff
changeset
|
3786 #define SAFE_FREE() \ |
56186 | 3787 do { \ |
57724
80393689541a
(USE_SAFE_ALLOCA): Add and init sa_must_free integer.
Kim F. Storm <storm@cua.dk>
parents:
57571
diff
changeset
|
3788 if (sa_must_free) { \ |
80393689541a
(USE_SAFE_ALLOCA): Add and init sa_must_free integer.
Kim F. Storm <storm@cua.dk>
parents:
57571
diff
changeset
|
3789 sa_must_free = 0; \ |
56186 | 3790 unbind_to (sa_count, Qnil); \ |
57724
80393689541a
(USE_SAFE_ALLOCA): Add and init sa_must_free integer.
Kim F. Storm <storm@cua.dk>
parents:
57571
diff
changeset
|
3791 } \ |
56186 | 3792 } while (0) |
3793 | |
3794 | |
56204
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3795 /* SAFE_ALLOCA_LISP allocates an array of Lisp_Objects. */ |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3796 |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3797 #define SAFE_ALLOCA_LISP(buf, nelt) \ |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3798 do { \ |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3799 int size_ = (nelt) * sizeof (Lisp_Object); \ |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3800 if (size_ < MAX_ALLOCA) \ |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3801 buf = (Lisp_Object *) alloca (size_); \ |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3802 else \ |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3803 { \ |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3804 Lisp_Object arg_; \ |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3805 buf = (Lisp_Object *) xmalloc (size_); \ |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3806 arg_ = make_save_value (buf, nelt); \ |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3807 XSAVE_VALUE (arg_)->dogc = 1; \ |
57724
80393689541a
(USE_SAFE_ALLOCA): Add and init sa_must_free integer.
Kim F. Storm <storm@cua.dk>
parents:
57571
diff
changeset
|
3808 sa_must_free++; \ |
56204
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3809 record_unwind_protect (safe_alloca_unwind, arg_); \ |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3810 } \ |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3811 } while (0) |
d79e58a67b48
(struct Lisp_Save_Value): New member dogc.
Kim F. Storm <storm@cua.dk>
parents:
56198
diff
changeset
|
3812 |
56186 | 3813 |
52274 | 3814 #endif /* EMACS_LISP_H */ |
52401 | 3815 |
3816 /* arch-tag: 9b2ed020-70eb-47ac-94ee-e1c2a5107d5e | |
3817 (do not change this comment) */ |