Mercurial > emacs
annotate src/lread.c @ 2732:8b55aa587d3c
* xdisp.c (display_text_line): Apply faces to characters
according to overlays and text properties; use
compute_char_face and compute_glyph_face to figure out what
face to use, and where a new face starts.
* xterm.c (dumpglyphs): Use the upper bits of the glyphs to decide
which frame face to use. Call GLYPH_FOLLOW_ALIASES to make sure
we're implementing the glyph table properly. If we're not using
the default or mode line face, call intern_face to find a display
face for the frame face selected by the glyph code. Implement
underlining. Remove the `font' argument; we have to derive this
from the frame and face anyway. Change all callers.
* disptab.h (GLYPH_FOLLOW_ALIASES): New macro.
* xterm.c (x_destroy_window): Call free_frame_faces.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Mon, 10 May 1993 00:26:32 +0000 |
parents | ba685dcc3750 |
children | fde05936aebb |
rev | line source |
---|---|
341 | 1 /* Lisp parsing and input streams. |
692 | 2 Copyright (C) 1985, 1986, 1987, 1988, 1989, |
3 1992 Free Software Foundation, Inc. | |
341 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
617 | 9 the Free Software Foundation; either version 2, or (at your option) |
341 | 10 any later version. |
11 | |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with GNU Emacs; see the file COPYING. If not, write to | |
19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
20 | |
21 | |
22 #include <stdio.h> | |
23 #include <sys/types.h> | |
24 #include <sys/stat.h> | |
25 #include <sys/file.h> | |
796 | 26 #include <ctype.h> |
341 | 27 #undef NULL |
28 #include "config.h" | |
29 #include "lisp.h" | |
30 | |
31 #ifndef standalone | |
32 #include "buffer.h" | |
33 #include "paths.h" | |
34 #include "commands.h" | |
1591
765cb54fa9af
* lread.c: #include "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents:
1519
diff
changeset
|
35 #include "keyboard.h" |
2044
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
36 #include "termhooks.h" |
341 | 37 #endif |
38 | |
39 #ifdef lint | |
40 #include <sys/inode.h> | |
41 #endif /* lint */ | |
42 | |
43 #ifndef X_OK | |
44 #define X_OK 01 | |
45 #endif | |
46 | |
47 #ifdef LISP_FLOAT_TYPE | |
48 #include <math.h> | |
49 #endif /* LISP_FLOAT_TYPE */ | |
50 | |
51 Lisp_Object Qread_char, Qget_file_char, Qstandard_input; | |
52 Lisp_Object Qvariable_documentation, Vvalues, Vstandard_input, Vafter_load_alist; | |
2044
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
53 Lisp_Object Qascii_character; |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
54 |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
55 extern Lisp_Object Qevent_symbol_element_mask; |
341 | 56 |
57 /* non-zero if inside `load' */ | |
58 int load_in_progress; | |
59 | |
60 /* Search path for files to be loaded. */ | |
61 Lisp_Object Vload_path; | |
62 | |
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
63 /* This is the user-visible association list that maps features to |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
64 lists of defs in their load files. */ |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
65 Lisp_Object Vload_history; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
66 |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
67 /* This is useud to build the load history. */ |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
68 Lisp_Object Vcurrent_load_list; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
69 |
341 | 70 /* File for get_file_char to read from. Use by load */ |
71 static FILE *instream; | |
72 | |
73 /* When nonzero, read conses in pure space */ | |
74 static int read_pure; | |
75 | |
76 /* For use within read-from-string (this reader is non-reentrant!!) */ | |
77 static int read_from_string_index; | |
78 static int read_from_string_limit; | |
79 | |
80 /* Handle unreading and rereading of characters. | |
81 Write READCHAR to read a character, | |
82 UNREAD(c) to unread c to be read again. */ | |
83 | |
84 #define READCHAR readchar (readcharfun) | |
85 #define UNREAD(c) unreadchar (readcharfun, c) | |
86 | |
87 static int | |
88 readchar (readcharfun) | |
89 Lisp_Object readcharfun; | |
90 { | |
91 Lisp_Object tem; | |
92 register struct buffer *inbuffer; | |
93 register int c, mpos; | |
94 | |
95 if (XTYPE (readcharfun) == Lisp_Buffer) | |
96 { | |
97 inbuffer = XBUFFER (readcharfun); | |
98 | |
99 if (BUF_PT (inbuffer) >= BUF_ZV (inbuffer)) | |
100 return -1; | |
101 c = *(unsigned char *) BUF_CHAR_ADDRESS (inbuffer, BUF_PT (inbuffer)); | |
102 SET_BUF_PT (inbuffer, BUF_PT (inbuffer) + 1); | |
103 | |
104 return c; | |
105 } | |
106 if (XTYPE (readcharfun) == Lisp_Marker) | |
107 { | |
108 inbuffer = XMARKER (readcharfun)->buffer; | |
109 | |
110 mpos = marker_position (readcharfun); | |
111 | |
112 if (mpos > BUF_ZV (inbuffer) - 1) | |
113 return -1; | |
114 c = *(unsigned char *) BUF_CHAR_ADDRESS (inbuffer, mpos); | |
115 if (mpos != BUF_GPT (inbuffer)) | |
116 XMARKER (readcharfun)->bufpos++; | |
117 else | |
118 Fset_marker (readcharfun, make_number (mpos + 1), | |
119 Fmarker_buffer (readcharfun)); | |
120 return c; | |
121 } | |
122 if (EQ (readcharfun, Qget_file_char)) | |
123 return getc (instream); | |
124 | |
125 if (XTYPE (readcharfun) == Lisp_String) | |
126 { | |
127 register int c; | |
128 /* This used to be return of a conditional expression, | |
129 but that truncated -1 to a char on VMS. */ | |
130 if (read_from_string_index < read_from_string_limit) | |
131 c = XSTRING (readcharfun)->data[read_from_string_index++]; | |
132 else | |
133 c = -1; | |
134 return c; | |
135 } | |
136 | |
137 tem = call0 (readcharfun); | |
138 | |
485 | 139 if (NILP (tem)) |
341 | 140 return -1; |
141 return XINT (tem); | |
142 } | |
143 | |
144 /* Unread the character C in the way appropriate for the stream READCHARFUN. | |
145 If the stream is a user function, call it with the char as argument. */ | |
146 | |
147 static void | |
148 unreadchar (readcharfun, c) | |
149 Lisp_Object readcharfun; | |
150 int c; | |
151 { | |
152 if (XTYPE (readcharfun) == Lisp_Buffer) | |
153 { | |
154 if (XBUFFER (readcharfun) == current_buffer) | |
155 SET_PT (point - 1); | |
156 else | |
157 SET_BUF_PT (XBUFFER (readcharfun), BUF_PT (XBUFFER (readcharfun)) - 1); | |
158 } | |
159 else if (XTYPE (readcharfun) == Lisp_Marker) | |
160 XMARKER (readcharfun)->bufpos--; | |
161 else if (XTYPE (readcharfun) == Lisp_String) | |
162 read_from_string_index--; | |
163 else if (EQ (readcharfun, Qget_file_char)) | |
164 ungetc (c, instream); | |
165 else | |
166 call1 (readcharfun, make_number (c)); | |
167 } | |
168 | |
169 static Lisp_Object read0 (), read1 (), read_list (), read_vector (); | |
170 | |
171 /* get a character from the tty */ | |
172 | |
1519
5d0837ebee9c
* lread.c (read_char): Add an extern declaration for this,
Jim Blandy <jimb@redhat.com>
parents:
1092
diff
changeset
|
173 extern Lisp_Object read_char (); |
5d0837ebee9c
* lread.c (read_char): Add an extern declaration for this,
Jim Blandy <jimb@redhat.com>
parents:
1092
diff
changeset
|
174 |
2654
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
175 /* Read input events until we get one that's acceptable for our purposes. |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
176 |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
177 If NO_SWITCH_FRAME is non-zero, switch-frame events are stashed |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
178 until we get a character we like, and then stuffed into |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
179 unread_switch_frame. |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
180 |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
181 If ASCII_REQUIRED is non-zero, we check function key events to see |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
182 if the unmodified version of the symbol has a Qascii_character |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
183 property, and use that character, if present. |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
184 |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
185 If ERROR_NONASCII is non-zero, we signal an error if the input we |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
186 get isn't an ASCII character with modifiers. If it's zero but |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
187 ASCII_REQUIRED is non-zero, we just re-read until we get an ASCII |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
188 character. */ |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
189 Lisp_Object |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
190 read_filtered_event (no_switch_frame, ascii_required, error_nonascii) |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
191 int no_switch_frame, ascii_required, error_nonascii; |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
192 { |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
193 #ifdef standalone |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
194 return make_number (getchar ()); |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
195 #else |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
196 register Lisp_Object val; |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
197 register Lisp_Object delayed_switch_frame = Qnil; |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
198 |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
199 /* Read until we get an acceptable event. */ |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
200 retry: |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
201 val = read_char (0, 0, 0, Qnil, 0); |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
202 |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
203 /* switch-frame events are put off until after the next ASCII |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
204 character. This is better than signalling an error just because |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
205 the last characters were typed to a separate minibuffer frame, |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
206 for example. Eventually, some code which can deal with |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
207 switch-frame events will read it and process it. */ |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
208 if (no_switch_frame |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
209 && EVENT_HAS_PARAMETERS (val) |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
210 && EQ (EVENT_HEAD (val), Qswitch_frame)) |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
211 { |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
212 delayed_switch_frame = val; |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
213 goto retry; |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
214 } |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
215 |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
216 if (ascii_required) |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
217 { |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
218 /* Convert certain symbols to their ASCII equivalents. */ |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
219 if (XTYPE (val) == Lisp_Symbol) |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
220 { |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
221 Lisp_Object tem, tem1, tem2; |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
222 tem = Fget (val, Qevent_symbol_element_mask); |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
223 if (!NILP (tem)) |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
224 { |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
225 tem1 = Fget (Fcar (tem), Qascii_character); |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
226 /* Merge this symbol's modifier bits |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
227 with the ASCII equivalent of its basic code. */ |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
228 if (!NILP (tem1)) |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
229 XFASTINT (val) = XINT (tem1) | XINT (Fcar (Fcdr (tem))); |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
230 } |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
231 } |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
232 |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
233 /* If we don't have a character now, deal with it appropriately. */ |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
234 if (XTYPE (val) != Lisp_Int) |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
235 { |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
236 if (error_nonascii) |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
237 { |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
238 unread_command_events = Fcons (val, Qnil); |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
239 error ("Non-character input-event"); |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
240 } |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
241 else |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
242 goto retry; |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
243 } |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
244 } |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
245 |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
246 if (! NILP (delayed_switch_frame)) |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
247 unread_switch_frame = delayed_switch_frame; |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
248 |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
249 return val; |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
250 #endif |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
251 } |
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
252 |
341 | 253 DEFUN ("read-char", Fread_char, Sread_char, 0, 0, 0, |
254 "Read a character from the command input (keyboard or macro).\n\ | |
851 | 255 It is returned as a number.\n\ |
256 If the user generates an event which is not a character (i.e. a mouse\n\ | |
1591
765cb54fa9af
* lread.c: #include "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents:
1519
diff
changeset
|
257 click or function key event), `read-char' signals an error. As an\n\ |
765cb54fa9af
* lread.c: #include "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents:
1519
diff
changeset
|
258 exception, switch-frame events are put off until non-ASCII events can\n\ |
765cb54fa9af
* lread.c: #include "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents:
1519
diff
changeset
|
259 be read.\n\ |
765cb54fa9af
* lread.c: #include "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents:
1519
diff
changeset
|
260 If you want to read non-character events, or ignore them, call\n\ |
765cb54fa9af
* lread.c: #include "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents:
1519
diff
changeset
|
261 `read-event' or `read-char-exclusive' instead.") |
341 | 262 () |
263 { | |
2654
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
264 return read_filtered_event (1, 1, 1); |
341 | 265 } |
266 | |
267 DEFUN ("read-event", Fread_event, Sread_event, 0, 0, 0, | |
268 "Read an event object from the input stream.") | |
269 () | |
270 { | |
2654
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
271 return read_filtered_event (0, 0, 0); |
341 | 272 } |
273 | |
274 DEFUN ("read-char-exclusive", Fread_char_exclusive, Sread_char_exclusive, 0, 0, 0, | |
275 "Read a character from the command input (keyboard or macro).\n\ | |
276 It is returned as a number. Non character events are ignored.") | |
277 () | |
278 { | |
2654
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
279 return read_filtered_event (1, 1, 0); |
341 | 280 } |
281 | |
282 DEFUN ("get-file-char", Fget_file_char, Sget_file_char, 0, 0, 0, | |
283 "Don't use this yourself.") | |
284 () | |
285 { | |
286 register Lisp_Object val; | |
287 XSET (val, Lisp_Int, getc (instream)); | |
288 return val; | |
289 } | |
290 | |
291 static void readevalloop (); | |
292 static Lisp_Object load_unwind (); | |
293 | |
294 DEFUN ("load", Fload, Sload, 1, 4, 0, | |
295 "Execute a file of Lisp code named FILE.\n\ | |
296 First try FILE with `.elc' appended, then try with `.el',\n\ | |
297 then try FILE unmodified.\n\ | |
298 This function searches the directories in `load-path'.\n\ | |
299 If optional second arg NOERROR is non-nil,\n\ | |
300 report no error if FILE doesn't exist.\n\ | |
301 Print messages at start and end of loading unless\n\ | |
302 optional third arg NOMESSAGE is non-nil.\n\ | |
303 If optional fourth arg NOSUFFIX is non-nil, don't try adding\n\ | |
304 suffixes `.elc' or `.el' to the specified name FILE.\n\ | |
305 Return t if file exists.") | |
306 (str, noerror, nomessage, nosuffix) | |
307 Lisp_Object str, noerror, nomessage, nosuffix; | |
308 { | |
309 register FILE *stream; | |
310 register int fd = -1; | |
311 register Lisp_Object lispstream; | |
312 register FILE **ptr; | |
313 int count = specpdl_ptr - specpdl; | |
314 Lisp_Object temp; | |
315 struct gcpro gcpro1; | |
316 Lisp_Object found; | |
1758
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
317 /* 1 means inhibit the message at the beginning. */ |
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
318 int nomessage1 = 0; |
341 | 319 |
320 CHECK_STRING (str, 0); | |
321 str = Fsubstitute_in_file_name (str); | |
322 | |
323 /* Avoid weird lossage with null string as arg, | |
324 since it would try to load a directory as a Lisp file */ | |
325 if (XSTRING (str)->size > 0) | |
326 { | |
485 | 327 fd = openp (Vload_path, str, !NILP (nosuffix) ? "" : ".elc:.el:", |
341 | 328 &found, 0); |
329 } | |
330 | |
331 if (fd < 0) | |
332 { | |
485 | 333 if (NILP (noerror)) |
341 | 334 while (1) |
335 Fsignal (Qfile_error, Fcons (build_string ("Cannot open load file"), | |
336 Fcons (str, Qnil))); | |
337 else | |
338 return Qnil; | |
339 } | |
340 | |
341 if (!bcmp (&(XSTRING (found)->data[XSTRING (found)->size - 4]), | |
342 ".elc", 4)) | |
343 { | |
344 struct stat s1, s2; | |
345 int result; | |
346 | |
347 stat (XSTRING (found)->data, &s1); | |
348 XSTRING (found)->data[XSTRING (found)->size - 1] = 0; | |
349 result = stat (XSTRING (found)->data, &s2); | |
350 if (result >= 0 && (unsigned) s1.st_mtime < (unsigned) s2.st_mtime) | |
1758
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
351 { |
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
352 message ("Source file `%s' newer than byte-compiled file", |
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
353 XSTRING (found)->data); |
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
354 /* Don't immediately overwrite this message. */ |
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
355 if (!noninteractive) |
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
356 nomessage1 = 1; |
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
357 } |
341 | 358 XSTRING (found)->data[XSTRING (found)->size - 1] = 'c'; |
359 } | |
360 | |
361 stream = fdopen (fd, "r"); | |
362 if (stream == 0) | |
363 { | |
364 close (fd); | |
365 error ("Failure to create stdio stream for %s", XSTRING (str)->data); | |
366 } | |
367 | |
1758
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
368 if (NILP (nomessage) && !nomessage1) |
341 | 369 message ("Loading %s...", XSTRING (str)->data); |
370 | |
371 GCPRO1 (str); | |
372 /* We may not be able to store STREAM itself as a Lisp_Object pointer | |
373 since that is guaranteed to work only for data that has been malloc'd. | |
374 So malloc a full-size pointer, and record the address of that pointer. */ | |
375 ptr = (FILE **) xmalloc (sizeof (FILE *)); | |
376 *ptr = stream; | |
377 XSET (lispstream, Lisp_Internal_Stream, (int) ptr); | |
378 record_unwind_protect (load_unwind, lispstream); | |
379 load_in_progress++; | |
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
380 readevalloop (Qget_file_char, stream, str, Feval, 0); |
341 | 381 unbind_to (count, Qnil); |
382 | |
383 /* Run any load-hooks for this file. */ | |
384 temp = Fassoc (str, Vafter_load_alist); | |
485 | 385 if (!NILP (temp)) |
341 | 386 Fprogn (Fcdr (temp)); |
387 UNGCPRO; | |
388 | |
485 | 389 if (!noninteractive && NILP (nomessage)) |
341 | 390 message ("Loading %s...done", XSTRING (str)->data); |
391 return Qt; | |
392 } | |
393 | |
394 static Lisp_Object | |
395 load_unwind (stream) /* used as unwind-protect function in load */ | |
396 Lisp_Object stream; | |
397 { | |
398 fclose (*(FILE **) XSTRING (stream)); | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2044
diff
changeset
|
399 xfree (XPNTR (stream)); |
341 | 400 if (--load_in_progress < 0) load_in_progress = 0; |
401 return Qnil; | |
402 } | |
403 | |
404 | |
405 static int | |
406 complete_filename_p (pathname) | |
407 Lisp_Object pathname; | |
408 { | |
409 register unsigned char *s = XSTRING (pathname)->data; | |
410 return (*s == '/' | |
411 #ifdef ALTOS | |
412 || *s == '@' | |
413 #endif | |
414 #ifdef VMS | |
415 || index (s, ':') | |
416 #endif /* VMS */ | |
417 ); | |
418 } | |
419 | |
420 /* Search for a file whose name is STR, looking in directories | |
421 in the Lisp list PATH, and trying suffixes from SUFFIX. | |
422 SUFFIX is a string containing possible suffixes separated by colons. | |
423 On success, returns a file descriptor. On failure, returns -1. | |
424 | |
425 EXEC_ONLY nonzero means don't open the files, | |
426 just look for one that is executable. In this case, | |
427 returns 1 on success. | |
428 | |
429 If STOREPTR is nonzero, it points to a slot where the name of | |
430 the file actually found should be stored as a Lisp string. | |
431 Nil is stored there on failure. */ | |
432 | |
433 int | |
434 openp (path, str, suffix, storeptr, exec_only) | |
435 Lisp_Object path, str; | |
436 char *suffix; | |
437 Lisp_Object *storeptr; | |
438 int exec_only; | |
439 { | |
440 register int fd; | |
441 int fn_size = 100; | |
442 char buf[100]; | |
443 register char *fn = buf; | |
444 int absolute = 0; | |
445 int want_size; | |
446 register Lisp_Object filename; | |
447 struct stat st; | |
448 | |
449 if (storeptr) | |
450 *storeptr = Qnil; | |
451 | |
452 if (complete_filename_p (str)) | |
453 absolute = 1; | |
454 | |
485 | 455 for (; !NILP (path); path = Fcdr (path)) |
341 | 456 { |
457 char *nsuffix; | |
458 | |
459 filename = Fexpand_file_name (str, Fcar (path)); | |
460 if (!complete_filename_p (filename)) | |
461 /* If there are non-absolute elts in PATH (eg ".") */ | |
462 /* Of course, this could conceivably lose if luser sets | |
463 default-directory to be something non-absolute... */ | |
464 { | |
465 filename = Fexpand_file_name (filename, current_buffer->directory); | |
466 if (!complete_filename_p (filename)) | |
467 /* Give up on this path element! */ | |
468 continue; | |
469 } | |
470 | |
471 /* Calculate maximum size of any filename made from | |
472 this path element/specified file name and any possible suffix. */ | |
473 want_size = strlen (suffix) + XSTRING (filename)->size + 1; | |
474 if (fn_size < want_size) | |
475 fn = (char *) alloca (fn_size = 100 + want_size); | |
476 | |
477 nsuffix = suffix; | |
478 | |
479 /* Loop over suffixes. */ | |
480 while (1) | |
481 { | |
482 char *esuffix = (char *) index (nsuffix, ':'); | |
483 int lsuffix = esuffix ? esuffix - nsuffix : strlen (nsuffix); | |
484 | |
485 /* Concatenate path element/specified name with the suffix. */ | |
486 strncpy (fn, XSTRING (filename)->data, XSTRING (filename)->size); | |
487 fn[XSTRING (filename)->size] = 0; | |
488 if (lsuffix != 0) /* Bug happens on CCI if lsuffix is 0. */ | |
489 strncat (fn, nsuffix, lsuffix); | |
490 | |
491 /* Ignore file if it's a directory. */ | |
492 if (stat (fn, &st) >= 0 | |
493 && (st.st_mode & S_IFMT) != S_IFDIR) | |
494 { | |
495 /* Check that we can access or open it. */ | |
496 if (exec_only) | |
497 fd = (access (fn, X_OK) == 0) ? 1 : -1; | |
498 else | |
499 fd = open (fn, 0, 0); | |
500 | |
501 if (fd >= 0) | |
502 { | |
503 /* We succeeded; return this descriptor and filename. */ | |
504 if (storeptr) | |
505 *storeptr = build_string (fn); | |
506 return fd; | |
507 } | |
508 } | |
509 | |
510 /* Advance to next suffix. */ | |
511 if (esuffix == 0) | |
512 break; | |
513 nsuffix += lsuffix + 1; | |
514 } | |
515 if (absolute) return -1; | |
516 } | |
517 | |
518 return -1; | |
519 } | |
520 | |
521 | |
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
522 /* Merge the list we've accumulated of globals from the current input source |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
523 into the load_history variable. The details depend on whether |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
524 the source has an associated file name or not. */ |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
525 |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
526 static void |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
527 build_load_history (stream, source) |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
528 FILE *stream; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
529 Lisp_Object source; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
530 { |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
531 register Lisp_Object tail, prev, newelt; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
532 register Lisp_Object tem, tem2; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
533 register int foundit, loading; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
534 |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
535 loading = stream || !NARROWED; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
536 |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
537 tail = Vload_history; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
538 prev = Qnil; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
539 foundit = 0; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
540 while (!NILP (tail)) |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
541 { |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
542 tem = Fcar (tail); |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
543 |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
544 /* Find the feature's previous assoc list... */ |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
545 if (!NILP (Fequal (source, Fcar (tem)))) |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
546 { |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
547 foundit = 1; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
548 |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
549 /* If we're loading, remove it. */ |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
550 if (loading) |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
551 { |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
552 if (NILP (prev)) |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
553 Vload_history = Fcdr (tail); |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
554 else |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
555 Fsetcdr (prev, Fcdr (tail)); |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
556 } |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
557 |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
558 /* Otherwise, cons on new symbols that are not already members. */ |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
559 else |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
560 { |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
561 tem2 = Vcurrent_load_list; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
562 |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
563 while (CONSP (tem2)) |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
564 { |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
565 newelt = Fcar (tem2); |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
566 |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
567 if (NILP (Fmemq (newelt, tem))) |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
568 Fsetcar (tail, Fcons (Fcar (tem), |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
569 Fcons (newelt, Fcdr (tem)))); |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
570 |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
571 tem2 = Fcdr (tem2); |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
572 QUIT; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
573 } |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
574 } |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
575 } |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
576 else |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
577 prev = tail; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
578 tail = Fcdr (tail); |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
579 QUIT; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
580 } |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
581 |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
582 /* If we're loading, cons the new assoc onto the front of load-history, |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
583 the most-recently-loaded position. Also do this if we didn't find |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
584 an existing member for the current source. */ |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
585 if (loading || !foundit) |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
586 Vload_history = Fcons (Fnreverse(Vcurrent_load_list), |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
587 Vload_history); |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
588 } |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
589 |
341 | 590 Lisp_Object |
591 unreadpure () /* Used as unwind-protect function in readevalloop */ | |
592 { | |
593 read_pure = 0; | |
594 return Qnil; | |
595 } | |
596 | |
597 static void | |
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
598 readevalloop (readcharfun, stream, sourcename, evalfun, printflag) |
341 | 599 Lisp_Object readcharfun; |
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
600 FILE *stream; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
601 Lisp_Object sourcename; |
341 | 602 Lisp_Object (*evalfun) (); |
603 int printflag; | |
604 { | |
605 register int c; | |
606 register Lisp_Object val; | |
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
607 Lisp_Object oldlist; |
341 | 608 int count = specpdl_ptr - specpdl; |
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
609 struct gcpro gcpro1, gcpro2; |
341 | 610 |
611 specbind (Qstandard_input, readcharfun); | |
612 | |
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
613 oldlist = Vcurrent_load_list; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
614 GCPRO2 (sourcename, oldlist); |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
615 |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
616 Vcurrent_load_list = Qnil; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
617 LOADHIST_ATTACH (sourcename); |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
618 |
341 | 619 while (1) |
620 { | |
621 instream = stream; | |
622 c = READCHAR; | |
623 if (c == ';') | |
624 { | |
625 while ((c = READCHAR) != '\n' && c != -1); | |
626 continue; | |
627 } | |
628 if (c < 0) break; | |
629 if (c == ' ' || c == '\t' || c == '\n' || c == '\f') continue; | |
630 | |
485 | 631 if (!NILP (Vpurify_flag) && c == '(') |
341 | 632 { |
633 record_unwind_protect (unreadpure, Qnil); | |
634 val = read_list (-1, readcharfun); | |
635 unbind_to (count + 1, Qnil); | |
636 } | |
637 else | |
638 { | |
639 UNREAD (c); | |
640 val = read0 (readcharfun); | |
641 } | |
642 | |
643 val = (*evalfun) (val); | |
644 if (printflag) | |
645 { | |
646 Vvalues = Fcons (val, Vvalues); | |
647 if (EQ (Vstandard_output, Qt)) | |
648 Fprin1 (val, Qnil); | |
649 else | |
650 Fprint (val, Qnil); | |
651 } | |
652 } | |
653 | |
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
654 build_load_history (stream, sourcename); |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
655 |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
656 Vcurrent_load_list = oldlist; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
657 UNGCPRO; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
658 |
341 | 659 unbind_to (count, Qnil); |
660 } | |
661 | |
662 #ifndef standalone | |
663 | |
732 | 664 DEFUN ("eval-buffer", Feval_buffer, Seval_buffer, 0, 2, "", |
675
85fd29f25c75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
673
diff
changeset
|
665 "Execute the current buffer as Lisp code.\n\ |
85fd29f25c75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
673
diff
changeset
|
666 Programs can pass two arguments, BUFFER and PRINTFLAG.\n\ |
85fd29f25c75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
673
diff
changeset
|
667 BUFFER is the buffer to evaluate (nil means use current buffer).\n\ |
85fd29f25c75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
673
diff
changeset
|
668 PRINTFLAG controls printing of output:\n\ |
672 | 669 nil means discard it; anything else is stream for print.\n\ |
670 \n\ | |
671 If there is no error, point does not move. If there is an error,\n\ | |
672 point remains at the end of the last character read from the buffer.") | |
673 (bufname, printflag) | |
674 Lisp_Object bufname, printflag; | |
675 { | |
676 int count = specpdl_ptr - specpdl; | |
677 Lisp_Object tem, buf; | |
678 | |
673 | 679 if (NILP (bufname)) |
672 | 680 buf = Fcurrent_buffer (); |
681 else | |
682 buf = Fget_buffer (bufname); | |
673 | 683 if (NILP (buf)) |
672 | 684 error ("No such buffer."); |
685 | |
673 | 686 if (NILP (printflag)) |
672 | 687 tem = Qsymbolp; |
688 else | |
689 tem = printflag; | |
690 specbind (Qstandard_output, tem); | |
691 record_unwind_protect (save_excursion_restore, save_excursion_save ()); | |
692 BUF_SET_PT (XBUFFER (buf), BUF_BEGV (XBUFFER (buf))); | |
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
693 readevalloop (buf, 0, XBUFFER (buf)->filename, Feval, !NILP (printflag)); |
1924
21bd3a2189d3
* keyboard.c (recursive_edit_1, command_loop_1): Pass the proper
Jim Blandy <jimb@redhat.com>
parents:
1887
diff
changeset
|
694 unbind_to (count, Qnil); |
672 | 695 |
696 return Qnil; | |
697 } | |
698 | |
699 #if 0 | |
341 | 700 DEFUN ("eval-current-buffer", Feval_current_buffer, Seval_current_buffer, 0, 1, "", |
701 "Execute the current buffer as Lisp code.\n\ | |
702 Programs can pass argument PRINTFLAG which controls printing of output:\n\ | |
703 nil means discard it; anything else is stream for print.\n\ | |
704 \n\ | |
705 If there is no error, point does not move. If there is an error,\n\ | |
706 point remains at the end of the last character read from the buffer.") | |
707 (printflag) | |
708 Lisp_Object printflag; | |
709 { | |
710 int count = specpdl_ptr - specpdl; | |
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
711 Lisp_Object tem, cbuf; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
712 |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
713 cbuf = Fcurrent_buffer () |
341 | 714 |
485 | 715 if (NILP (printflag)) |
341 | 716 tem = Qsymbolp; |
717 else | |
718 tem = printflag; | |
719 specbind (Qstandard_output, tem); | |
720 record_unwind_protect (save_excursion_restore, save_excursion_save ()); | |
721 SET_PT (BEGV); | |
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
722 readevalloop (cbuf, 0, XBUFFER (cbuf)->filename, Feval, !NILP (printflag)); |
341 | 723 return unbind_to (count, Qnil); |
724 } | |
672 | 725 #endif |
341 | 726 |
727 DEFUN ("eval-region", Feval_region, Seval_region, 2, 3, "r", | |
728 "Execute the region as Lisp code.\n\ | |
729 When called from programs, expects two arguments,\n\ | |
730 giving starting and ending indices in the current buffer\n\ | |
731 of the text to be executed.\n\ | |
732 Programs can pass third argument PRINTFLAG which controls output:\n\ | |
733 nil means discard it; anything else is stream for printing it.\n\ | |
734 \n\ | |
735 If there is no error, point does not move. If there is an error,\n\ | |
736 point remains at the end of the last character read from the buffer.") | |
737 (b, e, printflag) | |
738 Lisp_Object b, e, printflag; | |
739 { | |
740 int count = specpdl_ptr - specpdl; | |
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
741 Lisp_Object tem, cbuf; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
742 |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
743 cbuf = Fcurrent_buffer (); |
341 | 744 |
485 | 745 if (NILP (printflag)) |
341 | 746 tem = Qsymbolp; |
747 else | |
748 tem = printflag; | |
749 specbind (Qstandard_output, tem); | |
750 | |
485 | 751 if (NILP (printflag)) |
341 | 752 record_unwind_protect (save_excursion_restore, save_excursion_save ()); |
753 record_unwind_protect (save_restriction_restore, save_restriction_save ()); | |
754 | |
755 /* This both uses b and checks its type. */ | |
756 Fgoto_char (b); | |
757 Fnarrow_to_region (make_number (BEGV), e); | |
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
758 readevalloop (cbuf, 0, XBUFFER (cbuf)->filename, Feval, !NILP (printflag)); |
341 | 759 |
760 return unbind_to (count, Qnil); | |
761 } | |
762 | |
763 #endif /* standalone */ | |
764 | |
765 DEFUN ("read", Fread, Sread, 0, 1, 0, | |
766 "Read one Lisp expression as text from STREAM, return as Lisp object.\n\ | |
767 If STREAM is nil, use the value of `standard-input' (which see).\n\ | |
768 STREAM or the value of `standard-input' may be:\n\ | |
769 a buffer (read from point and advance it)\n\ | |
770 a marker (read from where it points and advance it)\n\ | |
771 a function (call it with no arguments for each character,\n\ | |
772 call it with a char as argument to push a char back)\n\ | |
773 a string (takes text from string, starting at the beginning)\n\ | |
774 t (read text line using minibuffer and use it).") | |
775 (readcharfun) | |
776 Lisp_Object readcharfun; | |
777 { | |
778 extern Lisp_Object Fread_minibuffer (); | |
779 | |
485 | 780 if (NILP (readcharfun)) |
341 | 781 readcharfun = Vstandard_input; |
782 if (EQ (readcharfun, Qt)) | |
783 readcharfun = Qread_char; | |
784 | |
785 #ifndef standalone | |
786 if (EQ (readcharfun, Qread_char)) | |
787 return Fread_minibuffer (build_string ("Lisp expression: "), Qnil); | |
788 #endif | |
789 | |
790 if (XTYPE (readcharfun) == Lisp_String) | |
791 return Fcar (Fread_from_string (readcharfun, Qnil, Qnil)); | |
792 | |
793 return read0 (readcharfun); | |
794 } | |
795 | |
796 DEFUN ("read-from-string", Fread_from_string, Sread_from_string, 1, 3, 0, | |
797 "Read one Lisp expression which is represented as text by STRING.\n\ | |
798 Returns a cons: (OBJECT-READ . FINAL-STRING-INDEX).\n\ | |
799 START and END optionally delimit a substring of STRING from which to read;\n\ | |
800 they default to 0 and (length STRING) respectively.") | |
801 (string, start, end) | |
802 Lisp_Object string, start, end; | |
803 { | |
804 int startval, endval; | |
805 Lisp_Object tem; | |
806 | |
807 CHECK_STRING (string,0); | |
808 | |
485 | 809 if (NILP (end)) |
341 | 810 endval = XSTRING (string)->size; |
811 else | |
812 { CHECK_NUMBER (end,2); | |
813 endval = XINT (end); | |
814 if (endval < 0 || endval > XSTRING (string)->size) | |
815 args_out_of_range (string, end); | |
816 } | |
817 | |
485 | 818 if (NILP (start)) |
341 | 819 startval = 0; |
820 else | |
821 { CHECK_NUMBER (start,1); | |
822 startval = XINT (start); | |
823 if (startval < 0 || startval > endval) | |
824 args_out_of_range (string, start); | |
825 } | |
826 | |
827 read_from_string_index = startval; | |
828 read_from_string_limit = endval; | |
829 | |
830 tem = read0 (string); | |
831 return Fcons (tem, make_number (read_from_string_index)); | |
832 } | |
833 | |
834 /* Use this for recursive reads, in contexts where internal tokens are not allowed. */ | |
835 | |
836 static Lisp_Object | |
837 read0 (readcharfun) | |
838 Lisp_Object readcharfun; | |
839 { | |
840 register Lisp_Object val; | |
841 char c; | |
842 | |
843 val = read1 (readcharfun); | |
844 if (XTYPE (val) == Lisp_Internal) | |
845 { | |
846 c = XINT (val); | |
847 return Fsignal (Qinvalid_read_syntax, Fcons (make_string (&c, 1), Qnil)); | |
848 } | |
849 | |
850 return val; | |
851 } | |
852 | |
853 static int read_buffer_size; | |
854 static char *read_buffer; | |
855 | |
856 static int | |
857 read_escape (readcharfun) | |
858 Lisp_Object readcharfun; | |
859 { | |
860 register int c = READCHAR; | |
861 switch (c) | |
862 { | |
863 case 'a': | |
485 | 864 return '\007'; |
341 | 865 case 'b': |
866 return '\b'; | |
2018
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
867 case 'd': |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
868 return 0177; |
341 | 869 case 'e': |
870 return 033; | |
871 case 'f': | |
872 return '\f'; | |
873 case 'n': | |
874 return '\n'; | |
875 case 'r': | |
876 return '\r'; | |
877 case 't': | |
878 return '\t'; | |
879 case 'v': | |
880 return '\v'; | |
881 case '\n': | |
882 return -1; | |
883 | |
884 case 'M': | |
885 c = READCHAR; | |
886 if (c != '-') | |
887 error ("Invalid escape character syntax"); | |
888 c = READCHAR; | |
889 if (c == '\\') | |
890 c = read_escape (readcharfun); | |
2044
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
891 return c | meta_modifier; |
2018
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
892 |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
893 case 'S': |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
894 c = READCHAR; |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
895 if (c != '-') |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
896 error ("Invalid escape character syntax"); |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
897 c = READCHAR; |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
898 if (c == '\\') |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
899 c = read_escape (readcharfun); |
2044
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
900 return c | shift_modifier; |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
901 |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
902 case 'H': |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
903 c = READCHAR; |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
904 if (c != '-') |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
905 error ("Invalid escape character syntax"); |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
906 c = READCHAR; |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
907 if (c == '\\') |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
908 c = read_escape (readcharfun); |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
909 return c | hyper_modifier; |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
910 |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
911 case 'A': |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
912 c = READCHAR; |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
913 if (c != '-') |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
914 error ("Invalid escape character syntax"); |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
915 c = READCHAR; |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
916 if (c == '\\') |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
917 c = read_escape (readcharfun); |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
918 return c | alt_modifier; |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
919 |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
920 case 's': |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
921 c = READCHAR; |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
922 if (c != '-') |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
923 error ("Invalid escape character syntax"); |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
924 c = READCHAR; |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
925 if (c == '\\') |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
926 c = read_escape (readcharfun); |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
927 return c | super_modifier; |
341 | 928 |
929 case 'C': | |
930 c = READCHAR; | |
931 if (c != '-') | |
932 error ("Invalid escape character syntax"); | |
933 case '^': | |
934 c = READCHAR; | |
935 if (c == '\\') | |
936 c = read_escape (readcharfun); | |
2018
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
937 if ((c & 0177) == '?') |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
938 return 0177 | c; |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
939 /* ASCII control chars are made from letters (both cases), |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
940 as well as the non-letters within 0100...0137. */ |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
941 else if ((c & 0137) >= 0101 && (c & 0137) <= 0132) |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
942 return (c & (037 | ~0177)); |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
943 else if ((c & 0177) >= 0100 && (c & 0177) <= 0137) |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
944 return (c & (037 | ~0177)); |
341 | 945 else |
2044
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
946 return c | ctrl_modifier; |
341 | 947 |
948 case '0': | |
949 case '1': | |
950 case '2': | |
951 case '3': | |
952 case '4': | |
953 case '5': | |
954 case '6': | |
955 case '7': | |
956 /* An octal escape, as in ANSI C. */ | |
957 { | |
958 register int i = c - '0'; | |
959 register int count = 0; | |
960 while (++count < 3) | |
961 { | |
962 if ((c = READCHAR) >= '0' && c <= '7') | |
963 { | |
964 i *= 8; | |
965 i += c - '0'; | |
966 } | |
967 else | |
968 { | |
969 UNREAD (c); | |
970 break; | |
971 } | |
972 } | |
973 return i; | |
974 } | |
975 | |
976 case 'x': | |
977 /* A hex escape, as in ANSI C. */ | |
978 { | |
979 int i = 0; | |
980 while (1) | |
981 { | |
982 c = READCHAR; | |
983 if (c >= '0' && c <= '9') | |
984 { | |
985 i *= 16; | |
986 i += c - '0'; | |
987 } | |
988 else if ((c >= 'a' && c <= 'f') | |
989 || (c >= 'A' && c <= 'F')) | |
990 { | |
991 i *= 16; | |
992 if (c >= 'a' && c <= 'f') | |
993 i += c - 'a' + 10; | |
994 else | |
995 i += c - 'A' + 10; | |
996 } | |
997 else | |
998 { | |
999 UNREAD (c); | |
1000 break; | |
1001 } | |
1002 } | |
1003 return i; | |
1004 } | |
1005 | |
1006 default: | |
1007 return c; | |
1008 } | |
1009 } | |
1010 | |
1011 static Lisp_Object | |
1012 read1 (readcharfun) | |
1013 register Lisp_Object readcharfun; | |
1014 { | |
1015 register int c; | |
1016 | |
1017 retry: | |
1018 | |
1019 c = READCHAR; | |
1020 if (c < 0) return Fsignal (Qend_of_file, Qnil); | |
1021 | |
1022 switch (c) | |
1023 { | |
1024 case '(': | |
1025 return read_list (0, readcharfun); | |
1026 | |
1027 case '[': | |
1028 return read_vector (readcharfun); | |
1029 | |
1030 case ')': | |
1031 case ']': | |
1032 { | |
1033 register Lisp_Object val; | |
1034 XSET (val, Lisp_Internal, c); | |
1035 return val; | |
1036 } | |
1037 | |
1038 case '#': | |
373
7c6f74ef31a3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
364
diff
changeset
|
1039 c = READCHAR; |
7c6f74ef31a3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
364
diff
changeset
|
1040 if (c == '[') |
7c6f74ef31a3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
364
diff
changeset
|
1041 { |
7c6f74ef31a3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
364
diff
changeset
|
1042 /* Accept compiled functions at read-time so that we don't have to |
7c6f74ef31a3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
364
diff
changeset
|
1043 build them using function calls. */ |
1966
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1044 Lisp_Object tmp; |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1045 tmp = read_vector (readcharfun); |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1046 return Fmake_byte_code (XVECTOR (tmp)->size, |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1047 XVECTOR (tmp)->contents); |
373
7c6f74ef31a3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
364
diff
changeset
|
1048 } |
1966
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1049 #ifdef USE_TEXT_PROPERTIES |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1050 if (c == '(') |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1051 { |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1052 Lisp_Object tmp; |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1053 struct gcpro gcpro1; |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1054 |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1055 /* Read the string itself. */ |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1056 tmp = read1 (readcharfun); |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1057 if (XTYPE (tmp) != Lisp_String) |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1058 Fsignal (Qinvalid_read_syntax, Fcons (make_string ("#", 1), Qnil)); |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1059 GCPRO1 (tmp); |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1060 /* Read the intervals and their properties. */ |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1061 while (1) |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1062 { |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1063 Lisp_Object beg, end, plist; |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1064 |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1065 beg = read1 (readcharfun); |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1066 if (XTYPE (beg) == Lisp_Internal) |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1067 { |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1068 if (XINT (beg) == ')') |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1069 break; |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1070 Fsignal (Qinvalid_read_syntax, Fcons (make_string ("invalid string property list", 28), Qnil)); |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1071 } |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1072 end = read1 (readcharfun); |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1073 if (XTYPE (end) == Lisp_Internal) |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1074 Fsignal (Qinvalid_read_syntax, |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1075 Fcons (make_string ("invalid string property list", 28), Qnil)); |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1076 |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1077 plist = read1 (readcharfun); |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1078 if (XTYPE (plist) == Lisp_Internal) |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1079 Fsignal (Qinvalid_read_syntax, |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1080 Fcons (make_string ("invalid string property list", 28), Qnil)); |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1081 Fset_text_properties (beg, end, plist, tmp); |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1082 } |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1083 UNGCPRO; |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1084 return tmp; |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1085 } |
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1086 #endif |
373
7c6f74ef31a3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
364
diff
changeset
|
1087 UNREAD (c); |
1966
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1088 Fsignal (Qinvalid_read_syntax, Fcons (make_string ("#", 1), Qnil)); |
341 | 1089 |
1090 case ';': | |
1091 while ((c = READCHAR) >= 0 && c != '\n'); | |
1092 goto retry; | |
1093 | |
1094 case '\'': | |
1095 { | |
1096 return Fcons (Qquote, Fcons (read0 (readcharfun), Qnil)); | |
1097 } | |
1098 | |
1099 case '?': | |
1100 { | |
1101 register Lisp_Object val; | |
1102 | |
1103 c = READCHAR; | |
1104 if (c < 0) return Fsignal (Qend_of_file, Qnil); | |
1105 | |
1106 if (c == '\\') | |
1107 XSET (val, Lisp_Int, read_escape (readcharfun)); | |
1108 else | |
1109 XSET (val, Lisp_Int, c); | |
1110 | |
1111 return val; | |
1112 } | |
1113 | |
1114 case '\"': | |
1115 { | |
1116 register char *p = read_buffer; | |
1117 register char *end = read_buffer + read_buffer_size; | |
1118 register int c; | |
1119 int cancel = 0; | |
1120 | |
1121 while ((c = READCHAR) >= 0 | |
1122 && c != '\"') | |
1123 { | |
1124 if (p == end) | |
1125 { | |
1126 char *new = (char *) xrealloc (read_buffer, read_buffer_size *= 2); | |
1127 p += new - read_buffer; | |
1128 read_buffer += new - read_buffer; | |
1129 end = read_buffer + read_buffer_size; | |
1130 } | |
1131 if (c == '\\') | |
1132 c = read_escape (readcharfun); | |
1133 /* c is -1 if \ newline has just been seen */ | |
2018
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
1134 if (c == -1) |
341 | 1135 { |
1136 if (p == read_buffer) | |
1137 cancel = 1; | |
1138 } | |
2018
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
1139 else if (c & CHAR_META) |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
1140 /* Move the meta bit to the right place for a string. */ |
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
1141 *p++ = (c & ~CHAR_META) | 0x80; |
341 | 1142 else |
1143 *p++ = c; | |
1144 } | |
1145 if (c < 0) return Fsignal (Qend_of_file, Qnil); | |
1146 | |
1147 /* If purifying, and string starts with \ newline, | |
1148 return zero instead. This is for doc strings | |
604 | 1149 that we are really going to find in etc/DOC.nn.nn */ |
485 | 1150 if (!NILP (Vpurify_flag) && NILP (Vdoc_file_name) && cancel) |
341 | 1151 return make_number (0); |
1152 | |
1153 if (read_pure) | |
1154 return make_pure_string (read_buffer, p - read_buffer); | |
1155 else | |
1156 return make_string (read_buffer, p - read_buffer); | |
1157 } | |
1158 | |
762 | 1159 case '.': |
1160 { | |
1161 #ifdef LISP_FLOAT_TYPE | |
1162 /* If a period is followed by a number, then we should read it | |
1163 as a floating point number. Otherwise, it denotes a dotted | |
1164 pair. */ | |
1165 int next_char = READCHAR; | |
1166 UNREAD (next_char); | |
1167 | |
1168 if (! isdigit (next_char)) | |
1169 #endif | |
1170 { | |
1171 register Lisp_Object val; | |
1172 XSET (val, Lisp_Internal, c); | |
1173 return val; | |
1174 } | |
1175 | |
1176 /* Otherwise, we fall through! Note that the atom-reading loop | |
1177 below will now loop at least once, assuring that we will not | |
1178 try to UNREAD two characters in a row. */ | |
1179 } | |
341 | 1180 default: |
1181 if (c <= 040) goto retry; | |
1182 { | |
1183 register char *p = read_buffer; | |
1184 | |
1185 { | |
1186 register char *end = read_buffer + read_buffer_size; | |
1187 | |
1188 while (c > 040 && | |
1189 !(c == '\"' || c == '\'' || c == ';' || c == '?' | |
1190 || c == '(' || c == ')' | |
762 | 1191 #ifndef LISP_FLOAT_TYPE |
1192 /* If we have floating-point support, then we need | |
1193 to allow <digits><dot><digits>. */ | |
341 | 1194 || c =='.' |
1195 #endif /* not LISP_FLOAT_TYPE */ | |
1196 || c == '[' || c == ']' || c == '#' | |
1197 )) | |
1198 { | |
1199 if (p == end) | |
1200 { | |
1201 register char *new = (char *) xrealloc (read_buffer, read_buffer_size *= 2); | |
1202 p += new - read_buffer; | |
1203 read_buffer += new - read_buffer; | |
1204 end = read_buffer + read_buffer_size; | |
1205 } | |
1206 if (c == '\\') | |
1207 c = READCHAR; | |
1208 *p++ = c; | |
1209 c = READCHAR; | |
1210 } | |
1211 | |
1212 if (p == end) | |
1213 { | |
1214 char *new = (char *) xrealloc (read_buffer, read_buffer_size *= 2); | |
1215 p += new - read_buffer; | |
1216 read_buffer += new - read_buffer; | |
1217 /* end = read_buffer + read_buffer_size; */ | |
1218 } | |
1219 *p = 0; | |
1220 if (c >= 0) | |
1221 UNREAD (c); | |
1222 } | |
1223 | |
1224 /* Is it an integer? */ | |
1225 { | |
1226 register char *p1; | |
1227 register Lisp_Object val; | |
1228 p1 = read_buffer; | |
1229 if (*p1 == '+' || *p1 == '-') p1++; | |
1230 if (p1 != p) | |
1231 { | |
1232 while (p1 != p && (c = *p1) >= '0' && c <= '9') p1++; | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1758
diff
changeset
|
1233 #ifdef LISP_FLOAT_TYPE |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1758
diff
changeset
|
1234 /* Integers can have trailing decimal points. */ |
1827
e31051f17b9d
* lread.c (read1): Although digits followed by a '.' are an
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1235 if (p1 > read_buffer && p1 < p && *p1 == '.') p1++; |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1758
diff
changeset
|
1236 #endif |
341 | 1237 if (p1 == p) |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1758
diff
changeset
|
1238 /* It is an integer. */ |
341 | 1239 { |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1758
diff
changeset
|
1240 #ifdef LISP_FLOAT_TYPE |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1758
diff
changeset
|
1241 if (p1[-1] == '.') |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1758
diff
changeset
|
1242 p1[-1] = '\0'; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1758
diff
changeset
|
1243 #endif |
341 | 1244 XSET (val, Lisp_Int, atoi (read_buffer)); |
1245 return val; | |
1246 } | |
1247 } | |
1248 #ifdef LISP_FLOAT_TYPE | |
1249 if (isfloat_string (read_buffer)) | |
1250 return make_float (atof (read_buffer)); | |
1251 #endif | |
1252 } | |
1253 | |
1254 return intern (read_buffer); | |
1255 } | |
1256 } | |
1257 } | |
1258 | |
1259 #ifdef LISP_FLOAT_TYPE | |
1260 | |
1261 #define LEAD_INT 1 | |
1262 #define DOT_CHAR 2 | |
1263 #define TRAIL_INT 4 | |
1264 #define E_CHAR 8 | |
1265 #define EXP_INT 16 | |
1266 | |
1267 int | |
1268 isfloat_string (cp) | |
1269 register char *cp; | |
1270 { | |
1271 register state; | |
1272 | |
1273 state = 0; | |
1274 if (*cp == '+' || *cp == '-') | |
1275 cp++; | |
1276 | |
1277 if (isdigit(*cp)) | |
1278 { | |
1279 state |= LEAD_INT; | |
1280 while (isdigit (*cp)) | |
1281 cp ++; | |
1282 } | |
1283 if (*cp == '.') | |
1284 { | |
1285 state |= DOT_CHAR; | |
1286 cp++; | |
1287 } | |
1288 if (isdigit(*cp)) | |
1289 { | |
1290 state |= TRAIL_INT; | |
1291 while (isdigit (*cp)) | |
1292 cp++; | |
1293 } | |
1294 if (*cp == 'e') | |
1295 { | |
1296 state |= E_CHAR; | |
1297 cp++; | |
1298 } | |
1299 if ((*cp == '+') || (*cp == '-')) | |
1300 cp++; | |
1301 | |
1302 if (isdigit (*cp)) | |
1303 { | |
1304 state |= EXP_INT; | |
1305 while (isdigit (*cp)) | |
1306 cp++; | |
1307 } | |
1308 return (*cp == 0 | |
1309 && (state == (LEAD_INT|DOT_CHAR|TRAIL_INT) | |
826 | 1310 || state == (DOT_CHAR|TRAIL_INT) |
341 | 1311 || state == (LEAD_INT|E_CHAR|EXP_INT) |
826 | 1312 || state == (LEAD_INT|DOT_CHAR|TRAIL_INT|E_CHAR|EXP_INT) |
1313 || state == (DOT_CHAR|TRAIL_INT|E_CHAR|EXP_INT))); | |
341 | 1314 } |
1315 #endif /* LISP_FLOAT_TYPE */ | |
1316 | |
1317 static Lisp_Object | |
1318 read_vector (readcharfun) | |
1319 Lisp_Object readcharfun; | |
1320 { | |
1321 register int i; | |
1322 register int size; | |
1323 register Lisp_Object *ptr; | |
1324 register Lisp_Object tem, vector; | |
1325 register struct Lisp_Cons *otem; | |
1326 Lisp_Object len; | |
1327 | |
1328 tem = read_list (1, readcharfun); | |
1329 len = Flength (tem); | |
1330 vector = (read_pure ? make_pure_vector (XINT (len)) : Fmake_vector (len, Qnil)); | |
1331 | |
1332 | |
1333 size = XVECTOR (vector)->size; | |
1334 ptr = XVECTOR (vector)->contents; | |
1335 for (i = 0; i < size; i++) | |
1336 { | |
1337 ptr[i] = read_pure ? Fpurecopy (Fcar (tem)) : Fcar (tem); | |
1338 otem = XCONS (tem); | |
1339 tem = Fcdr (tem); | |
1340 free_cons (otem); | |
1341 } | |
1342 return vector; | |
1343 } | |
1344 | |
1345 /* flag = 1 means check for ] to terminate rather than ) and . | |
1346 flag = -1 means check for starting with defun | |
1347 and make structure pure. */ | |
1348 | |
1349 static Lisp_Object | |
1350 read_list (flag, readcharfun) | |
1351 int flag; | |
1352 register Lisp_Object readcharfun; | |
1353 { | |
1354 /* -1 means check next element for defun, | |
1355 0 means don't check, | |
1356 1 means already checked and found defun. */ | |
1357 int defunflag = flag < 0 ? -1 : 0; | |
1358 Lisp_Object val, tail; | |
1359 register Lisp_Object elt, tem; | |
1360 struct gcpro gcpro1, gcpro2; | |
1361 | |
1362 val = Qnil; | |
1363 tail = Qnil; | |
1364 | |
1365 while (1) | |
1366 { | |
1367 GCPRO2 (val, tail); | |
1368 elt = read1 (readcharfun); | |
1369 UNGCPRO; | |
1370 if (XTYPE (elt) == Lisp_Internal) | |
1371 { | |
1372 if (flag > 0) | |
1373 { | |
1374 if (XINT (elt) == ']') | |
1375 return val; | |
1376 return Fsignal (Qinvalid_read_syntax, Fcons (make_string (") or . in a vector", 18), Qnil)); | |
1377 } | |
1378 if (XINT (elt) == ')') | |
1379 return val; | |
1380 if (XINT (elt) == '.') | |
1381 { | |
1382 GCPRO2 (val, tail); | |
485 | 1383 if (!NILP (tail)) |
341 | 1384 XCONS (tail)->cdr = read0 (readcharfun); |
1385 else | |
1386 val = read0 (readcharfun); | |
1387 elt = read1 (readcharfun); | |
1388 UNGCPRO; | |
1389 if (XTYPE (elt) == Lisp_Internal && XINT (elt) == ')') | |
1390 return val; | |
1391 return Fsignal (Qinvalid_read_syntax, Fcons (make_string (". in wrong context", 18), Qnil)); | |
1392 } | |
1393 return Fsignal (Qinvalid_read_syntax, Fcons (make_string ("] in a list", 11), Qnil)); | |
1394 } | |
1395 tem = (read_pure && flag <= 0 | |
1396 ? pure_cons (elt, Qnil) | |
1397 : Fcons (elt, Qnil)); | |
485 | 1398 if (!NILP (tail)) |
341 | 1399 XCONS (tail)->cdr = tem; |
1400 else | |
1401 val = tem; | |
1402 tail = tem; | |
1403 if (defunflag < 0) | |
1404 defunflag = EQ (elt, Qdefun); | |
1405 else if (defunflag > 0) | |
1406 read_pure = 1; | |
1407 } | |
1408 } | |
1409 | |
1410 Lisp_Object Vobarray; | |
1411 Lisp_Object initial_obarray; | |
1412 | |
1413 Lisp_Object | |
1414 check_obarray (obarray) | |
1415 Lisp_Object obarray; | |
1416 { | |
1417 while (XTYPE (obarray) != Lisp_Vector || XVECTOR (obarray)->size == 0) | |
1418 { | |
1419 /* If Vobarray is now invalid, force it to be valid. */ | |
1420 if (EQ (Vobarray, obarray)) Vobarray = initial_obarray; | |
1421 | |
1422 obarray = wrong_type_argument (Qvectorp, obarray); | |
1423 } | |
1424 return obarray; | |
1425 } | |
1426 | |
1427 static int hash_string (); | |
1428 Lisp_Object oblookup (); | |
1429 | |
1430 Lisp_Object | |
1431 intern (str) | |
1432 char *str; | |
1433 { | |
1434 Lisp_Object tem; | |
1435 int len = strlen (str); | |
1436 Lisp_Object obarray = Vobarray; | |
1437 | |
1438 if (XTYPE (obarray) != Lisp_Vector || XVECTOR (obarray)->size == 0) | |
1439 obarray = check_obarray (obarray); | |
1440 tem = oblookup (obarray, str, len); | |
1441 if (XTYPE (tem) == Lisp_Symbol) | |
1442 return tem; | |
485 | 1443 return Fintern ((!NILP (Vpurify_flag) |
341 | 1444 ? make_pure_string (str, len) |
1445 : make_string (str, len)), | |
1446 obarray); | |
1447 } | |
1448 | |
1449 DEFUN ("intern", Fintern, Sintern, 1, 2, 0, | |
1450 "Return the canonical symbol whose name is STRING.\n\ | |
1451 If there is none, one is created by this function and returned.\n\ | |
1452 A second optional argument specifies the obarray to use;\n\ | |
1453 it defaults to the value of `obarray'.") | |
1454 (str, obarray) | |
1455 Lisp_Object str, obarray; | |
1456 { | |
1457 register Lisp_Object tem, sym, *ptr; | |
1458 | |
485 | 1459 if (NILP (obarray)) obarray = Vobarray; |
341 | 1460 obarray = check_obarray (obarray); |
1461 | |
1462 CHECK_STRING (str, 0); | |
1463 | |
1464 tem = oblookup (obarray, XSTRING (str)->data, XSTRING (str)->size); | |
1465 if (XTYPE (tem) != Lisp_Int) | |
1466 return tem; | |
1467 | |
485 | 1468 if (!NILP (Vpurify_flag)) |
341 | 1469 str = Fpurecopy (str); |
1470 sym = Fmake_symbol (str); | |
1471 | |
1472 ptr = &XVECTOR (obarray)->contents[XINT (tem)]; | |
1473 if (XTYPE (*ptr) == Lisp_Symbol) | |
1474 XSYMBOL (sym)->next = XSYMBOL (*ptr); | |
1475 else | |
1476 XSYMBOL (sym)->next = 0; | |
1477 *ptr = sym; | |
1478 return sym; | |
1479 } | |
1480 | |
1481 DEFUN ("intern-soft", Fintern_soft, Sintern_soft, 1, 2, 0, | |
1482 "Return the canonical symbol whose name is STRING, or nil if none exists.\n\ | |
1483 A second optional argument specifies the obarray to use;\n\ | |
1484 it defaults to the value of `obarray'.") | |
1485 (str, obarray) | |
1486 Lisp_Object str, obarray; | |
1487 { | |
1488 register Lisp_Object tem; | |
1489 | |
485 | 1490 if (NILP (obarray)) obarray = Vobarray; |
341 | 1491 obarray = check_obarray (obarray); |
1492 | |
1493 CHECK_STRING (str, 0); | |
1494 | |
1495 tem = oblookup (obarray, XSTRING (str)->data, XSTRING (str)->size); | |
1496 if (XTYPE (tem) != Lisp_Int) | |
1497 return tem; | |
1498 return Qnil; | |
1499 } | |
1500 | |
1501 Lisp_Object | |
1502 oblookup (obarray, ptr, size) | |
1503 Lisp_Object obarray; | |
1504 register char *ptr; | |
1505 register int size; | |
1506 { | |
1507 int hash, obsize; | |
1508 register Lisp_Object tail; | |
1509 Lisp_Object bucket, tem; | |
1510 | |
1511 if (XTYPE (obarray) != Lisp_Vector || | |
1512 (obsize = XVECTOR (obarray)->size) == 0) | |
1513 { | |
1514 obarray = check_obarray (obarray); | |
1515 obsize = XVECTOR (obarray)->size; | |
1516 } | |
1517 /* Combining next two lines breaks VMS C 2.3. */ | |
1518 hash = hash_string (ptr, size); | |
1519 hash %= obsize; | |
1520 bucket = XVECTOR (obarray)->contents[hash]; | |
1521 if (XFASTINT (bucket) == 0) | |
1522 ; | |
1523 else if (XTYPE (bucket) != Lisp_Symbol) | |
1524 error ("Bad data in guts of obarray"); /* Like CADR error message */ | |
1525 else for (tail = bucket; ; XSET (tail, Lisp_Symbol, XSYMBOL (tail)->next)) | |
1526 { | |
1527 if (XSYMBOL (tail)->name->size == size && | |
1528 !bcmp (XSYMBOL (tail)->name->data, ptr, size)) | |
1529 return tail; | |
1530 else if (XSYMBOL (tail)->next == 0) | |
1531 break; | |
1532 } | |
1533 XSET (tem, Lisp_Int, hash); | |
1534 return tem; | |
1535 } | |
1536 | |
1537 static int | |
1538 hash_string (ptr, len) | |
1539 unsigned char *ptr; | |
1540 int len; | |
1541 { | |
1542 register unsigned char *p = ptr; | |
1543 register unsigned char *end = p + len; | |
1544 register unsigned char c; | |
1545 register int hash = 0; | |
1546 | |
1547 while (p != end) | |
1548 { | |
1549 c = *p++; | |
1550 if (c >= 0140) c -= 40; | |
1551 hash = ((hash<<3) + (hash>>28) + c); | |
1552 } | |
1553 return hash & 07777777777; | |
1554 } | |
1555 | |
1556 void | |
1557 map_obarray (obarray, fn, arg) | |
1558 Lisp_Object obarray; | |
1559 int (*fn) (); | |
1560 Lisp_Object arg; | |
1561 { | |
1562 register int i; | |
1563 register Lisp_Object tail; | |
1564 CHECK_VECTOR (obarray, 1); | |
1565 for (i = XVECTOR (obarray)->size - 1; i >= 0; i--) | |
1566 { | |
1567 tail = XVECTOR (obarray)->contents[i]; | |
1568 if (XFASTINT (tail) != 0) | |
1569 while (1) | |
1570 { | |
1571 (*fn) (tail, arg); | |
1572 if (XSYMBOL (tail)->next == 0) | |
1573 break; | |
1574 XSET (tail, Lisp_Symbol, XSYMBOL (tail)->next); | |
1575 } | |
1576 } | |
1577 } | |
1578 | |
1579 mapatoms_1 (sym, function) | |
1580 Lisp_Object sym, function; | |
1581 { | |
1582 call1 (function, sym); | |
1583 } | |
1584 | |
1585 DEFUN ("mapatoms", Fmapatoms, Smapatoms, 1, 2, 0, | |
1586 "Call FUNCTION on every symbol in OBARRAY.\n\ | |
1587 OBARRAY defaults to the value of `obarray'.") | |
1588 (function, obarray) | |
1589 Lisp_Object function, obarray; | |
1590 { | |
1591 Lisp_Object tem; | |
1592 | |
485 | 1593 if (NILP (obarray)) obarray = Vobarray; |
341 | 1594 obarray = check_obarray (obarray); |
1595 | |
1596 map_obarray (obarray, mapatoms_1, function); | |
1597 return Qnil; | |
1598 } | |
1599 | |
1600 #define OBARRAY_SIZE 509 | |
1601 | |
1602 void | |
1603 init_obarray () | |
1604 { | |
1605 Lisp_Object oblength; | |
1606 int hash; | |
1607 Lisp_Object *tem; | |
1608 | |
1609 XFASTINT (oblength) = OBARRAY_SIZE; | |
1610 | |
1611 Qnil = Fmake_symbol (make_pure_string ("nil", 3)); | |
1612 Vobarray = Fmake_vector (oblength, make_number (0)); | |
1613 initial_obarray = Vobarray; | |
1614 staticpro (&initial_obarray); | |
1615 /* Intern nil in the obarray */ | |
1616 /* These locals are to kludge around a pyramid compiler bug. */ | |
1617 hash = hash_string ("nil", 3); | |
1618 /* Separate statement here to avoid VAXC bug. */ | |
1619 hash %= OBARRAY_SIZE; | |
1620 tem = &XVECTOR (Vobarray)->contents[hash]; | |
1621 *tem = Qnil; | |
1622 | |
1623 Qunbound = Fmake_symbol (make_pure_string ("unbound", 7)); | |
1624 XSYMBOL (Qnil)->function = Qunbound; | |
1625 XSYMBOL (Qunbound)->value = Qunbound; | |
1626 XSYMBOL (Qunbound)->function = Qunbound; | |
1627 | |
1628 Qt = intern ("t"); | |
1629 XSYMBOL (Qnil)->value = Qnil; | |
1630 XSYMBOL (Qnil)->plist = Qnil; | |
1631 XSYMBOL (Qt)->value = Qt; | |
1632 | |
1633 /* Qt is correct even if CANNOT_DUMP. loadup.el will set to nil at end. */ | |
1634 Vpurify_flag = Qt; | |
1635 | |
1636 Qvariable_documentation = intern ("variable-documentation"); | |
1637 | |
1638 read_buffer_size = 100; | |
1639 read_buffer = (char *) malloc (read_buffer_size); | |
1640 } | |
1641 | |
1642 void | |
1643 defsubr (sname) | |
1644 struct Lisp_Subr *sname; | |
1645 { | |
1646 Lisp_Object sym; | |
1647 sym = intern (sname->symbol_name); | |
1648 XSET (XSYMBOL (sym)->function, Lisp_Subr, sname); | |
1649 } | |
1650 | |
1651 #ifdef NOTDEF /* use fset in subr.el now */ | |
1652 void | |
1653 defalias (sname, string) | |
1654 struct Lisp_Subr *sname; | |
1655 char *string; | |
1656 { | |
1657 Lisp_Object sym; | |
1658 sym = intern (string); | |
1659 XSET (XSYMBOL (sym)->function, Lisp_Subr, sname); | |
1660 } | |
1661 #endif /* NOTDEF */ | |
1662 | |
1663 /* New replacement for DefIntVar; it ignores the doc string argument | |
1664 on the assumption that make-docfile will handle that. */ | |
1665 /* Define an "integer variable"; a symbol whose value is forwarded | |
1666 to a C variable of type int. Sample call: */ | |
1667 /* DEFVARINT ("indent-tabs-mode", &indent_tabs_mode, "Documentation"); */ | |
1668 | |
1669 void | |
1670 defvar_int (namestring, address, doc) | |
1671 char *namestring; | |
1672 int *address; | |
1673 char *doc; | |
1674 { | |
1675 Lisp_Object sym; | |
1676 sym = intern (namestring); | |
1677 XSET (XSYMBOL (sym)->value, Lisp_Intfwd, address); | |
1678 } | |
1679 | |
1680 /* Similar but define a variable whose value is T if address contains 1, | |
1681 NIL if address contains 0 */ | |
1682 | |
1683 void | |
1684 defvar_bool (namestring, address, doc) | |
1685 char *namestring; | |
1686 int *address; | |
1687 char *doc; | |
1688 { | |
1689 Lisp_Object sym; | |
1690 sym = intern (namestring); | |
1691 XSET (XSYMBOL (sym)->value, Lisp_Boolfwd, address); | |
1692 } | |
1693 | |
1694 /* Similar but define a variable whose value is the Lisp Object stored at address. */ | |
1695 | |
1696 void | |
1697 defvar_lisp (namestring, address, doc) | |
1698 char *namestring; | |
1699 Lisp_Object *address; | |
1700 char *doc; | |
1701 { | |
1702 Lisp_Object sym; | |
1703 sym = intern (namestring); | |
1704 XSET (XSYMBOL (sym)->value, Lisp_Objfwd, address); | |
1705 staticpro (address); | |
1706 } | |
1707 | |
1708 /* Similar but don't request gc-marking of the C variable. | |
1709 Used when that variable will be gc-marked for some other reason, | |
1710 since marking the same slot twice can cause trouble with strings. */ | |
1711 | |
1712 void | |
1713 defvar_lisp_nopro (namestring, address, doc) | |
1714 char *namestring; | |
1715 Lisp_Object *address; | |
1716 char *doc; | |
1717 { | |
1718 Lisp_Object sym; | |
1719 sym = intern (namestring); | |
1720 XSET (XSYMBOL (sym)->value, Lisp_Objfwd, address); | |
1721 } | |
1722 | |
1723 #ifndef standalone | |
1724 | |
1725 /* Similar but define a variable whose value is the Lisp Object stored in | |
1726 the current buffer. address is the address of the slot in the buffer that is current now. */ | |
1727 | |
1728 void | |
1009
bf78b5ea9b3a
* lread.c (defvar_per_buffer): Support new TYPE argument, by
Jim Blandy <jimb@redhat.com>
parents:
851
diff
changeset
|
1729 defvar_per_buffer (namestring, address, type, doc) |
341 | 1730 char *namestring; |
1731 Lisp_Object *address; | |
1009
bf78b5ea9b3a
* lread.c (defvar_per_buffer): Support new TYPE argument, by
Jim Blandy <jimb@redhat.com>
parents:
851
diff
changeset
|
1732 Lisp_Object type; |
341 | 1733 char *doc; |
1734 { | |
1735 Lisp_Object sym; | |
1736 int offset; | |
1737 extern struct buffer buffer_local_symbols; | |
1738 | |
1739 sym = intern (namestring); | |
1740 offset = (char *)address - (char *)current_buffer; | |
1741 | |
1742 XSET (XSYMBOL (sym)->value, Lisp_Buffer_Objfwd, | |
1743 (Lisp_Object *) offset); | |
1744 *(Lisp_Object *)(offset + (char *)&buffer_local_symbols) = sym; | |
1009
bf78b5ea9b3a
* lread.c (defvar_per_buffer): Support new TYPE argument, by
Jim Blandy <jimb@redhat.com>
parents:
851
diff
changeset
|
1745 *(Lisp_Object *)(offset + (char *)&buffer_local_types) = type; |
341 | 1746 if (*(int *)(offset + (char *)&buffer_local_flags) == 0) |
1747 /* Did a DEFVAR_PER_BUFFER without initializing the corresponding | |
1748 slot of buffer_local_flags */ | |
1749 abort (); | |
1750 } | |
1751 | |
1752 #endif /* standalone */ | |
1753 | |
364 | 1754 init_lread () |
341 | 1755 { |
617 | 1756 char *normal; |
341 | 1757 |
364 | 1758 /* Compute the default load-path. */ |
617 | 1759 #ifdef CANNOT_DUMP |
1760 normal = PATH_LOADSEARCH; | |
638 | 1761 Vload_path = decode_env_path (0, normal); |
617 | 1762 #else |
1763 if (NILP (Vpurify_flag)) | |
1764 normal = PATH_LOADSEARCH; | |
1765 else | |
1766 normal = PATH_DUMPLOADSEARCH; | |
1767 | |
1768 /* In a dumped Emacs, we normally have to reset the value of | |
1769 Vload_path from PATH_LOADSEARCH, since the value that was dumped | |
1770 uses ../lisp, instead of the path of the installed elisp | |
1771 libraries. However, if it appears that Vload_path was changed | |
1772 from the default before dumping, don't override that value. */ | |
621 | 1773 if (initialized) |
1774 { | |
1775 Lisp_Object dump_path; | |
617 | 1776 |
638 | 1777 dump_path = decode_env_path (0, PATH_DUMPLOADSEARCH); |
621 | 1778 if (! NILP (Fequal (dump_path, Vload_path))) |
638 | 1779 Vload_path = decode_env_path (0, normal); |
621 | 1780 } |
1781 else | |
638 | 1782 Vload_path = decode_env_path (0, normal); |
364 | 1783 #endif |
1784 | |
341 | 1785 /* Warn if dirs in the *standard* path don't exist. */ |
617 | 1786 { |
1787 Lisp_Object path_tail; | |
341 | 1788 |
617 | 1789 for (path_tail = Vload_path; |
1790 !NILP (path_tail); | |
1791 path_tail = XCONS (path_tail)->cdr) | |
1792 { | |
1793 Lisp_Object dirfile; | |
1794 dirfile = Fcar (path_tail); | |
1795 if (XTYPE (dirfile) == Lisp_String) | |
1796 { | |
1797 dirfile = Fdirectory_file_name (dirfile); | |
1798 if (access (XSTRING (dirfile)->data, 0) < 0) | |
1799 printf ("Warning: lisp library (%s) does not exist.\n", | |
1800 XSTRING (Fcar (path_tail))->data); | |
1801 } | |
1802 } | |
1803 } | |
1804 | |
1805 /* If the EMACSLOADPATH environment variable is set, use its value. | |
1806 This doesn't apply if we're dumping. */ | |
1807 if (NILP (Vpurify_flag) | |
1808 && egetenv ("EMACSLOADPATH")) | |
364 | 1809 Vload_path = decode_env_path ("EMACSLOADPATH", normal); |
1810 | |
1811 Vvalues = Qnil; | |
1812 | |
341 | 1813 load_in_progress = 0; |
1814 } | |
1815 | |
1816 void | |
364 | 1817 syms_of_lread () |
341 | 1818 { |
1819 defsubr (&Sread); | |
1820 defsubr (&Sread_from_string); | |
1821 defsubr (&Sintern); | |
1822 defsubr (&Sintern_soft); | |
1823 defsubr (&Sload); | |
672 | 1824 defsubr (&Seval_buffer); |
341 | 1825 defsubr (&Seval_region); |
1826 defsubr (&Sread_char); | |
1827 defsubr (&Sread_char_exclusive); | |
1828 defsubr (&Sread_event); | |
1829 defsubr (&Sget_file_char); | |
1830 defsubr (&Smapatoms); | |
1831 | |
1832 DEFVAR_LISP ("obarray", &Vobarray, | |
1833 "Symbol table for use by `intern' and `read'.\n\ | |
1834 It is a vector whose length ought to be prime for best results.\n\ | |
1835 The vector's contents don't make sense if examined from Lisp programs;\n\ | |
1836 to find all the symbols in an obarray, use `mapatoms'."); | |
1837 | |
1838 DEFVAR_LISP ("values", &Vvalues, | |
1839 "List of values of all expressions which were read, evaluated and printed.\n\ | |
1840 Order is reverse chronological."); | |
1841 | |
1842 DEFVAR_LISP ("standard-input", &Vstandard_input, | |
1843 "Stream for read to get input from.\n\ | |
1844 See documentation of `read' for possible values."); | |
1845 Vstandard_input = Qt; | |
1846 | |
1847 DEFVAR_LISP ("load-path", &Vload_path, | |
1848 "*List of directories to search for files to load.\n\ | |
1849 Each element is a string (directory name) or nil (try default directory).\n\ | |
1850 Initialized based on EMACSLOADPATH environment variable, if any,\n\ | |
1887
ab56990c27c4
(syms_of_lread): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1827
diff
changeset
|
1851 otherwise to default specified by file `paths.h' when Emacs was built."); |
341 | 1852 |
1853 DEFVAR_BOOL ("load-in-progress", &load_in_progress, | |
1854 "Non-nil iff inside of `load'."); | |
1855 | |
1856 DEFVAR_LISP ("after-load-alist", &Vafter_load_alist, | |
1857 "An alist of expressions to be evalled when particular files are loaded.\n\ | |
1858 Each element looks like (FILENAME FORMS...).\n\ | |
1859 When `load' is run and the file-name argument is FILENAME,\n\ | |
1860 the FORMS in the corresponding element are executed at the end of loading.\n\n\ | |
1861 FILENAME must match exactly! Normally FILENAME is the name of a library,\n\ | |
1862 with no directory specified, since that is how `load' is normally called.\n\ | |
1863 An error in FORMS does not undo the load,\n\ | |
1864 but does prevent execution of the rest of the FORMS."); | |
1865 Vafter_load_alist = Qnil; | |
1866 | |
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1867 DEFVAR_LISP ("load-history", &Vload_history, |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1868 "Alist mapping source file names to symbols and features.\n\ |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1869 Each alist element is a list that starts with a file name,\n\ |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1870 except for one element (optional) that starts with nil and describes\n\ |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1871 definitions evaluated from buffers not visiting files.\n\ |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1872 The remaining elements of each list are symbols defined as functions\n\ |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1873 or variables, and cons cells `(provide . FEATURE)' and `(require . FEATURE)'."); |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1874 Vload_history = Qnil; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1875 |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1876 staticpro (&Vcurrent_load_list); |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1877 Vcurrent_load_list = Qnil; |
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1878 |
341 | 1879 Qstandard_input = intern ("standard-input"); |
1880 staticpro (&Qstandard_input); | |
1881 | |
1882 Qread_char = intern ("read-char"); | |
1883 staticpro (&Qread_char); | |
1884 | |
1885 Qget_file_char = intern ("get-file-char"); | |
1886 staticpro (&Qget_file_char); | |
2044
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
1887 |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
1888 Qascii_character = intern ("ascii-character"); |
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
1889 staticpro (&Qascii_character); |
341 | 1890 } |