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