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