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