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