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