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