use guile-elisp macroexpansion
[bpt/emacs.git] / src / lread.c
CommitLineData
078e7b4a 1/* Lisp parsing and input streams.
039c6cc3 2
ba318903
PE
3Copyright (C) 1985-1989, 1993-1995, 1997-2014 Free Software Foundation,
4Inc.
078e7b4a
JB
5
6This file is part of GNU Emacs.
7
9ec0b715 8GNU Emacs is free software: you can redistribute it and/or modify
078e7b4a 9it under the terms of the GNU General Public License as published by
9ec0b715
GM
10the Free Software Foundation, either version 3 of the License, or
11(at your option) any later version.
078e7b4a
JB
12
13GNU Emacs is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
9ec0b715 19along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
078e7b4a
JB
20
21
98280b76 22#include <config.h>
406af475 23#include "sysstdio.h"
078e7b4a
JB
24#include <sys/types.h>
25#include <sys/stat.h>
26#include <sys/file.h>
2c1b5dbe 27#include <errno.h>
9660f5fc 28#include <limits.h> /* For CHAR_BIT. */
39adff0d 29#include <stat-time.h>
078e7b4a 30#include "lisp.h"
95384e1e 31#include "intervals.h"
1571601b 32#include "character.h"
e5560ff7 33#include "buffer.h"
fe0e03f3 34#include "charset.h"
8792be66 35#include "coding.h"
57bda87a 36#include <epaths.h>
078e7b4a 37#include "commands.h"
e37c0805 38#include "keyboard.h"
428a555e 39#include "frame.h"
7bd279cd 40#include "termhooks.h"
66cd0949 41#include "blockinput.h"
078e7b4a 42
79051982 43#ifdef MSDOS
79051982
RS
44#include "msdos.h"
45#endif
46
9e059e3f
GM
47#ifdef HAVE_NS
48#include "nsterm.h"
49#endif
50
c1a2f60a 51#include <unistd.h>
078e7b4a 52
c011e9a5
RS
53#ifdef HAVE_SETLOCALE
54#include <locale.h>
55#endif /* HAVE_SETLOCALE */
56
bcdec28b 57#include <fcntl.h>
f7d279f0 58
79cf851c 59#ifdef HAVE_FSEEKO
68c45bf0
PE
60#define file_offset off_t
61#define file_tell ftello
62#else
63#define file_offset long
64#define file_tell ftell
65#endif
66
5359af0e
BT
67static SCM obarrays;
68
48def666 69/* Hash table read constants. */
955cbe7b
PE
70static Lisp_Object Qhash_table, Qdata;
71static Lisp_Object Qtest, Qsize;
72static Lisp_Object Qweakness;
73static Lisp_Object Qrehash_size;
74static Lisp_Object Qrehash_threshold;
75
76static Lisp_Object Qread_char, Qget_file_char, Qcurrent_load_list;
77Lisp_Object Qstandard_input;
29208e82 78Lisp_Object Qvariable_documentation;
955cbe7b 79static Lisp_Object Qascii_character, Qload, Qload_file_name;
2b6cae0c 80Lisp_Object Qbackquote, Qcomma, Qcomma_at, Qcomma_dot, Qfunction;
955cbe7b
PE
81static Lisp_Object Qinhibit_file_name_operation;
82static Lisp_Object Qeval_buffer_list;
8be3a09c 83Lisp_Object Qlexical_binding;
955cbe7b 84static Lisp_Object Qfile_truename, Qdo_after_load_evaluation; /* ACM 2006/5/16 */
7bd279cd 85
8792be66
KH
86/* Used instead of Qget_file_char while loading *.elc files compiled
87 by Emacs 21 or older. */
88static Lisp_Object Qget_emacs_mule_file_char;
89
90static Lisp_Object Qload_force_doc_strings;
91
2baf5e76 92static Lisp_Object Qload_in_progress;
ece435a5 93
4ad679f9
EN
94/* The association list of objects read with the #n=object form.
95 Each member of the list has the form (n . object), and is used to
96 look up the object for the corresponding #n# construct.
97 It must be set to nil before all top-level calls to read0. */
1e3890d1 98static Lisp_Object read_objects;
4ad679f9 99
b2a30870 100/* File for get_file_char to read from. Use by load. */
078e7b4a
JB
101static FILE *instream;
102
b2a30870 103/* For use within read-from-string (this reader is non-reentrant!!) */
d311d28c
PE
104static ptrdiff_t read_from_string_index;
105static ptrdiff_t read_from_string_index_byte;
106static ptrdiff_t read_from_string_limit;
17634846 107
abb13b09 108/* Number of characters read in the current call to Fread or
48def666 109 Fread_from_string. */
da43f021 110static EMACS_INT readchar_count;
6f7f43d5 111
c15cfd1f 112/* This contains the last string skipped with #@. */
b2a30870
RS
113static char *saved_doc_string;
114/* Length of buffer allocated in saved_doc_string. */
bfbbd7e7 115static ptrdiff_t saved_doc_string_size;
b2a30870 116/* Length of actual data in saved_doc_string. */
bfbbd7e7 117static ptrdiff_t saved_doc_string_length;
b2a30870 118/* This is the file position that string came from. */
68c45bf0 119static file_offset saved_doc_string_position;
b2a30870 120
c15cfd1f
RS
121/* This contains the previous string skipped with #@.
122 We copy it from saved_doc_string when a new string
123 is put in saved_doc_string. */
124static char *prev_saved_doc_string;
125/* Length of buffer allocated in prev_saved_doc_string. */
bfbbd7e7 126static ptrdiff_t prev_saved_doc_string_size;
c15cfd1f 127/* Length of actual data in prev_saved_doc_string. */
bfbbd7e7 128static ptrdiff_t prev_saved_doc_string_length;
c15cfd1f 129/* This is the file position that string came from. */
68c45bf0 130static file_offset prev_saved_doc_string_position;
c15cfd1f 131
7cded46f 132/* True means inside a new-style backquote
17634846 133 with no surrounding parentheses.
7cded46f 134 Fread initializes this to false, so we need not specbind it
17634846 135 or worry about what happens to it when there is an error. */
7cded46f 136static bool new_backquote_flag;
29208e82 137static Lisp_Object Qold_style_backquotes;
7ee3bd7b
GM
138
139/* A list of file names for files being loaded in Fload. Used to
140 check for recursive loads. */
141
9942fa0c 142static Lisp_Object Vloads_in_progress;
7ee3bd7b 143
f57e2426
J
144static int read_emacs_mule_char (int, int (*) (int, Lisp_Object),
145 Lisp_Object);
8792be66 146
7cded46f 147static void readevalloop (Lisp_Object, FILE *, Lisp_Object, bool,
f57e2426
J
148 Lisp_Object, Lisp_Object,
149 Lisp_Object, Lisp_Object);
078e7b4a 150\f
8792be66
KH
151/* Functions that read one byte from the current source READCHARFUN
152 or unreads one byte. If the integer argument C is -1, it returns
153 one read byte, or -1 when there's no more byte in the source. If C
154 is 0 or positive, it unreads C, and the return value is not
155 interesting. */
156
f57e2426
J
157static int readbyte_for_lambda (int, Lisp_Object);
158static int readbyte_from_file (int, Lisp_Object);
159static int readbyte_from_string (int, Lisp_Object);
8792be66 160
078e7b4a
JB
161/* Handle unreading and rereading of characters.
162 Write READCHAR to read a character,
fe0e03f3
KH
163 UNREAD(c) to unread c to be read again.
164
8792be66 165 These macros correctly read/unread multibyte characters. */
078e7b4a 166
1202434b 167#define READCHAR readchar (readcharfun, NULL)
078e7b4a
JB
168#define UNREAD(c) unreadchar (readcharfun, c)
169
1202434b
KH
170/* Same as READCHAR but set *MULTIBYTE to the multibyteness of the source. */
171#define READCHAR_REPORT_MULTIBYTE(multibyte) readchar (readcharfun, multibyte)
172
8792be66 173/* When READCHARFUN is Qget_file_char, Qget_emacs_mule_file_char,
8f924df7
KH
174 Qlambda, or a cons, we use this to keep an unread character because
175 a file stream can't handle multibyte-char unreading. The value -1
48def666 176 means that there's no unread character. */
8792be66
KH
177static int unread_char;
178
078e7b4a 179static int
fce31d69 180readchar (Lisp_Object readcharfun, bool *multibyte)
078e7b4a
JB
181{
182 Lisp_Object tem;
95384e1e 183 register int c;
f57e2426 184 int (*readbyte) (int, Lisp_Object);
8792be66
KH
185 unsigned char buf[MAX_MULTIBYTE_LENGTH];
186 int i, len;
7cded46f 187 bool emacs_mule_encoding = 0;
078e7b4a 188
1202434b
KH
189 if (multibyte)
190 *multibyte = 0;
191
abb13b09 192 readchar_count++;
177c0ea7 193
cfff016d 194 if (BUFFERP (readcharfun))
078e7b4a 195 {
bed23cb2 196 register struct buffer *inbuffer = XBUFFER (readcharfun);
078e7b4a 197
d311d28c 198 ptrdiff_t pt_byte = BUF_PT_BYTE (inbuffer);
00a9a935 199
15acfe41
GM
200 if (! BUFFER_LIVE_P (inbuffer))
201 return -1;
202
bed23cb2
RS
203 if (pt_byte >= BUF_ZV_BYTE (inbuffer))
204 return -1;
078e7b4a 205
4b4deea2 206 if (! NILP (BVAR (inbuffer, enable_multibyte_characters)))
bed23cb2 207 {
00a9a935 208 /* Fetch the character code from the buffer. */
bed23cb2
RS
209 unsigned char *p = BUF_BYTE_ADDRESS (inbuffer, pt_byte);
210 BUF_INC_POS (inbuffer, pt_byte);
62a6e103 211 c = STRING_CHAR (p);
1202434b
KH
212 if (multibyte)
213 *multibyte = 1;
bed23cb2
RS
214 }
215 else
216 {
217 c = BUF_FETCH_BYTE (inbuffer, pt_byte);
200fc949 218 if (! ASCII_CHAR_P (c))
8792be66 219 c = BYTE8_TO_CHAR (c);
bed23cb2 220 pt_byte++;
6f7f43d5 221 }
bed23cb2 222 SET_BUF_PT_BOTH (inbuffer, BUF_PT (inbuffer) + 1, pt_byte);
6f7f43d5 223
bed23cb2 224 return c;
078e7b4a 225 }
cfff016d 226 if (MARKERP (readcharfun))
078e7b4a 227 {
bed23cb2 228 register struct buffer *inbuffer = XMARKER (readcharfun)->buffer;
078e7b4a 229
d311d28c 230 ptrdiff_t bytepos = marker_byte_position (readcharfun);
00a9a935 231
bed23cb2
RS
232 if (bytepos >= BUF_ZV_BYTE (inbuffer))
233 return -1;
6f7f43d5 234
4b4deea2 235 if (! NILP (BVAR (inbuffer, enable_multibyte_characters)))
bed23cb2 236 {
00a9a935 237 /* Fetch the character code from the buffer. */
bed23cb2
RS
238 unsigned char *p = BUF_BYTE_ADDRESS (inbuffer, bytepos);
239 BUF_INC_POS (inbuffer, bytepos);
62a6e103 240 c = STRING_CHAR (p);
1202434b
KH
241 if (multibyte)
242 *multibyte = 1;
bed23cb2
RS
243 }
244 else
245 {
246 c = BUF_FETCH_BYTE (inbuffer, bytepos);
200fc949 247 if (! ASCII_CHAR_P (c))
8792be66 248 c = BYTE8_TO_CHAR (c);
bed23cb2 249 bytepos++;
6f7f43d5
RS
250 }
251
bed23cb2
RS
252 XMARKER (readcharfun)->bytepos = bytepos;
253 XMARKER (readcharfun)->charpos++;
254
255 return c;
078e7b4a 256 }
ad0153e4
RS
257
258 if (EQ (readcharfun, Qlambda))
8792be66
KH
259 {
260 readbyte = readbyte_for_lambda;
261 goto read_multibyte;
262 }
ad0153e4 263
078e7b4a 264 if (EQ (readcharfun, Qget_file_char))
2c1b5dbe 265 {
8792be66
KH
266 readbyte = readbyte_from_file;
267 goto read_multibyte;
2c1b5dbe 268 }
078e7b4a 269
cfff016d 270 if (STRINGP (readcharfun))
078e7b4a 271 {
bed23cb2 272 if (read_from_string_index >= read_from_string_limit)
078e7b4a 273 c = -1;
1202434b
KH
274 else if (STRING_MULTIBYTE (readcharfun))
275 {
276 if (multibyte)
277 *multibyte = 1;
278 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c, readcharfun,
279 read_from_string_index,
280 read_from_string_index_byte);
281 }
f0354c03 282 else
1202434b
KH
283 {
284 c = SREF (readcharfun, read_from_string_index_byte);
285 read_from_string_index++;
286 read_from_string_index_byte++;
287 }
078e7b4a
JB
288 return c;
289 }
290
8792be66
KH
291 if (CONSP (readcharfun))
292 {
293 /* This is the case that read_vector is reading from a unibyte
294 string that contains a byte sequence previously skipped
295 because of #@NUMBER. The car part of readcharfun is that
296 string, and the cdr part is a value of readcharfun given to
297 read_vector. */
298 readbyte = readbyte_from_string;
299 if (EQ (XCDR (readcharfun), Qget_emacs_mule_file_char))
300 emacs_mule_encoding = 1;
301 goto read_multibyte;
302 }
8f924df7 303
8792be66
KH
304 if (EQ (readcharfun, Qget_emacs_mule_file_char))
305 {
306 readbyte = readbyte_from_file;
307 emacs_mule_encoding = 1;
308 goto read_multibyte;
309 }
078e7b4a
JB
310
311 tem = call0 (readcharfun);
312
265a9e55 313 if (NILP (tem))
078e7b4a
JB
314 return -1;
315 return XINT (tem);
8792be66
KH
316
317 read_multibyte:
318 if (unread_char >= 0)
319 {
320 c = unread_char;
321 unread_char = -1;
322 return c;
323 }
324 c = (*readbyte) (-1, readcharfun);
75a65c7e 325 if (c < 0)
1202434b
KH
326 return c;
327 if (multibyte)
328 *multibyte = 1;
200fc949 329 if (ASCII_CHAR_P (c))
8792be66
KH
330 return c;
331 if (emacs_mule_encoding)
332 return read_emacs_mule_char (c, readbyte, readcharfun);
333 i = 0;
334 buf[i++] = c;
335 len = BYTES_BY_CHAR_HEAD (c);
336 while (i < len)
337 {
338 c = (*readbyte) (-1, readcharfun);
339 if (c < 0 || ! TRAILING_CODE_P (c))
340 {
341 while (--i > 1)
342 (*readbyte) (buf[i], readcharfun);
343 return BYTE8_TO_CHAR (buf[0]);
344 }
345 buf[i++] = c;
346 }
62a6e103 347 return STRING_CHAR (buf);
078e7b4a
JB
348}
349
d2e24f92
SM
350#define FROM_FILE_P(readcharfun) \
351 (EQ (readcharfun, Qget_file_char) \
352 || EQ (readcharfun, Qget_emacs_mule_file_char))
353
75a65c7e
SM
354static void
355skip_dyn_bytes (Lisp_Object readcharfun, ptrdiff_t n)
356{
d2e24f92 357 if (FROM_FILE_P (readcharfun))
75a65c7e
SM
358 {
359 block_input (); /* FIXME: Not sure if it's needed. */
360 fseek (instream, n, SEEK_CUR);
361 unblock_input ();
362 }
363 else
364 { /* We're not reading directly from a file. In that case, it's difficult
365 to reliably count bytes, since these are usually meant for the file's
366 encoding, whereas we're now typically in the internal encoding.
367 But luckily, skip_dyn_bytes is used to skip over a single
368 dynamic-docstring (or dynamic byte-code) which is always quoted such
369 that \037 is the final char. */
370 int c;
371 do {
372 c = READCHAR;
373 } while (c >= 0 && c != '\037');
374 }
375}
376
759fd763
SM
377static void
378skip_dyn_eof (Lisp_Object readcharfun)
379{
380 if (FROM_FILE_P (readcharfun))
381 {
382 block_input (); /* FIXME: Not sure if it's needed. */
383 fseek (instream, 0, SEEK_END);
384 unblock_input ();
385 }
386 else
387 while (READCHAR >= 0);
388}
389
078e7b4a
JB
390/* Unread the character C in the way appropriate for the stream READCHARFUN.
391 If the stream is a user function, call it with the char as argument. */
392
393static void
971de7fb 394unreadchar (Lisp_Object readcharfun, int c)
078e7b4a 395{
abb13b09 396 readchar_count--;
92fddec9
KH
397 if (c == -1)
398 /* Don't back up the pointer if we're unreading the end-of-input mark,
399 since readchar didn't advance it when we read it. */
400 ;
cfff016d 401 else if (BUFFERP (readcharfun))
d7760ca9 402 {
bed23cb2 403 struct buffer *b = XBUFFER (readcharfun);
d311d28c
PE
404 ptrdiff_t charpos = BUF_PT (b);
405 ptrdiff_t bytepos = BUF_PT_BYTE (b);
d7760ca9 406
4b4deea2 407 if (! NILP (BVAR (b, enable_multibyte_characters)))
8792be66 408 BUF_DEC_POS (b, bytepos);
bed23cb2 409 else
8792be66 410 bytepos--;
d7760ca9 411
cffc6f3b 412 SET_BUF_PT_BOTH (b, charpos - 1, bytepos);
d7760ca9 413 }
cfff016d 414 else if (MARKERP (readcharfun))
d7760ca9 415 {
bed23cb2 416 struct buffer *b = XMARKER (readcharfun)->buffer;
d311d28c 417 ptrdiff_t bytepos = XMARKER (readcharfun)->bytepos;
d7760ca9 418
8792be66 419 XMARKER (readcharfun)->charpos--;
4b4deea2 420 if (! NILP (BVAR (b, enable_multibyte_characters)))
8792be66 421 BUF_DEC_POS (b, bytepos);
bed23cb2 422 else
8792be66 423 bytepos--;
d7760ca9 424
8792be66 425 XMARKER (readcharfun)->bytepos = bytepos;
d7760ca9 426 }
cfff016d 427 else if (STRINGP (readcharfun))
bed23cb2
RS
428 {
429 read_from_string_index--;
430 read_from_string_index_byte
431 = string_char_to_byte (readcharfun, read_from_string_index);
432 }
8792be66
KH
433 else if (CONSP (readcharfun))
434 {
435 unread_char = c;
436 }
ad0153e4 437 else if (EQ (readcharfun, Qlambda))
8792be66
KH
438 {
439 unread_char = c;
440 }
d2e24f92 441 else if (FROM_FILE_P (readcharfun))
8792be66 442 {
75a65c7e 443 unread_char = c;
8792be66 444 }
078e7b4a
JB
445 else
446 call1 (readcharfun, make_number (c));
447}
448
8792be66 449static int
971de7fb 450readbyte_for_lambda (int c, Lisp_Object readcharfun)
8792be66
KH
451{
452 return read_bytecode_char (c >= 0);
453}
454
455
456static int
971de7fb 457readbyte_from_file (int c, Lisp_Object readcharfun)
8792be66
KH
458{
459 if (c >= 0)
460 {
4d7e6e51 461 block_input ();
8792be66 462 ungetc (c, instream);
4d7e6e51 463 unblock_input ();
8792be66
KH
464 return 0;
465 }
466
4d7e6e51 467 block_input ();
8792be66 468 c = getc (instream);
d85d3839 469
48def666 470 /* Interrupted reads have been observed while reading over the network. */
d85d3839
MB
471 while (c == EOF && ferror (instream) && errno == EINTR)
472 {
4d7e6e51 473 unblock_input ();
d85d3839 474 QUIT;
4d7e6e51 475 block_input ();
57cb2e6f 476 clearerr (instream);
d85d3839 477 c = getc (instream);
66cd0949 478 }
d85d3839 479
4d7e6e51 480 unblock_input ();
57cb2e6f 481
8792be66
KH
482 return (c == EOF ? -1 : c);
483}
484
485static int
971de7fb 486readbyte_from_string (int c, Lisp_Object readcharfun)
8792be66
KH
487{
488 Lisp_Object string = XCAR (readcharfun);
489
490 if (c >= 0)
491 {
492 read_from_string_index--;
493 read_from_string_index_byte
494 = string_char_to_byte (string, read_from_string_index);
495 }
8f924df7 496
8792be66
KH
497 if (read_from_string_index >= read_from_string_limit)
498 c = -1;
499 else
500 FETCH_STRING_CHAR_ADVANCE (c, string,
501 read_from_string_index,
502 read_from_string_index_byte);
503 return c;
504}
505
506
507/* Read one non-ASCII character from INSTREAM. The character is
508 encoded in `emacs-mule' and the first byte is already read in
509 C. */
510
8792be66 511static int
971de7fb 512read_emacs_mule_char (int c, int (*readbyte) (int, Lisp_Object), Lisp_Object readcharfun)
8792be66
KH
513{
514 /* Emacs-mule coding uses at most 4-byte for one character. */
515 unsigned char buf[4];
516 int len = emacs_mule_bytes[c];
517 struct charset *charset;
518 int i;
519 unsigned code;
520
521 if (len == 1)
522 /* C is not a valid leading-code of `emacs-mule'. */
523 return BYTE8_TO_CHAR (c);
524
525 i = 0;
526 buf[i++] = c;
527 while (i < len)
528 {
529 c = (*readbyte) (-1, readcharfun);
530 if (c < 0xA0)
531 {
532 while (--i > 1)
533 (*readbyte) (buf[i], readcharfun);
534 return BYTE8_TO_CHAR (buf[0]);
535 }
536 buf[i++] = c;
537 }
538
539 if (len == 2)
540 {
b84ae584 541 charset = CHARSET_FROM_ID (emacs_mule_charset[buf[0]]);
8792be66
KH
542 code = buf[1] & 0x7F;
543 }
544 else if (len == 3)
545 {
546 if (buf[0] == EMACS_MULE_LEADING_CODE_PRIVATE_11
547 || buf[0] == EMACS_MULE_LEADING_CODE_PRIVATE_12)
548 {
b84ae584 549 charset = CHARSET_FROM_ID (emacs_mule_charset[buf[1]]);
8792be66
KH
550 code = buf[2] & 0x7F;
551 }
552 else
553 {
b84ae584 554 charset = CHARSET_FROM_ID (emacs_mule_charset[buf[0]]);
8792be66
KH
555 code = ((buf[1] << 8) | buf[2]) & 0x7F7F;
556 }
557 }
558 else
559 {
b84ae584 560 charset = CHARSET_FROM_ID (emacs_mule_charset[buf[1]]);
8f924df7 561 code = ((buf[2] << 8) | buf[3]) & 0x7F7F;
8792be66
KH
562 }
563 c = DECODE_CHAR (charset, code);
564 if (c < 0)
565 Fsignal (Qinvalid_read_syntax,
6c6f1994 566 list1 (build_string ("invalid multibyte form")));
8792be66
KH
567 return c;
568}
569
570
f57e2426
J
571static Lisp_Object read_internal_start (Lisp_Object, Lisp_Object,
572 Lisp_Object);
573static Lisp_Object read0 (Lisp_Object);
7cded46f 574static Lisp_Object read1 (Lisp_Object, int *, bool);
abb13b09 575
7cded46f
PE
576static Lisp_Object read_list (bool, Lisp_Object);
577static Lisp_Object read_vector (Lisp_Object, bool);
abb13b09 578
f57e2426
J
579static Lisp_Object substitute_object_recurse (Lisp_Object, Lisp_Object,
580 Lisp_Object);
581static void substitute_object_in_subtree (Lisp_Object,
582 Lisp_Object);
583static void substitute_in_interval (INTERVAL, Lisp_Object);
9e062b6c 584
078e7b4a 585\f
bed23cb2 586/* Get a character from the tty. */
078e7b4a 587
f42be754
JB
588/* Read input events until we get one that's acceptable for our purposes.
589
7cded46f 590 If NO_SWITCH_FRAME, switch-frame events are stashed
f42be754
JB
591 until we get a character we like, and then stuffed into
592 unread_switch_frame.
593
7cded46f 594 If ASCII_REQUIRED, check function key events to see
f42be754
JB
595 if the unmodified version of the symbol has a Qascii_character
596 property, and use that character, if present.
597
7cded46f
PE
598 If ERROR_NONASCII, signal an error if the input we
599 get isn't an ASCII character with modifiers. If it's false but
600 ASCII_REQUIRED is true, just re-read until we get an ASCII
bb49a192
RS
601 character.
602
7cded46f 603 If INPUT_METHOD, invoke the current input method
50e48299
CY
604 if the character warrants that.
605
7cded46f 606 If SECONDS is a number, wait that many seconds for input, and
50e48299 607 return Qnil if no input arrives within that time. */
cc39bc38 608
2f7c71a1 609static Lisp_Object
7cded46f
PE
610read_filtered_event (bool no_switch_frame, bool ascii_required,
611 bool error_nonascii, bool input_method, Lisp_Object seconds)
f42be754 612{
4332cf50 613 Lisp_Object val, delayed_switch_frame;
43aac990 614 struct timespec end_time;
153a17b7 615
5dbf89bc 616#ifdef HAVE_WINDOW_SYSTEM
df6c90d8
GM
617 if (display_hourglass_p)
618 cancel_hourglass ();
5dbf89bc 619#endif
177c0ea7 620
153a17b7 621 delayed_switch_frame = Qnil;
f42be754 622
50e48299
CY
623 /* Compute timeout. */
624 if (NUMBERP (seconds))
625 {
51d8b30e 626 double duration = extract_float (seconds);
43aac990
PE
627 struct timespec wait_time = dtotimespec (duration);
628 end_time = timespec_add (current_timespec (), wait_time);
50e48299
CY
629 }
630
99d0d6dc 631 /* Read until we get an acceptable event. */
f42be754 632 retry:
88852d45 633 do
99d0d6dc 634 val = read_char (0, Qnil, (input_method ? Qnil : Qt), 0,
251bc578 635 NUMBERP (seconds) ? &end_time : NULL);
9688ff53 636 while (INTEGERP (val) && XINT (val) == -2); /* wrong_kboard_jmpbuf */
f42be754 637
cfff016d 638 if (BUFFERP (val))
6c82d689
KH
639 goto retry;
640
99d0d6dc 641 /* `switch-frame' events are put off until after the next ASCII
8e6208c5 642 character. This is better than signaling an error just because
f42be754
JB
643 the last characters were typed to a separate minibuffer frame,
644 for example. Eventually, some code which can deal with
645 switch-frame events will read it and process it. */
646 if (no_switch_frame
647 && EVENT_HAS_PARAMETERS (val)
ca77ee45 648 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (val)), Qswitch_frame))
f42be754
JB
649 {
650 delayed_switch_frame = val;
651 goto retry;
652 }
653
50e48299 654 if (ascii_required && !(NUMBERP (seconds) && NILP (val)))
f42be754
JB
655 {
656 /* Convert certain symbols to their ASCII equivalents. */
cfff016d 657 if (SYMBOLP (val))
f42be754 658 {
95384e1e 659 Lisp_Object tem, tem1;
f42be754
JB
660 tem = Fget (val, Qevent_symbol_element_mask);
661 if (!NILP (tem))
662 {
663 tem1 = Fget (Fcar (tem), Qascii_character);
664 /* Merge this symbol's modifier bits
665 with the ASCII equivalent of its basic code. */
666 if (!NILP (tem1))
baf69866 667 XSETFASTINT (val, XINT (tem1) | XINT (Fcar (Fcdr (tem))));
f42be754
JB
668 }
669 }
177c0ea7 670
f42be754 671 /* If we don't have a character now, deal with it appropriately. */
cfff016d 672 if (!INTEGERP (val))
f42be754
JB
673 {
674 if (error_nonascii)
675 {
6c6f1994 676 Vunread_command_events = list1 (val);
f42be754
JB
677 error ("Non-character input-event");
678 }
679 else
680 goto retry;
681 }
682 }
683
684 if (! NILP (delayed_switch_frame))
685 unread_switch_frame = delayed_switch_frame;
686
67868d27
PJ
687#if 0
688
5dbf89bc 689#ifdef HAVE_WINDOW_SYSTEM
df6c90d8
GM
690 if (display_hourglass_p)
691 start_hourglass ();
5dbf89bc 692#endif
67868d27
PJ
693
694#endif
695
f42be754 696 return val;
f42be754
JB
697}
698
a7ca3326 699DEFUN ("read-char", Fread_char, Sread_char, 0, 3, 0,
5de38842
PJ
700 doc: /* Read a character from the command input (keyboard or macro).
701It is returned as a number.
fb26c2af
KH
702If the character has modifiers, they are resolved and reflected to the
703character code if possible (e.g. C-SPC -> 0).
704
5de38842
PJ
705If the user generates an event which is not a character (i.e. a mouse
706click or function key event), `read-char' signals an error. As an
fb26c2af
KH
707exception, switch-frame events are put off until non-character events
708can be read.
5de38842
PJ
709If you want to read non-character events, or ignore them, call
710`read-event' or `read-char-exclusive' instead.
711
712If the optional argument PROMPT is non-nil, display that as a prompt.
713If the optional argument INHERIT-INPUT-METHOD is non-nil and some
714input method is turned on in the current buffer, that input method
50e48299
CY
715is used for reading a character.
716If the optional argument SECONDS is non-nil, it should be a number
717specifying the maximum number of seconds to wait for input. If no
718input arrives in that time, return nil. SECONDS may be a
719floating-point value. */)
5842a27b 720 (Lisp_Object prompt, Lisp_Object inherit_input_method, Lisp_Object seconds)
078e7b4a 721{
fb26c2af 722 Lisp_Object val;
fb26c2af 723
bb49a192
RS
724 if (! NILP (prompt))
725 message_with_string ("%s", prompt, 0);
fb26c2af 726 val = read_filtered_event (1, 1, 1, ! NILP (inherit_input_method), seconds);
66c410ce
CY
727
728 return (NILP (val) ? Qnil
729 : make_number (char_resolve_modifier_mask (XINT (val))));
078e7b4a
JB
730}
731
a7ca3326 732DEFUN ("read-event", Fread_event, Sread_event, 0, 3, 0,
5de38842
PJ
733 doc: /* Read an event object from the input stream.
734If the optional argument PROMPT is non-nil, display that as a prompt.
735If the optional argument INHERIT-INPUT-METHOD is non-nil and some
736input method is turned on in the current buffer, that input method
50e48299
CY
737is used for reading a character.
738If the optional argument SECONDS is non-nil, it should be a number
739specifying the maximum number of seconds to wait for input. If no
740input arrives in that time, return nil. SECONDS may be a
741floating-point value. */)
5842a27b 742 (Lisp_Object prompt, Lisp_Object inherit_input_method, Lisp_Object seconds)
078e7b4a 743{
bb49a192
RS
744 if (! NILP (prompt))
745 message_with_string ("%s", prompt, 0);
50e48299 746 return read_filtered_event (0, 0, 0, ! NILP (inherit_input_method), seconds);
078e7b4a
JB
747}
748
50e48299 749DEFUN ("read-char-exclusive", Fread_char_exclusive, Sread_char_exclusive, 0, 3, 0,
5de38842
PJ
750 doc: /* Read a character from the command input (keyboard or macro).
751It is returned as a number. Non-character events are ignored.
fb26c2af
KH
752If the character has modifiers, they are resolved and reflected to the
753character code if possible (e.g. C-SPC -> 0).
5de38842
PJ
754
755If the optional argument PROMPT is non-nil, display that as a prompt.
756If the optional argument INHERIT-INPUT-METHOD is non-nil and some
757input method is turned on in the current buffer, that input method
50e48299
CY
758is used for reading a character.
759If the optional argument SECONDS is non-nil, it should be a number
760specifying the maximum number of seconds to wait for input. If no
761input arrives in that time, return nil. SECONDS may be a
762floating-point value. */)
5842a27b 763 (Lisp_Object prompt, Lisp_Object inherit_input_method, Lisp_Object seconds)
078e7b4a 764{
fb26c2af 765 Lisp_Object val;
fb26c2af 766
bb49a192
RS
767 if (! NILP (prompt))
768 message_with_string ("%s", prompt, 0);
66c410ce 769
fb26c2af 770 val = read_filtered_event (1, 1, 0, ! NILP (inherit_input_method), seconds);
66c410ce
CY
771
772 return (NILP (val) ? Qnil
773 : make_number (char_resolve_modifier_mask (XINT (val))));
078e7b4a 774}
078e7b4a
JB
775
776DEFUN ("get-file-char", Fget_file_char, Sget_file_char, 0, 0, 0,
5de38842 777 doc: /* Don't use this yourself. */)
5842a27b 778 (void)
078e7b4a
JB
779{
780 register Lisp_Object val;
4d7e6e51 781 block_input ();
1805de4f 782 XSETINT (val, getc (instream));
4d7e6e51 783 unblock_input ();
078e7b4a
JB
784 return val;
785}
da84f340
GM
786
787
550a625e 788\f
b9598260
SM
789
790/* Return true if the lisp code read using READCHARFUN defines a non-nil
791 `lexical-binding' file variable. After returning, the stream is
757140ff
GM
792 positioned following the first line, if it is a comment or #! line,
793 otherwise nothing is read. */
b9598260 794
7cded46f 795static bool
c566235d 796lisp_file_lexically_bound_p (Lisp_Object readcharfun)
b9598260
SM
797{
798 int ch = READCHAR;
757140ff
GM
799
800 if (ch == '#')
801 {
802 ch = READCHAR;
803 if (ch != '!')
804 {
805 UNREAD (ch);
806 UNREAD ('#');
807 return 0;
808 }
809 while (ch != '\n' && ch != EOF)
810 ch = READCHAR;
811 if (ch == '\n') ch = READCHAR;
d2dd3694
GM
812 /* It is OK to leave the position after a #! line, since
813 that is what read1 does. */
757140ff
GM
814 }
815
b9598260
SM
816 if (ch != ';')
817 /* The first line isn't a comment, just give up. */
818 {
819 UNREAD (ch);
820 return 0;
821 }
822 else
823 /* Look for an appropriate file-variable in the first line. */
824 {
7cded46f 825 bool rv = 0;
b9598260 826 enum {
29abe551 827 NOMINAL, AFTER_FIRST_DASH, AFTER_ASTERIX
b9598260 828 } beg_end_state = NOMINAL;
7cded46f 829 bool in_file_vars = 0;
b9598260 830
7200d79c
SM
831#define UPDATE_BEG_END_STATE(ch) \
832 if (beg_end_state == NOMINAL) \
833 beg_end_state = (ch == '-' ? AFTER_FIRST_DASH : NOMINAL); \
834 else if (beg_end_state == AFTER_FIRST_DASH) \
835 beg_end_state = (ch == '*' ? AFTER_ASTERIX : NOMINAL); \
836 else if (beg_end_state == AFTER_ASTERIX) \
837 { \
838 if (ch == '-') \
839 in_file_vars = !in_file_vars; \
840 beg_end_state = NOMINAL; \
b9598260
SM
841 }
842
843 /* Skip until we get to the file vars, if any. */
844 do
845 {
846 ch = READCHAR;
847 UPDATE_BEG_END_STATE (ch);
848 }
849 while (!in_file_vars && ch != '\n' && ch != EOF);
850
851 while (in_file_vars)
852 {
06a0259a 853 char var[100], val[100];
3c346cc3 854 unsigned i;
b9598260
SM
855
856 ch = READCHAR;
857
858 /* Read a variable name. */
859 while (ch == ' ' || ch == '\t')
860 ch = READCHAR;
861
06a0259a 862 i = 0;
db7a0b4f 863 while (ch != ':' && ch != '\n' && ch != EOF && in_file_vars)
b9598260 864 {
06a0259a
PE
865 if (i < sizeof var - 1)
866 var[i++] = ch;
b9598260
SM
867 UPDATE_BEG_END_STATE (ch);
868 ch = READCHAR;
869 }
7200d79c 870
db7a0b4f 871 /* Stop scanning if no colon was found before end marker. */
ad3a2b41 872 if (!in_file_vars || ch == '\n' || ch == EOF)
db7a0b4f
AS
873 break;
874
06a0259a
PE
875 while (i > 0 && (var[i - 1] == ' ' || var[i - 1] == '\t'))
876 i--;
877 var[i] = '\0';
b9598260
SM
878
879 if (ch == ':')
880 {
881 /* Read a variable value. */
882 ch = READCHAR;
883
884 while (ch == ' ' || ch == '\t')
885 ch = READCHAR;
886
06a0259a 887 i = 0;
b9598260
SM
888 while (ch != ';' && ch != '\n' && ch != EOF && in_file_vars)
889 {
06a0259a
PE
890 if (i < sizeof val - 1)
891 val[i++] = ch;
b9598260
SM
892 UPDATE_BEG_END_STATE (ch);
893 ch = READCHAR;
894 }
895 if (! in_file_vars)
ad3a2b41 896 /* The value was terminated by an end-marker, which remove. */
06a0259a
PE
897 i -= 3;
898 while (i > 0 && (val[i - 1] == ' ' || val[i - 1] == '\t'))
899 i--;
900 val[i] = '\0';
b9598260
SM
901
902 if (strcmp (var, "lexical-binding") == 0)
903 /* This is it... */
904 {
905 rv = (strcmp (val, "nil") != 0);
906 break;
907 }
908 }
909 }
910
911 while (ch != '\n' && ch != EOF)
912 ch = READCHAR;
913
914 return rv;
915 }
916}
b9598260 917\f
8792be66 918/* Value is a version number of byte compiled code if the file
c73bd236 919 associated with file descriptor FD is a compiled Lisp file that's
8792be66
KH
920 safe to load. Only files compiled with Emacs are safe to load.
921 Files compiled with XEmacs can lead to a crash in Fbyte_code
922 because of an incompatible change in the byte compiler. */
da84f340
GM
923
924static int
7cded46f 925safe_to_load_version (int fd)
da84f340
GM
926{
927 char buf[512];
928 int nbytes, i;
8f924df7 929 int version = 1;
da84f340
GM
930
931 /* Read the first few bytes from the file, and look for a line
932 specifying the byte compiler version used. */
7cded46f 933 nbytes = emacs_read (fd, buf, sizeof buf);
da84f340
GM
934 if (nbytes > 0)
935 {
da84f340 936 /* Skip to the next newline, skipping over the initial `ELC'
1da3b9e4 937 with NUL bytes following it, but note the version. */
da84f340 938 for (i = 0; i < nbytes && buf[i] != '\n'; ++i)
1da3b9e4 939 if (i == 4)
8792be66 940 version = buf[i];
da84f340 941
e6eb4e9e 942 if (i >= nbytes
927f12da 943 || fast_c_string_match_ignore_case (Vbytecomp_version_regexp,
d923b542 944 buf + i, nbytes - i) < 0)
7cded46f 945 version = 0;
da84f340
GM
946 }
947
948 lseek (fd, 0, SEEK_SET);
7cded46f 949 return version;
da84f340
GM
950}
951
952
7ee3bd7b
GM
953/* Callback for record_unwind_protect. Restore the old load list OLD,
954 after loading a file successfully. */
955
27e498e6 956static void
971de7fb 957record_load_unwind (Lisp_Object old)
7ee3bd7b 958{
27e498e6 959 Vloads_in_progress = old;
7ee3bd7b
GM
960}
961
164c8bfe
RS
962/* This handler function is used via internal_condition_case_1. */
963
964static Lisp_Object
971de7fb 965load_error_handler (Lisp_Object data)
164c8bfe
RS
966{
967 return Qnil;
968}
7ee3bd7b 969
27e498e6 970static void
971de7fb 971load_warn_old_style_backquotes (Lisp_Object file)
1d064697
SM
972{
973 if (!NILP (Vold_style_backquotes))
974 {
b636b4c1 975 Lisp_Object args[2];
18a4a65e 976 args[0] = build_string ("Loading `%s': old-style backquotes detected!");
1d064697
SM
977 args[1] = file;
978 Fmessage (2, args);
979 }
1d064697
SM
980}
981
a7ca3326 982DEFUN ("get-load-suffixes", Fget_load_suffixes, Sget_load_suffixes, 0, 0, 0,
971a4293
LT
983 doc: /* Return the suffixes that `load' should try if a suffix is \
984required.
985This uses the variables `load-suffixes' and `load-file-rep-suffixes'. */)
5842a27b 986 (void)
971a4293
LT
987{
988 Lisp_Object lst = Qnil, suffixes = Vload_suffixes, suffix, ext;
989 while (CONSP (suffixes))
990 {
991 Lisp_Object exts = Vload_file_rep_suffixes;
992 suffix = XCAR (suffixes);
993 suffixes = XCDR (suffixes);
994 while (CONSP (exts))
995 {
996 ext = XCAR (exts);
997 exts = XCDR (exts);
998 lst = Fcons (concat2 (suffix, ext), lst);
999 }
1000 }
1001 return Fnreverse (lst);
1002}
1003
a7ca3326 1004DEFUN ("load", Fload, Sload, 1, 5, 0,
5de38842
PJ
1005 doc: /* Execute a file of Lisp code named FILE.
1006First try FILE with `.elc' appended, then try with `.el',
971a4293 1007then try FILE unmodified (the exact suffixes in the exact order are
88852d45 1008determined by `load-suffixes'). Environment variable references in
971a4293 1009FILE are replaced with their values by calling `substitute-in-file-name'.
5de38842 1010This function searches the directories in `load-path'.
971a4293 1011
5de38842 1012If optional second arg NOERROR is non-nil,
971a4293 1013report no error if FILE doesn't exist.
5de38842 1014Print messages at start and end of loading unless
beb0b7f9
EZ
1015optional third arg NOMESSAGE is non-nil (but `force-load-messages'
1016overrides that).
5de38842 1017If optional fourth arg NOSUFFIX is non-nil, don't try adding
971a4293 1018suffixes `.elc' or `.el' to the specified name FILE.
5de38842 1019If optional fifth arg MUST-SUFFIX is non-nil, insist on
971a4293
LT
1020the suffix `.elc' or `.el'; don't accept just FILE unless
1021it ends in one of those suffixes or includes a directory name.
1022
c664f463
CY
1023If NOSUFFIX is nil, then if a file could not be found, try looking for
1024a different representation of the file by adding non-empty suffixes to
1025its name, before trying another file. Emacs uses this feature to find
1026compressed versions of files when Auto Compression mode is enabled.
1027If NOSUFFIX is non-nil, disable this feature.
1028
1029The suffixes that this function tries out, when NOSUFFIX is nil, are
1030given by the return value of `get-load-suffixes' and the values listed
1031in `load-file-rep-suffixes'. If MUST-SUFFIX is non-nil, only the
1032return value of `get-load-suffixes' is used, i.e. the file name is
1033required to have a non-empty suffix.
0fc213e9 1034
aec3bf9f
GM
1035When searching suffixes, this function normally stops at the first
1036one that exists. If the option `load-prefer-newer' is non-nil,
1037however, it tries all suffixes, and uses whichever file is the newest.
1038
0fc213e9
RS
1039Loading a file records its definitions, and its `provide' and
1040`require' calls, in an element of `load-history' whose
1041car is the file name loaded. See `load-history'.
1042
c7926fe2
EZ
1043While the file is in the process of being loaded, the variable
1044`load-in-progress' is non-nil and the variable `load-file-name'
1045is bound to the file's name.
1046
971a4293 1047Return t if the file exists and loads successfully. */)
a0931322
PE
1048 (Lisp_Object file, Lisp_Object noerror, Lisp_Object nomessage,
1049 Lisp_Object nosuffix, Lisp_Object must_suffix)
078e7b4a 1050{
e1ad689c 1051 FILE *stream = NULL;
a0931322 1052 int fd;
3200038e 1053 dynwind_begin ();
6bb6da3e
AM
1054 struct gcpro gcpro1, gcpro2, gcpro3;
1055 Lisp_Object found, efound, hist_file_name;
7cded46f
PE
1056 /* True means we printed the ".el is newer" message. */
1057 bool newer = 0;
1058 /* True means we are loading a compiled file. */
1059 bool compiled = 0;
c2225d00 1060 Lisp_Object handler;
7cded46f 1061 bool safe_p = 1;
8ea90aa3 1062 const char *fmode = "r";
8792be66
KH
1063 int version;
1064
317073d5 1065#ifdef DOS_NT
229ba775 1066 fmode = "rt";
317073d5 1067#endif /* DOS_NT */
078e7b4a 1068
b7826503 1069 CHECK_STRING (file);
078e7b4a 1070
c2225d00 1071 /* If file name is magic, call the handler. */
e61b9b87
SM
1072 /* This shouldn't be necessary any more now that `openp' handles it right.
1073 handler = Ffind_file_name_handler (file, Qload);
1074 if (!NILP (handler))
1075 return call5 (handler, Qload, file, noerror, nomessage, nosuffix); */
c2225d00 1076
07a0bda3
RS
1077 /* Do this after the handler to avoid
1078 the need to gcpro noerror, nomessage and nosuffix.
e61b9b87
SM
1079 (Below here, we care only whether they are nil or not.)
1080 The presence of this call is the result of a historical accident:
6bb6da3e 1081 it used to be in every file-operation and when it got removed
e61b9b87
SM
1082 everywhere, it accidentally stayed here. Since then, enough people
1083 supposedly have things like (load "$PROJECT/foo.el") in their .emacs
1084 that it seemed risky to remove. */
164c8bfe
RS
1085 if (! NILP (noerror))
1086 {
1087 file = internal_condition_case_1 (Fsubstitute_in_file_name, file,
1088 Qt, load_error_handler);
3200038e
BT
1089 if (NILP (file)) {
1090 dynwind_end ();
1091 return Qnil;
1092 }
164c8bfe
RS
1093 }
1094 else
1095 file = Fsubstitute_in_file_name (file);
177c0ea7 1096
078e7b4a 1097 /* Avoid weird lossage with null string as arg,
48def666 1098 since it would try to load a directory as a Lisp file. */
a0931322 1099 if (SCHARS (file) == 0)
078e7b4a 1100 {
a0931322
PE
1101 fd = -1;
1102 errno = ENOENT;
1103 }
1104 else
1105 {
1106 Lisp_Object suffixes;
0fc213e9
RS
1107 found = Qnil;
1108 GCPRO2 (file, found);
211f7dcd
RS
1109
1110 if (! NILP (must_suffix))
1111 {
1112 /* Don't insist on adding a suffix if FILE already ends with one. */
a0931322 1113 ptrdiff_t size = SBYTES (file);
211f7dcd 1114 if (size > 3
42a5b22f 1115 && !strcmp (SSDATA (file) + size - 3, ".el"))
211f7dcd
RS
1116 must_suffix = Qnil;
1117 else if (size > 4
42a5b22f 1118 && !strcmp (SSDATA (file) + size - 4, ".elc"))
211f7dcd
RS
1119 must_suffix = Qnil;
1120 /* Don't insist on adding a suffix
1121 if the argument includes a directory name. */
1122 else if (! NILP (Ffile_name_directory (file)))
1123 must_suffix = Qnil;
1124 }
1125
a0931322
PE
1126 if (!NILP (nosuffix))
1127 suffixes = Qnil;
1128 else
1129 {
1130 suffixes = Fget_load_suffixes ();
1131 if (NILP (must_suffix))
1132 {
1133 Lisp_Object arg[2];
1134 arg[0] = suffixes;
1135 arg[1] = Vload_file_rep_suffixes;
1136 suffixes = Fappend (2, arg);
1137 }
1138 }
1139
1f41ee56 1140 fd = openp (Vload_path, file, suffixes, &found, Qnil, load_prefer_newer);
5a6e5452 1141 UNGCPRO;
078e7b4a
JB
1142 }
1143
96dc0f4e 1144 if (fd == -1)
078e7b4a 1145 {
265a9e55 1146 if (NILP (noerror))
a0931322 1147 report_file_error ("Cannot open load file", file);
3200038e 1148 dynwind_end ();
336d4a9c 1149 return Qnil;
078e7b4a
JB
1150 }
1151
ba0d1195 1152 /* Tell startup.el whether or not we found the user's init file. */
4116ab9f
KH
1153 if (EQ (Qt, Vuser_init_file))
1154 Vuser_init_file = found;
1155
96dc0f4e
MB
1156 /* If FD is -2, that means openp found a magic file. */
1157 if (fd == -2)
74549846 1158 {
5e24a1f7
KH
1159 if (NILP (Fequal (found, file)))
1160 /* If FOUND is a different file name from FILE,
1161 find its handler even if we have already inhibited
1162 the `load' operation on FILE. */
1163 handler = Ffind_file_name_handler (found, Qt);
1164 else
1165 handler = Ffind_file_name_handler (found, Qload);
3200038e
BT
1166 if (! NILP (handler)) {
1167 dynwind_end ();
1168 return call5 (handler, Qload, found, noerror, nomessage, Qt);
1169 }
35774242
EZ
1170#ifdef DOS_NT
1171 /* Tramp has to deal with semi-broken packages that prepend
1172 drive letters to remote files. For that reason, Tramp
1173 catches file operations that test for file existence, which
1174 makes openp think X:/foo.elc files are remote. However,
1175 Tramp does not catch `load' operations for such files, so we
1176 end up with a nil as the `load' handler above. If we would
1177 continue with fd = -2, we will behave wrongly, and in
1178 particular try reading a .elc file in the "rt" mode instead
1179 of "rb". See bug #9311 for the results. To work around
1180 this, we try to open the file locally, and go with that if it
1181 succeeds. */
1182 fd = emacs_open (SSDATA (ENCODE_FILE (found)), O_RDONLY, 0);
1183 if (fd == -1)
1184 fd = -2;
1185#endif
74549846
RS
1186 }
1187
3bf4baab 1188 if (fd >= 0)
b2a069c2 1189 {
e1ad689c
BT
1190 record_unwind_protect_ptr (close_file_ptr_unwind, &fd);
1191 record_unwind_protect_ptr (fclose_ptr_unwind, &stream);
a0931322
PE
1192 }
1193
550a625e
GM
1194 /* Check if we're stuck in a recursive load cycle.
1195
1196 2000-09-21: It's not possible to just check for the file loaded
1197 being a member of Vloads_in_progress. This fails because of the
1198 way the byte compiler currently works; `provide's are not
9d438325 1199 evaluated, see font-lock.el/jit-lock.el as an example. This
550a625e
GM
1200 leads to a certain amount of ``normal'' recursion.
1201
1202 Also, just loading a file recursively is not always an error in
1203 the general case; the second load may do something different. */
3ba6fd9a 1204 {
0902fe45 1205 int load_count = 0;
3ba6fd9a
RS
1206 Lisp_Object tem;
1207 for (tem = Vloads_in_progress; CONSP (tem); tem = XCDR (tem))
0902fe45 1208 if (!NILP (Fequal (found, XCAR (tem))) && (++load_count > 3))
a0931322 1209 signal_error ("Recursive load", Fcons (found, Vloads_in_progress));
3ba6fd9a
RS
1210 record_unwind_protect (record_load_unwind, Vloads_in_progress);
1211 Vloads_in_progress = Fcons (found, Vloads_in_progress);
1212 }
7ee3bd7b 1213
b9598260
SM
1214 /* All loads are by default dynamic, unless the file itself specifies
1215 otherwise using a file-variable in the first line. This is bound here
1216 so that it takes effect whether or not we use
1217 Vload_source_file_function. */
1218 specbind (Qlexical_binding, Qnil);
1219
48def666 1220 /* Get the name for load-history. */
6bb6da3e 1221 hist_file_name = (! NILP (Vpurify_flag)
a0931322
PE
1222 ? concat2 (Ffile_name_directory (file),
1223 Ffile_name_nondirectory (found))
6bb6da3e
AM
1224 : found) ;
1225
8792be66 1226 version = -1;
1bb9a689 1227
88852d45 1228 /* Check for the presence of old-style quotes and warn about them. */
1d064697
SM
1229 specbind (Qold_style_backquotes, Qnil);
1230 record_unwind_protect (load_warn_old_style_backquotes, file);
1231
72af86bd 1232 if (!memcmp (SDATA (found) + SBYTES (found) - 4, ".elc", 4)
7cded46f 1233 || (fd >= 0 && (version = safe_to_load_version (fd)) > 0))
96dc0f4e
MB
1234 /* Load .elc files directly, but not when they are
1235 remote and have no handler! */
078e7b4a 1236 {
96dc0f4e 1237 if (fd != -2)
da84f340 1238 {
96dc0f4e
MB
1239 struct stat s1, s2;
1240 int result;
da84f340 1241
6bb6da3e 1242 GCPRO3 (file, found, hist_file_name);
0fc213e9 1243
8792be66 1244 if (version < 0
7cded46f 1245 && ! (version = safe_to_load_version (fd)))
96dc0f4e
MB
1246 {
1247 safe_p = 0;
1248 if (!load_dangerous_libraries)
a0931322 1249 error ("File `%s' was not compiled in Emacs", SDATA (found));
beb0b7f9 1250 else if (!NILP (nomessage) && !force_load_messages)
96dc0f4e
MB
1251 message_with_string ("File `%s' not compiled in Emacs", found, 1);
1252 }
04fc68e7 1253
96dc0f4e
MB
1254 compiled = 1;
1255
eb191db2
EZ
1256 efound = ENCODE_FILE (found);
1257
26fbf20b 1258#ifdef DOS_NT
96dc0f4e 1259 fmode = "rb";
26fbf20b 1260#endif /* DOS_NT */
eb191db2 1261
1f41ee56
GM
1262 /* openp already checked for newness, no point doing it again.
1263 FIXME would be nice to get a message when openp
1264 ignores suffix order due to load_prefer_newer. */
1265 if (!load_prefer_newer)
1266 {
1267 result = stat (SSDATA (efound), &s1);
1268 if (result == 0)
1269 {
1270 SSET (efound, SBYTES (efound) - 1, 0);
1271 result = stat (SSDATA (efound), &s2);
1272 SSET (efound, SBYTES (efound) - 1, 'c');
1273 }
04fc68e7 1274
1f41ee56
GM
1275 if (result == 0
1276 && timespec_cmp (get_stat_mtime (&s1), get_stat_mtime (&s2)) < 0)
1277 {
1278 /* Make the progress messages mention that source is newer. */
1279 newer = 1;
1280
1281 /* If we won't print another message, mention this anyway. */
1282 if (!NILP (nomessage) && !force_load_messages)
1283 {
1284 Lisp_Object msg_file;
1285 msg_file = Fsubstring (found, make_number (0), make_number (-1));
1286 message_with_string ("Source file `%s' newer than byte-compiled file",
1287 msg_file, 1);
1288 }
1289 }
1290 } /* !load_prefer_newer */
0fc213e9 1291 UNGCPRO;
51ac6f83 1292 }
078e7b4a 1293 }
fe0e03f3
KH
1294 else
1295 {
1296 /* We are loading a source file (*.el). */
1297 if (!NILP (Vload_source_file_function))
1298 {
7ee3bd7b 1299 Lisp_Object val;
96dc0f4e
MB
1300
1301 if (fd >= 0)
a0931322
PE
1302 {
1303 emacs_close (fd);
e1ad689c 1304 fd = -1;
a0931322 1305 }
6bb6da3e 1306 val = call4 (Vload_source_file_function, found, hist_file_name,
7ee3bd7b 1307 NILP (noerror) ? Qnil : Qt,
beb0b7f9 1308 (NILP (nomessage) || force_load_messages) ? Qnil : Qt);
3200038e
BT
1309 dynwind_end ();
1310 return val;
fe0e03f3
KH
1311 }
1312 }
078e7b4a 1313
6bb6da3e 1314 GCPRO3 (file, found, hist_file_name);
0fc213e9 1315
a0931322 1316 if (fd < 0)
35774242 1317 {
a0931322
PE
1318 /* We somehow got here with fd == -2, meaning the file is deemed
1319 to be remote. Don't even try to reopen the file locally;
1320 just force a failure. */
1321 stream = NULL;
1322 errno = EINVAL;
35774242
EZ
1323 }
1324 else
078e7b4a 1325 {
a0931322 1326#ifdef WINDOWSNT
68c45bf0 1327 emacs_close (fd);
e1ad689c 1328 fd = -1;
a0931322
PE
1329 efound = ENCODE_FILE (found);
1330 stream = emacs_fopen (SSDATA (efound), fmode);
1331#else
1332 stream = fdopen (fd, fmode);
1333#endif
078e7b4a 1334 }
a0931322
PE
1335 if (! stream)
1336 report_file_error ("Opening stdio stream", file);
078e7b4a 1337
4b104c41 1338 if (! NILP (Vpurify_flag))
5e617bc2 1339 Vpreloaded_file_list = Fcons (Fpurecopy (file), Vpreloaded_file_list);
4b104c41 1340
beb0b7f9 1341 if (NILP (nomessage) || force_load_messages)
04fc68e7 1342 {
da84f340
GM
1343 if (!safe_p)
1344 message_with_string ("Loading %s (compiled; note unsafe, not compiled in Emacs)...",
1345 file, 1);
1346 else if (!compiled)
e28552a4 1347 message_with_string ("Loading %s (source)...", file, 1);
db5cae4b 1348 else if (newer)
e28552a4
RS
1349 message_with_string ("Loading %s (compiled; note, source file is newer)...",
1350 file, 1);
db5cae4b 1351 else /* The typical case; compiled file newer than source file. */
e28552a4 1352 message_with_string ("Loading %s...", file, 1);
04fc68e7 1353 }
078e7b4a 1354
20ea2964 1355 specbind (Qload_file_name, found);
74549846 1356 specbind (Qinhibit_file_name_operation, Qnil);
2baf5e76 1357 specbind (Qload_in_progress, Qt);
b9598260
SM
1358
1359 instream = stream;
1360 if (lisp_file_lexically_bound_p (Qget_file_char))
1361 Fset (Qlexical_binding, Qt);
1362
ab2a47e1 1363 if (! version || version >= 22)
b883cdb2 1364 readevalloop (Qget_file_char, stream, hist_file_name,
defb1411 1365 0, Qnil, Qnil, Qnil, Qnil);
8792be66
KH
1366 else
1367 {
1368 /* We can't handle a file which was compiled with
1369 byte-compile-dynamic by older version of Emacs. */
1370 specbind (Qload_force_doc_strings, Qt);
defb1411 1371 readevalloop (Qget_emacs_mule_file_char, stream, hist_file_name,
768d4533 1372 0, Qnil, Qnil, Qnil, Qnil);
8792be66 1373 }
3200038e 1374 dynwind_end ();
078e7b4a 1375
48def666 1376 /* Run any eval-after-load forms for this file. */
428b13d6 1377 if (!NILP (Ffboundp (Qdo_after_load_evaluation)))
6bb6da3e
AM
1378 call1 (Qdo_after_load_evaluation, hist_file_name) ;
1379
078e7b4a
JB
1380 UNGCPRO;
1381
97dead2d 1382 xfree (saved_doc_string);
b2a30870
RS
1383 saved_doc_string = 0;
1384 saved_doc_string_size = 0;
1385
70fdbb46 1386 xfree (prev_saved_doc_string);
c15cfd1f
RS
1387 prev_saved_doc_string = 0;
1388 prev_saved_doc_string_size = 0;
1389
beb0b7f9 1390 if (!noninteractive && (NILP (nomessage) || force_load_messages))
04fc68e7 1391 {
da84f340
GM
1392 if (!safe_p)
1393 message_with_string ("Loading %s (compiled; note unsafe, not compiled in Emacs)...done",
1394 file, 1);
1395 else if (!compiled)
e28552a4 1396 message_with_string ("Loading %s (source)...done", file, 1);
db5cae4b 1397 else if (newer)
e28552a4
RS
1398 message_with_string ("Loading %s (compiled; note, source file is newer)...done",
1399 file, 1);
db5cae4b 1400 else /* The typical case; compiled file newer than source file. */
e28552a4 1401 message_with_string ("Loading %s...done", file, 1);
04fc68e7 1402 }
7ee3bd7b 1403
078e7b4a
JB
1404 return Qt;
1405}
078e7b4a 1406\f
7cded46f 1407static bool
971de7fb 1408complete_filename_p (Lisp_Object pathname)
078e7b4a 1409{
7cded46f 1410 const unsigned char *s = SDATA (pathname);
317073d5 1411 return (IS_DIRECTORY_SEP (s[0])
d5db4077 1412 || (SCHARS (pathname) > 2
7c2fb837 1413 && IS_DEVICE_SEP (s[1]) && IS_DIRECTORY_SEP (s[2])));
078e7b4a
JB
1414}
1415
86d00812
SM
1416DEFUN ("locate-file-internal", Flocate_file_internal, Slocate_file_internal, 2, 4, 0,
1417 doc: /* Search for FILENAME through PATH.
57a131fb 1418Returns the file's name in absolute form, or nil if not found.
86d00812
SM
1419If SUFFIXES is non-nil, it should be a list of suffixes to append to
1420file name when searching.
1421If non-nil, PREDICATE is used instead of `file-readable-p'.
73dcdb9f 1422PREDICATE can also be an integer to pass to the faccessat(2) function,
aa56f361
SM
1423in which case file-name-handlers are ignored.
1424This function will normally skip directories, so if you want it to find
1425directories, make sure the PREDICATE function returns `dir-ok' for them. */)
5842a27b 1426 (Lisp_Object filename, Lisp_Object path, Lisp_Object suffixes, Lisp_Object predicate)
86d00812
SM
1427{
1428 Lisp_Object file;
518c40a2 1429 int fd = openp (path, filename, suffixes, &file, predicate, false);
a773ed9a 1430 if (NILP (predicate) && fd >= 0)
bacba3c2 1431 emacs_close (fd);
86d00812
SM
1432 return file;
1433}
1434
aa56f361 1435static Lisp_Object Qdir_ok;
86d00812 1436
078e7b4a
JB
1437/* Search for a file whose name is STR, looking in directories
1438 in the Lisp list PATH, and trying suffixes from SUFFIX.
5f86adcd
PE
1439 On success, return a file descriptor (or 1 or -2 as described below).
1440 On failure, return -1 and set errno.
078e7b4a 1441
e61b9b87 1442 SUFFIXES is a list of strings containing possible suffixes.
e0f24100 1443 The empty suffix is automatically added if the list is empty.
e61b9b87 1444
86d00812
SM
1445 PREDICATE non-nil means don't open the files,
1446 just look for one that satisfies the predicate. In this case,
5f86adcd 1447 return 1 on success. The predicate can be a lisp function or
86d00812
SM
1448 an integer to pass to `access' (in which case file-name-handlers
1449 are ignored).
078e7b4a
JB
1450
1451 If STOREPTR is nonzero, it points to a slot where the name of
1452 the file actually found should be stored as a Lisp string.
74549846
RS
1453 nil is stored there on failure.
1454
96dc0f4e 1455 If the file we find is remote, return -2
1f41ee56
GM
1456 but store the found remote file name in *STOREPTR.
1457
1458 If NEWER is true, try all SUFFIXes and return the result for the
150622a1
GM
1459 newest file that exists. Does not apply to remote files,
1460 or if PREDICATE is specified. */
078e7b4a
JB
1461
1462int
5f86adcd 1463openp (Lisp_Object path, Lisp_Object str, Lisp_Object suffixes,
518c40a2 1464 Lisp_Object *storeptr, Lisp_Object predicate, bool newer)
078e7b4a 1465{
d311d28c 1466 ptrdiff_t fn_size = 100;
078e7b4a 1467 char buf[100];
7cded46f 1468 char *fn = buf;
518c40a2 1469 bool absolute;
d311d28c 1470 ptrdiff_t want_length;
74549846 1471 Lisp_Object filename;
518c40a2 1472 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5, gcpro6, gcpro7;
1f41ee56 1473 Lisp_Object string, tail, encoded_fn, save_string;
d311d28c 1474 ptrdiff_t max_suffix_len = 0;
5f86adcd 1475 int last_errno = ENOENT;
518c40a2 1476 int save_fd = -1;
e61b9b87 1477
70695f13
PE
1478 /* The last-modified time of the newest matching file found.
1479 Initialize it to something less than all valid timestamps. */
1480 struct timespec save_mtime = make_timespec (TYPE_MINIMUM (time_t), -1);
1481
6f8eafd1
SM
1482 CHECK_STRING (str);
1483
e61b9b87
SM
1484 for (tail = suffixes; CONSP (tail); tail = XCDR (tail))
1485 {
f5df591a 1486 CHECK_STRING_CAR (tail);
e61b9b87 1487 max_suffix_len = max (max_suffix_len,
d5db4077 1488 SBYTES (XCAR (tail)));
e61b9b87 1489 }
078e7b4a 1490
518c40a2
PE
1491 string = filename = encoded_fn = save_string = Qnil;
1492 GCPRO7 (str, string, save_string, filename, path, suffixes, encoded_fn);
eb191db2 1493
078e7b4a
JB
1494 if (storeptr)
1495 *storeptr = Qnil;
1496
518c40a2 1497 absolute = complete_filename_p (str);
078e7b4a 1498
e61b9b87 1499 for (; CONSP (path); path = XCDR (path))
078e7b4a 1500 {
e61b9b87 1501 filename = Fexpand_file_name (str, XCAR (path));
078e7b4a 1502 if (!complete_filename_p (filename))
48def666 1503 /* If there are non-absolute elts in PATH (eg "."). */
078e7b4a 1504 /* Of course, this could conceivably lose if luser sets
48def666 1505 default-directory to be something non-absolute... */
078e7b4a 1506 {
4b4deea2 1507 filename = Fexpand_file_name (filename, BVAR (current_buffer, directory));
078e7b4a 1508 if (!complete_filename_p (filename))
48def666 1509 /* Give up on this path element! */
078e7b4a
JB
1510 continue;
1511 }
1512
640ee02d 1513 /* Calculate maximum length of any filename made from
078e7b4a 1514 this path element/specified file name and any possible suffix. */
640ee02d
PE
1515 want_length = max_suffix_len + SBYTES (filename);
1516 if (fn_size <= want_length)
38182d90 1517 fn = alloca (fn_size = 100 + want_length);
078e7b4a 1518
078e7b4a 1519 /* Loop over suffixes. */
6c6f1994 1520 for (tail = NILP (suffixes) ? list1 (empty_unibyte_string) : suffixes;
e61b9b87 1521 CONSP (tail); tail = XCDR (tail))
078e7b4a 1522 {
d0065ff1
EZ
1523 Lisp_Object suffix = XCAR (tail);
1524 ptrdiff_t fnlen, lsuffix = SBYTES (suffix);
74549846 1525 Lisp_Object handler;
078e7b4a 1526
c49afcd7
RS
1527 /* Concatenate path element/specified name with the suffix.
1528 If the directory starts with /:, remove that. */
e99a530f
PE
1529 int prefixlen = ((SCHARS (filename) > 2
1530 && SREF (filename, 0) == '/'
1531 && SREF (filename, 1) == ':')
1532 ? 2 : 0);
1533 fnlen = SBYTES (filename) - prefixlen;
1534 memcpy (fn, SDATA (filename) + prefixlen, fnlen);
d0065ff1 1535 memcpy (fn + fnlen, SDATA (suffix), lsuffix + 1);
e99a530f 1536 fnlen += lsuffix;
74549846 1537 /* Check that the file exists and is not a directory. */
e61b9b87
SM
1538 /* We used to only check for handlers on non-absolute file names:
1539 if (absolute)
1540 handler = Qnil;
1541 else
1542 handler = Ffind_file_name_handler (filename, Qfile_exists_p);
1543 It's not clear why that was the case and it breaks things like
1544 (load "/bar.el") where the file is actually "/bar.el.gz". */
d0065ff1
EZ
1545 /* make_string has its own ideas on when to return a unibyte
1546 string and when a multibyte string, but we know better.
1547 We must have a unibyte string when dumping, since
1548 file-name encoding is shaky at best at that time, and in
1549 particular default-file-name-coding-system is reset
1550 several times during loadup. We therefore don't want to
1551 encode the file before passing it to file I/O library
1552 functions. */
1553 if (!STRING_MULTIBYTE (filename) && !STRING_MULTIBYTE (suffix))
1554 string = make_unibyte_string (fn, fnlen);
1555 else
1556 string = make_string (fn, fnlen);
4773b8ca 1557 handler = Ffind_file_name_handler (string, Qfile_exists_p);
86d00812
SM
1558 if ((!NILP (handler) || !NILP (predicate)) && !NATNUMP (predicate))
1559 {
73dcdb9f 1560 bool exists;
86d00812
SM
1561 if (NILP (predicate))
1562 exists = !NILP (Ffile_readable_p (string));
1563 else
aa56f361
SM
1564 {
1565 Lisp_Object tmp = call1 (predicate, string);
5f86adcd 1566 if (NILP (tmp))
518c40a2 1567 exists = false;
5f86adcd
PE
1568 else if (EQ (tmp, Qdir_ok)
1569 || NILP (Ffile_directory_p (string)))
518c40a2 1570 exists = true;
5f86adcd
PE
1571 else
1572 {
518c40a2 1573 exists = false;
5f86adcd
PE
1574 last_errno = EISDIR;
1575 }
aa56f361 1576 }
74549846
RS
1577
1578 if (exists)
078e7b4a 1579 {
1f41ee56
GM
1580 /* We succeeded; return this descriptor and filename. */
1581 if (storeptr)
1582 *storeptr = string;
1583 UNGCPRO;
1584 return -2;
74549846
RS
1585 }
1586 }
1587 else
1588 {
73dcdb9f 1589 int fd;
4b2dd274 1590 const char *pfn;
1f41ee56 1591 struct stat st;
eb191db2
EZ
1592
1593 encoded_fn = ENCODE_FILE (string);
42a5b22f 1594 pfn = SSDATA (encoded_fn);
f0a80175 1595
73dcdb9f
PE
1596 /* Check that we can access or open it. */
1597 if (NATNUMP (predicate))
5f86adcd
PE
1598 {
1599 fd = -1;
1600 if (INT_MAX < XFASTINT (predicate))
1601 last_errno = EINVAL;
1602 else if (faccessat (AT_FDCWD, pfn, XFASTINT (predicate),
73dcdb9f
PE
1603 AT_EACCESS)
1604 == 0)
5f86adcd
PE
1605 {
1606 if (file_directory_p (pfn))
1607 last_errno = EISDIR;
1608 else
1609 fd = 1;
1610 }
1611 }
73dcdb9f
PE
1612 else
1613 {
73dcdb9f 1614 fd = emacs_open (pfn, O_RDONLY, 0);
5f86adcd 1615 if (fd < 0)
a0931322
PE
1616 {
1617 if (errno != ENOENT)
1618 last_errno = errno;
1619 }
5f86adcd 1620 else
74549846 1621 {
5f86adcd
PE
1622 int err = (fstat (fd, &st) != 0 ? errno
1623 : S_ISDIR (st.st_mode) ? EISDIR : 0);
1624 if (err)
1625 {
1626 last_errno = err;
1627 emacs_close (fd);
1628 fd = -1;
1629 }
74549846 1630 }
078e7b4a 1631 }
73dcdb9f
PE
1632
1633 if (fd >= 0)
1634 {
150622a1 1635 if (newer && !NATNUMP (predicate))
1f41ee56
GM
1636 {
1637 struct timespec mtime = get_stat_mtime (&st);
1638
518c40a2
PE
1639 if (timespec_cmp (mtime, save_mtime) <= 0)
1640 emacs_close (fd);
1641 else
1f41ee56 1642 {
518c40a2
PE
1643 if (0 <= save_fd)
1644 emacs_close (save_fd);
1f41ee56
GM
1645 save_fd = fd;
1646 save_mtime = mtime;
1647 save_string = string;
1648 }
1649 }
1650 else
1651 {
1652 /* We succeeded; return this descriptor and filename. */
1653 if (storeptr)
1654 *storeptr = string;
1655 UNGCPRO;
1656 return fd;
1657 }
73dcdb9f 1658 }
1f41ee56
GM
1659
1660 /* No more suffixes. Return the newest. */
518c40a2 1661 if (0 <= save_fd && ! CONSP (XCDR (tail)))
1f41ee56
GM
1662 {
1663 if (storeptr)
1664 *storeptr = save_string;
1665 UNGCPRO;
1666 return save_fd;
1667 }
078e7b4a 1668 }
078e7b4a 1669 }
5a6e5452 1670 if (absolute)
5ef2a3c0 1671 break;
078e7b4a
JB
1672 }
1673
5ef2a3c0 1674 UNGCPRO;
5f86adcd 1675 errno = last_errno;
5ef2a3c0 1676 return -1;
078e7b4a
JB
1677}
1678
1679\f
ae321d28
RS
1680/* Merge the list we've accumulated of globals from the current input source
1681 into the load_history variable. The details depend on whether
b502a9a1
RS
1682 the source has an associated file name or not.
1683
1684 FILENAME is the file name that we are loading from.
7cded46f
PE
1685
1686 ENTIRE is true if loading that entire file, false if evaluating
1687 part of it. */
ae321d28
RS
1688
1689static void
7cded46f 1690build_load_history (Lisp_Object filename, bool entire)
ae321d28 1691{
7cded46f
PE
1692 Lisp_Object tail, prev, newelt;
1693 Lisp_Object tem, tem2;
1694 bool foundit = 0;
ae321d28
RS
1695
1696 tail = Vload_history;
1697 prev = Qnil;
b502a9a1 1698
86d00812 1699 while (CONSP (tail))
ae321d28 1700 {
86d00812 1701 tem = XCAR (tail);
ae321d28 1702
48def666 1703 /* Find the feature's previous assoc list... */
b502a9a1 1704 if (!NILP (Fequal (filename, Fcar (tem))))
ae321d28
RS
1705 {
1706 foundit = 1;
1707
48def666 1708 /* If we're loading the entire file, remove old data. */
b502a9a1 1709 if (entire)
86d00812 1710 {
ae321d28 1711 if (NILP (prev))
86d00812 1712 Vload_history = XCDR (tail);
ae321d28 1713 else
86d00812 1714 Fsetcdr (prev, XCDR (tail));
ae321d28
RS
1715 }
1716
1717 /* Otherwise, cons on new symbols that are not already members. */
1718 else
1719 {
1720 tem2 = Vcurrent_load_list;
1721
1722 while (CONSP (tem2))
1723 {
86d00812 1724 newelt = XCAR (tem2);
ae321d28 1725
d642e4f9 1726 if (NILP (Fmember (newelt, tem)))
86d00812
SM
1727 Fsetcar (tail, Fcons (XCAR (tem),
1728 Fcons (newelt, XCDR (tem))));
ae321d28 1729
86d00812 1730 tem2 = XCDR (tem2);
ae321d28
RS
1731 QUIT;
1732 }
1733 }
1734 }
1735 else
1736 prev = tail;
86d00812 1737 tail = XCDR (tail);
ae321d28
RS
1738 QUIT;
1739 }
1740
b502a9a1
RS
1741 /* If we're loading an entire file, cons the new assoc onto the
1742 front of load-history, the most-recently-loaded position. Also
1743 do this if we didn't find an existing member for the file. */
1744 if (entire || !foundit)
8a1f1537
RS
1745 Vload_history = Fcons (Fnreverse (Vcurrent_load_list),
1746 Vload_history);
ae321d28
RS
1747}
1748
27e498e6
PE
1749static void
1750readevalloop_1 (int old)
94e554db 1751{
27e498e6 1752 load_convert_to_unibyte = old;
94e554db
RS
1753}
1754
9c97398c
GM
1755/* Signal an `end-of-file' error, if possible with file name
1756 information. */
1757
845ca893 1758static _Noreturn void
971de7fb 1759end_of_file_error (void)
9c97398c 1760{
9c97398c 1761 if (STRINGP (Vload_file_name))
336d4a9c 1762 xsignal1 (Qend_of_file, Vload_file_name);
9c97398c 1763
336d4a9c 1764 xsignal0 (Qend_of_file);
9c97398c
GM
1765}
1766
12b1389c
DC
1767static Lisp_Object
1768readevalloop_eager_expand_eval (Lisp_Object val, Lisp_Object macroexpand)
1769{
1770 /* If we macroexpand the toplevel form non-recursively and it ends
1771 up being a `progn' (or if it was a progn to start), treat each
1772 form in the progn as a top-level form. This way, if one form in
1773 the progn defines a macro, that macro is in effect when we expand
1774 the remaining forms. See similar code in bytecomp.el. */
1775 val = call2 (macroexpand, val, Qnil);
1776 if (EQ (CAR_SAFE (val), Qprogn))
1777 {
1778 Lisp_Object subforms = XCDR (val);
1779 val = Qnil;
1780 for (; CONSP (subforms); subforms = XCDR (subforms))
1781 val = readevalloop_eager_expand_eval (XCAR (subforms),
1782 macroexpand);
1783 }
1784 else
1785 val = eval_sub (call2 (macroexpand, val, Qt));
1786
1787 return val;
1788}
1789
94e554db 1790/* UNIBYTE specifies how to set load_convert_to_unibyte
976350af 1791 for this invocation.
4c03c46d 1792 READFUN, if non-nil, is used instead of `read'.
1ed7b9ae
RS
1793
1794 START, END specify region to read in current buffer (from eval-region).
1795 If the input is not from a buffer, they must be nil. */
94e554db 1796
078e7b4a 1797static void
dd4c5104
DN
1798readevalloop (Lisp_Object readcharfun,
1799 FILE *stream,
1800 Lisp_Object sourcename,
7cded46f 1801 bool printflag,
dd4c5104
DN
1802 Lisp_Object unibyte, Lisp_Object readfun,
1803 Lisp_Object start, Lisp_Object end)
078e7b4a
JB
1804{
1805 register int c;
1806 register Lisp_Object val;
3200038e 1807 dynwind_begin ();
0a37f512 1808 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
49cf7ff4 1809 struct buffer *b = 0;
7cded46f 1810 bool continue_reading_p;
b9598260 1811 Lisp_Object lex_bound;
7cded46f
PE
1812 /* True if reading an entire buffer. */
1813 bool whole_buffer = 0;
1814 /* True on the first time around. */
1815 bool first_sexp = 1;
705d7210
RT
1816 Lisp_Object form = Fcons (Qprogn, Qnil);
1817 Lisp_Object tail = form;
1818 Lisp_Object compile_fn = 0;
1819
1820 if (SCM_UNLIKELY (! compile_fn))
1821 compile_fn = scm_c_public_ref ("language elisp runtime", "compile-elisp");
d11db2c8
RS
1822
1823 if (MARKERP (readcharfun))
1824 {
1825 if (NILP (start))
8878319c 1826 start = readcharfun;
d11db2c8 1827 }
49cf7ff4
RS
1828
1829 if (BUFFERP (readcharfun))
1830 b = XBUFFER (readcharfun);
1831 else if (MARKERP (readcharfun))
1832 b = XMARKER (readcharfun)->buffer;
078e7b4a 1833
1ed7b9ae
RS
1834 /* We assume START is nil when input is not from a buffer. */
1835 if (! NILP (start) && !b)
1088b922 1836 emacs_abort ();
1ed7b9ae 1837
0a37f512 1838 specbind (Qstandard_input, readcharfun); /* GCPROs readcharfun. */
8a1f1537 1839 specbind (Qcurrent_load_list, Qnil);
27e498e6 1840 record_unwind_protect_int (readevalloop_1, load_convert_to_unibyte);
94e554db 1841 load_convert_to_unibyte = !NILP (unibyte);
078e7b4a 1842
b9598260
SM
1843 /* If lexical binding is active (either because it was specified in
1844 the file's header, or via a buffer-local variable), create an empty
1845 lexical environment, otherwise, turn off lexical binding. */
1846 lex_bound = find_symbol_value (Qlexical_binding);
f07a954e 1847 specbind (Qinternal_interpreter_environment,
6c6f1994
PE
1848 (NILP (lex_bound) || EQ (lex_bound, Qunbound)
1849 ? Qnil : list1 (Qt)));
b9598260 1850
0a37f512 1851 GCPRO4 (sourcename, readfun, start, end);
ae321d28 1852
48def666 1853 /* Try to ensure sourcename is a truename, except whilst preloading. */
6bb6da3e 1854 if (NILP (Vpurify_flag)
91fe9496
SM
1855 && !NILP (sourcename) && !NILP (Ffile_name_absolute_p (sourcename))
1856 && !NILP (Ffboundp (Qfile_truename)))
6bb6da3e
AM
1857 sourcename = call1 (Qfile_truename, sourcename) ;
1858
ae321d28
RS
1859 LOADHIST_ATTACH (sourcename);
1860
f38952fe
GM
1861 continue_reading_p = 1;
1862 while (continue_reading_p)
078e7b4a 1863 {
3200038e 1864 dynwind_begin ();
4c03c46d 1865
e578f381 1866 if (b != 0 && !BUFFER_LIVE_P (b))
49cf7ff4
RS
1867 error ("Reading from killed buffer");
1868
4c03c46d
KS
1869 if (!NILP (start))
1870 {
721b7d9e 1871 /* Switch to the buffer we are reading from. */
4c03c46d 1872 record_unwind_protect (save_excursion_restore, save_excursion_save ());
721b7d9e
RS
1873 set_buffer_internal (b);
1874
1875 /* Save point in it. */
4c03c46d 1876 record_unwind_protect (save_excursion_restore, save_excursion_save ());
721b7d9e 1877 /* Save ZV in it. */
4c03c46d 1878 record_unwind_protect (save_restriction_restore, save_restriction_save ());
721b7d9e
RS
1879 /* Those get unbound after we read one expression. */
1880
1881 /* Set point and ZV around stuff to be read. */
4c03c46d 1882 Fgoto_char (start);
d11db2c8
RS
1883 if (!NILP (end))
1884 Fnarrow_to_region (make_number (BEGV), end);
1885
1886 /* Just for cleanliness, convert END to a marker
1887 if it is an integer. */
1888 if (INTEGERP (end))
1889 end = Fpoint_max_marker ();
4c03c46d
KS
1890 }
1891
d11db2c8
RS
1892 /* On the first cycle, we can easily test here
1893 whether we are reading the whole buffer. */
1894 if (b && first_sexp)
1895 whole_buffer = (PT == BEG && ZV == Z);
1896
078e7b4a 1897 instream = stream;
4c03c46d 1898 read_next:
078e7b4a
JB
1899 c = READCHAR;
1900 if (c == ';')
1901 {
1902 while ((c = READCHAR) != '\n' && c != -1);
4c03c46d
KS
1903 goto read_next;
1904 }
1905 if (c < 0)
1906 {
3200038e 1907 dynwind_end ();
4c03c46d 1908 break;
078e7b4a 1909 }
6069d957
RS
1910
1911 /* Ignore whitespace here, so we can detect eof. */
adef3de7 1912 if (c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r'
ed497dd4 1913 || c == 0xa0) /* NBSP */
4c03c46d 1914 goto read_next;
078e7b4a 1915
265a9e55 1916 if (!NILP (Vpurify_flag) && c == '(')
078e7b4a 1917 {
48def666 1918 val = read_list (0, readcharfun);
078e7b4a
JB
1919 }
1920 else
1921 {
1922 UNREAD (c);
4ad679f9 1923 read_objects = Qnil;
f38952fe
GM
1924 if (!NILP (readfun))
1925 {
1926 val = call1 (readfun, readcharfun);
1927
1928 /* If READCHARFUN has set point to ZV, we should
1929 stop reading, even if the form read sets point
1930 to a different value when evaluated. */
1931 if (BUFFERP (readcharfun))
1932 {
0902fe45
PE
1933 struct buffer *buf = XBUFFER (readcharfun);
1934 if (BUF_PT (buf) == BUF_ZV (buf))
f38952fe
GM
1935 continue_reading_p = 0;
1936 }
1937 }
976350af 1938 else if (! NILP (Vload_read_function))
84a15045 1939 val = call1 (Vload_read_function, readcharfun);
976350af 1940 else
abb13b09 1941 val = read_internal_start (readcharfun, Qnil, Qnil);
078e7b4a
JB
1942 }
1943
4c03c46d
KS
1944 if (!NILP (start) && continue_reading_p)
1945 start = Fpoint_marker ();
d11db2c8
RS
1946
1947 /* Restore saved point and BEGV. */
3200038e 1948 dynwind_end ();
4c03c46d 1949
705d7210 1950 tail = Fsetcdr (tail, Fcons (val, Qnil));
f38952fe 1951
078e7b4a
JB
1952 if (printflag)
1953 {
1954 Vvalues = Fcons (val, Vvalues);
1955 if (EQ (Vstandard_output, Qt))
1956 Fprin1 (val, Qnil);
1957 else
1958 Fprint (val, Qnil);
1959 }
d11db2c8
RS
1960
1961 first_sexp = 0;
078e7b4a
JB
1962 }
1963
705d7210
RT
1964 eval_sub (form);
1965
8878319c 1966 build_load_history (sourcename,
d11db2c8 1967 stream || whole_buffer);
b502a9a1 1968
ae321d28
RS
1969 UNGCPRO;
1970
3200038e 1971 dynwind_end ();
078e7b4a
JB
1972}
1973
1076254d 1974DEFUN ("eval-buffer", Feval_buffer, Seval_buffer, 0, 5, "",
5de38842 1975 doc: /* Execute the current buffer as Lisp code.
72097cd9
CY
1976When called from a Lisp program (i.e., not interactively), this
1977function accepts up to five optional arguments:
5de38842
PJ
1978BUFFER is the buffer to evaluate (nil means use current buffer).
1979PRINTFLAG controls printing of output:
72097cd9
CY
1980 A value of nil means discard it; anything else is stream for print.
1981FILENAME specifies the file name to use for `load-history'.
1982UNIBYTE, if non-nil, specifies `load-convert-to-unibyte' for this
1983 invocation.
1984DO-ALLOW-PRINT, if non-nil, specifies that `print' and related
1985 functions should work normally even if PRINTFLAG is nil.
5de38842
PJ
1986
1987This function preserves the position of point. */)
5842a27b 1988 (Lisp_Object buffer, Lisp_Object printflag, Lisp_Object filename, Lisp_Object unibyte, Lisp_Object do_allow_print)
228d4b1c 1989{
3200038e 1990 dynwind_begin ();
228d4b1c
JA
1991 Lisp_Object tem, buf;
1992
9391b698 1993 if (NILP (buffer))
228d4b1c
JA
1994 buf = Fcurrent_buffer ();
1995 else
9391b698 1996 buf = Fget_buffer (buffer);
dfdb645c 1997 if (NILP (buf))
13febd85 1998 error ("No such buffer");
228d4b1c 1999
1076254d 2000 if (NILP (printflag) && NILP (do_allow_print))
228d4b1c
JA
2001 tem = Qsymbolp;
2002 else
2003 tem = printflag;
13febd85
RS
2004
2005 if (NILP (filename))
4b4deea2 2006 filename = BVAR (XBUFFER (buf), filename);
13febd85 2007
3f39f996 2008 specbind (Qeval_buffer_list, Fcons (buf, Veval_buffer_list));
228d4b1c
JA
2009 specbind (Qstandard_output, tem);
2010 record_unwind_protect (save_excursion_restore, save_excursion_save ());
bf1c0f27 2011 BUF_TEMP_SET_PT (XBUFFER (buf), BUF_BEGV (XBUFFER (buf)));
7200d79c 2012 specbind (Qlexical_binding, lisp_file_lexically_bound_p (buf) ? Qt : Qnil);
defb1411 2013 readevalloop (buf, 0, filename,
4c03c46d 2014 !NILP (printflag), unibyte, Qnil, Qnil, Qnil);
3200038e 2015 dynwind_end ();
228d4b1c
JA
2016
2017 return Qnil;
2018}
2019
976350af 2020DEFUN ("eval-region", Feval_region, Seval_region, 2, 4, "r",
5de38842
PJ
2021 doc: /* Execute the region as Lisp code.
2022When called from programs, expects two arguments,
2023giving starting and ending indices in the current buffer
2024of the text to be executed.
2025Programs can pass third argument PRINTFLAG which controls output:
51d8b30e 2026A value of nil means discard it; anything else is stream for printing it.
5de38842
PJ
2027Also the fourth argument READ-FUNCTION, if non-nil, is used
2028instead of `read' to read each expression. It gets one argument
2029which is the input stream for reading characters.
2030
2031This function does not move point. */)
5842a27b 2032 (Lisp_Object start, Lisp_Object end, Lisp_Object printflag, Lisp_Object read_function)
078e7b4a 2033{
e4769531 2034 /* FIXME: Do the eval-sexp-add-defvars dance! */
3200038e 2035 dynwind_begin ();
ae321d28
RS
2036 Lisp_Object tem, cbuf;
2037
2038 cbuf = Fcurrent_buffer ();
078e7b4a 2039
265a9e55 2040 if (NILP (printflag))
078e7b4a
JB
2041 tem = Qsymbolp;
2042 else
2043 tem = printflag;
2044 specbind (Qstandard_output, tem);
3f39f996 2045 specbind (Qeval_buffer_list, Fcons (cbuf, Veval_buffer_list));
078e7b4a 2046
48def666 2047 /* `readevalloop' calls functions which check the type of start and end. */
f619ad4c 2048 readevalloop (cbuf, 0, BVAR (XBUFFER (cbuf), filename),
4c03c46d
KS
2049 !NILP (printflag), Qnil, read_function,
2050 start, end);
078e7b4a 2051
3200038e
BT
2052 dynwind_end ();
2053 return Qnil;
078e7b4a
JB
2054}
2055
078e7b4a 2056\f
a7ca3326 2057DEFUN ("read", Fread, Sread, 0, 1, 0,
5de38842
PJ
2058 doc: /* Read one Lisp expression as text from STREAM, return as Lisp object.
2059If STREAM is nil, use the value of `standard-input' (which see).
2060STREAM or the value of `standard-input' may be:
2061 a buffer (read from point and advance it)
2062 a marker (read from where it points and advance it)
2063 a function (call it with no arguments for each character,
2064 call it with a char as argument to push a char back)
2065 a string (takes text from string, starting at the beginning)
2066 t (read text line using minibuffer and use it, or read from
2067 standard input in batch mode). */)
5842a27b 2068 (Lisp_Object stream)
078e7b4a 2069{
5be02dff
KH
2070 if (NILP (stream))
2071 stream = Vstandard_input;
2072 if (EQ (stream, Qt))
2073 stream = Qread_char;
5be02dff 2074 if (EQ (stream, Qread_char))
b483c570 2075 /* FIXME: ?! When is this used !? */
30c7e542
SM
2076 return call1 (intern ("read-minibuffer"),
2077 build_string ("Lisp expression: "));
078e7b4a 2078
abb13b09 2079 return read_internal_start (stream, Qnil, Qnil);
078e7b4a
JB
2080}
2081
a7ca3326 2082DEFUN ("read-from-string", Fread_from_string, Sread_from_string, 1, 3, 0,
5de38842
PJ
2083 doc: /* Read one Lisp expression which is represented as text by STRING.
2084Returns a cons: (OBJECT-READ . FINAL-STRING-INDEX).
a4824228 2085FINAL-STRING-INDEX is an integer giving the position of the next
a239d4e9 2086 remaining character in STRING.
5de38842
PJ
2087START and END optionally delimit a substring of STRING from which to read;
2088 they default to 0 and (length STRING) respectively. */)
5842a27b 2089 (Lisp_Object string, Lisp_Object start, Lisp_Object end)
078e7b4a 2090{
2530ceaf 2091 Lisp_Object ret;
b7826503 2092 CHECK_STRING (string);
48def666 2093 /* `read_internal_start' sets `read_from_string_index'. */
2530ceaf 2094 ret = read_internal_start (string, start, end);
5135ab39 2095 return Fcons (ret, make_number (read_from_string_index));
abb13b09 2096}
078e7b4a 2097
abb13b09 2098/* Function to set up the global context we need in toplevel read
48def666 2099 calls. */
abb13b09 2100static Lisp_Object
971de7fb 2101read_internal_start (Lisp_Object stream, Lisp_Object start, Lisp_Object end)
48def666 2102/* `start', `end' only used when stream is a string. */
abb13b09
CW
2103{
2104 Lisp_Object retval;
078e7b4a 2105
abb13b09 2106 readchar_count = 0;
17634846 2107 new_backquote_flag = 0;
4ad679f9 2108 read_objects = Qnil;
abb13b09
CW
2109 if (EQ (Vread_with_symbol_positions, Qt)
2110 || EQ (Vread_with_symbol_positions, stream))
2111 Vread_symbol_positions_list = Qnil;
2112
8f924df7
KH
2113 if (STRINGP (stream)
2114 || ((CONSP (stream) && STRINGP (XCAR (stream)))))
abb13b09 2115 {
d311d28c 2116 ptrdiff_t startval, endval;
8f924df7 2117 Lisp_Object string;
078e7b4a 2118
8f924df7
KH
2119 if (STRINGP (stream))
2120 string = stream;
2121 else
2122 string = XCAR (stream);
078e7b4a 2123
abb13b09 2124 if (NILP (end))
8f924df7 2125 endval = SCHARS (string);
abb13b09
CW
2126 else
2127 {
2128 CHECK_NUMBER (end);
d311d28c 2129 if (! (0 <= XINT (end) && XINT (end) <= SCHARS (string)))
8f924df7 2130 args_out_of_range (string, end);
d311d28c 2131 endval = XINT (end);
abb13b09 2132 }
17634846 2133
abb13b09
CW
2134 if (NILP (start))
2135 startval = 0;
2136 else
2137 {
2138 CHECK_NUMBER (start);
d311d28c 2139 if (! (0 <= XINT (start) && XINT (start) <= endval))
8f924df7 2140 args_out_of_range (string, start);
d311d28c 2141 startval = XINT (start);
abb13b09
CW
2142 }
2143 read_from_string_index = startval;
8f924df7 2144 read_from_string_index_byte = string_char_to_byte (string, startval);
abb13b09
CW
2145 read_from_string_limit = endval;
2146 }
177c0ea7 2147
abb13b09
CW
2148 retval = read0 (stream);
2149 if (EQ (Vread_with_symbol_positions, Qt)
2150 || EQ (Vread_with_symbol_positions, stream))
2151 Vread_symbol_positions_list = Fnreverse (Vread_symbol_positions_list);
2152 return retval;
078e7b4a
JB
2153}
2154\f
336d4a9c
KS
2155
2156/* Signal Qinvalid_read_syntax error.
2157 S is error string of length N (if > 0) */
2158
845ca893 2159static _Noreturn void
e4d29b33 2160invalid_syntax (const char *s)
336d4a9c 2161{
e4d29b33 2162 xsignal1 (Qinvalid_read_syntax, build_string (s));
336d4a9c
KS
2163}
2164
2165
6428369f 2166/* Use this for recursive reads, in contexts where internal tokens
48def666 2167 are not allowed. */
e28552a4 2168
078e7b4a 2169static Lisp_Object
971de7fb 2170read0 (Lisp_Object readcharfun)
078e7b4a
JB
2171{
2172 register Lisp_Object val;
e28552a4 2173 int c;
078e7b4a 2174
17634846 2175 val = read1 (readcharfun, &c, 0);
336d4a9c
KS
2176 if (!c)
2177 return val;
078e7b4a 2178
336d4a9c
KS
2179 xsignal1 (Qinvalid_read_syntax,
2180 Fmake_string (make_number (1), make_number (c)));
078e7b4a
JB
2181}
2182\f
82cb60d3 2183static ptrdiff_t read_buffer_size;
078e7b4a
JB
2184static char *read_buffer;
2185
f6f79b37 2186/* Read a \-escape sequence, assuming we already read the `\'.
8f924df7 2187 If the escape sequence forces unibyte, return eight-bit char. */
6f7f43d5 2188
078e7b4a 2189static int
7cded46f 2190read_escape (Lisp_Object readcharfun, bool stringp)
078e7b4a 2191{
7cded46f 2192 int c = READCHAR;
9735b9ce 2193 /* \u allows up to four hex digits, \U up to eight. Default to the
48def666 2194 behavior for \u, and change this value in the case that \U is seen. */
71b169b8 2195 int unicode_hex_count = 4;
f6f79b37 2196
078e7b4a
JB
2197 switch (c)
2198 {
f3849f25 2199 case -1:
da3b886d 2200 end_of_file_error ();
f3849f25 2201
078e7b4a 2202 case 'a':
265a9e55 2203 return '\007';
078e7b4a
JB
2204 case 'b':
2205 return '\b';
f405a585
RS
2206 case 'd':
2207 return 0177;
078e7b4a
JB
2208 case 'e':
2209 return 033;
2210 case 'f':
2211 return '\f';
2212 case 'n':
2213 return '\n';
2214 case 'r':
2215 return '\r';
2216 case 't':
2217 return '\t';
2218 case 'v':
2219 return '\v';
2220 case '\n':
2221 return -1;
e28552a4 2222 case ' ':
e7fc914b
KH
2223 if (stringp)
2224 return -1;
2225 return ' ';
078e7b4a
JB
2226
2227 case 'M':
2228 c = READCHAR;
2229 if (c != '-')
2230 error ("Invalid escape character syntax");
2231 c = READCHAR;
2232 if (c == '\\')
8792be66 2233 c = read_escape (readcharfun, 0);
7bd279cd 2234 return c | meta_modifier;
f405a585
RS
2235
2236 case 'S':
2237 c = READCHAR;
2238 if (c != '-')
2239 error ("Invalid escape character syntax");
2240 c = READCHAR;
2241 if (c == '\\')
8792be66 2242 c = read_escape (readcharfun, 0);
7bd279cd
RS
2243 return c | shift_modifier;
2244
2245 case 'H':
2246 c = READCHAR;
2247 if (c != '-')
2248 error ("Invalid escape character syntax");
2249 c = READCHAR;
2250 if (c == '\\')
8792be66 2251 c = read_escape (readcharfun, 0);
7bd279cd
RS
2252 return c | hyper_modifier;
2253
2254 case 'A':
2255 c = READCHAR;
2256 if (c != '-')
2257 error ("Invalid escape character syntax");
2258 c = READCHAR;
2259 if (c == '\\')
8792be66 2260 c = read_escape (readcharfun, 0);
7bd279cd
RS
2261 return c | alt_modifier;
2262
2263 case 's':
2264 c = READCHAR;
4d7528d0 2265 if (stringp || c != '-')
010b7eac
RS
2266 {
2267 UNREAD (c);
2268 return ' ';
2269 }
7bd279cd
RS
2270 c = READCHAR;
2271 if (c == '\\')
8792be66 2272 c = read_escape (readcharfun, 0);
7bd279cd 2273 return c | super_modifier;
078e7b4a
JB
2274
2275 case 'C':
2276 c = READCHAR;
2277 if (c != '-')
2278 error ("Invalid escape character syntax");
2279 case '^':
2280 c = READCHAR;
2281 if (c == '\\')
8792be66 2282 c = read_escape (readcharfun, 0);
164d590d
KH
2283 if ((c & ~CHAR_MODIFIER_MASK) == '?')
2284 return 0177 | (c & CHAR_MODIFIER_MASK);
2285 else if (! SINGLE_BYTE_CHAR_P ((c & ~CHAR_MODIFIER_MASK)))
2286 return c | ctrl_modifier;
f405a585
RS
2287 /* ASCII control chars are made from letters (both cases),
2288 as well as the non-letters within 0100...0137. */
2289 else if ((c & 0137) >= 0101 && (c & 0137) <= 0132)
2290 return (c & (037 | ~0177));
2291 else if ((c & 0177) >= 0100 && (c & 0177) <= 0137)
2292 return (c & (037 | ~0177));
078e7b4a 2293 else
7bd279cd 2294 return c | ctrl_modifier;
078e7b4a
JB
2295
2296 case '0':
2297 case '1':
2298 case '2':
2299 case '3':
2300 case '4':
2301 case '5':
2302 case '6':
2303 case '7':
2304 /* An octal escape, as in ANSI C. */
2305 {
2306 register int i = c - '0';
2307 register int count = 0;
2308 while (++count < 3)
2309 {
2310 if ((c = READCHAR) >= '0' && c <= '7')
2311 {
2312 i *= 8;
2313 i += c - '0';
2314 }
2315 else
2316 {
2317 UNREAD (c);
2318 break;
2319 }
2320 }
177c0ea7 2321
8f924df7 2322 if (i >= 0x80 && i < 0x100)
8792be66 2323 i = BYTE8_TO_CHAR (i);
078e7b4a
JB
2324 return i;
2325 }
2326
2327 case 'x':
2328 /* A hex escape, as in ANSI C. */
2329 {
0324f3af 2330 unsigned int i = 0;
1571601b 2331 int count = 0;
078e7b4a
JB
2332 while (1)
2333 {
2334 c = READCHAR;
2335 if (c >= '0' && c <= '9')
2336 {
2337 i *= 16;
2338 i += c - '0';
2339 }
2340 else if ((c >= 'a' && c <= 'f')
2341 || (c >= 'A' && c <= 'F'))
2342 {
2343 i *= 16;
2344 if (c >= 'a' && c <= 'f')
2345 i += c - 'a' + 10;
2346 else
2347 i += c - 'A' + 10;
2348 }
2349 else
2350 {
2351 UNREAD (c);
2352 break;
2353 }
0324f3af
PE
2354 /* Allow hex escapes as large as ?\xfffffff, because some
2355 packages use them to denote characters with modifiers. */
2356 if ((CHAR_META | (CHAR_META - 1)) < i)
39019e54 2357 error ("Hex character out of range: \\x%x...", i);
82cb60d3 2358 count += count < 3;
078e7b4a 2359 }
f6f79b37 2360
1571601b 2361 if (count < 3 && i >= 0x80)
8792be66 2362 return BYTE8_TO_CHAR (i);
078e7b4a
JB
2363 return i;
2364 }
2365
71b169b8
EZ
2366 case 'U':
2367 /* Post-Unicode-2.0: Up to eight hex chars. */
2368 unicode_hex_count = 8;
2369 case 'u':
2370
9735b9ce 2371 /* A Unicode escape. We only permit them in strings and characters,
71b169b8
EZ
2372 not arbitrarily in the source code, as in some other languages. */
2373 {
a808f22d 2374 unsigned int i = 0;
71b169b8 2375 int count = 0;
71b169b8
EZ
2376
2377 while (++count <= unicode_hex_count)
2378 {
2379 c = READCHAR;
48def666
SM
2380 /* `isdigit' and `isalpha' may be locale-specific, which we don't
2381 want. */
71b169b8
EZ
2382 if (c >= '0' && c <= '9') i = (i << 4) + (c - '0');
2383 else if (c >= 'a' && c <= 'f') i = (i << 4) + (c - 'a') + 10;
2384 else if (c >= 'A' && c <= 'F') i = (i << 4) + (c - 'A') + 10;
2385 else
39019e54 2386 error ("Non-hex digit used for Unicode escape");
71b169b8 2387 }
a808f22d
KH
2388 if (i > 0x10FFFF)
2389 error ("Non-Unicode character: 0x%x", i);
7ea7f636 2390 return i;
71b169b8
EZ
2391 }
2392
078e7b4a
JB
2393 default:
2394 return c;
2395 }
2396}
2397
a108c10b
PE
2398/* Return the digit that CHARACTER stands for in the given BASE.
2399 Return -1 if CHARACTER is out of range for BASE,
2400 and -2 if CHARACTER is not valid for any supported BASE. */
b0ab8123 2401static int
a108c10b
PE
2402digit_to_number (int character, int base)
2403{
2404 int digit;
2405
2406 if ('0' <= character && character <= '9')
2407 digit = character - '0';
2408 else if ('a' <= character && character <= 'z')
2409 digit = character - 'a' + 10;
2410 else if ('A' <= character && character <= 'Z')
2411 digit = character - 'A' + 10;
2412 else
2413 return -2;
2414
2415 return digit < base ? digit : -1;
2416}
2417
bf5d1a17
GM
2418/* Read an integer in radix RADIX using READCHARFUN to read
2419 characters. RADIX must be in the interval [2..36]; if it isn't, a
2420 read error is signaled . Value is the integer read. Signals an
2421 error if encountering invalid read syntax or if RADIX is out of
2422 range. */
2423
2424static Lisp_Object
8b9ac8b4 2425read_integer (Lisp_Object readcharfun, EMACS_INT radix)
bf5d1a17 2426{
8b9ac8b4
PE
2427 /* Room for sign, leading 0, other digits, trailing null byte.
2428 Also, room for invalid syntax diagnostic. */
2429 char buf[max (1 + 1 + sizeof (uintmax_t) * CHAR_BIT + 1,
2430 sizeof "integer, radix " + INT_STRLEN_BOUND (EMACS_INT))];
a108c10b
PE
2431
2432 int valid = -1; /* 1 if valid, 0 if not, -1 if incomplete. */
bf5d1a17
GM
2433
2434 if (radix < 2 || radix > 36)
a108c10b 2435 valid = 0;
bf5d1a17
GM
2436 else
2437 {
a108c10b
PE
2438 char *p = buf;
2439 int c, digit;
bf5d1a17
GM
2440
2441 c = READCHAR;
a108c10b 2442 if (c == '-' || c == '+')
bf5d1a17 2443 {
a108c10b 2444 *p++ = c;
bf5d1a17 2445 c = READCHAR;
bf5d1a17 2446 }
177c0ea7 2447
a108c10b 2448 if (c == '0')
bf5d1a17 2449 {
a108c10b
PE
2450 *p++ = c;
2451 valid = 1;
bf5d1a17 2452
a108c10b
PE
2453 /* Ignore redundant leading zeros, so the buffer doesn't
2454 fill up with them. */
2455 do
2456 c = READCHAR;
2457 while (c == '0');
2458 }
2459
908589fd 2460 while ((digit = digit_to_number (c, radix)) >= -1)
a108c10b
PE
2461 {
2462 if (digit == -1)
2463 valid = 0;
2464 if (valid < 0)
2465 valid = 1;
2466
2467 if (p < buf + sizeof buf - 1)
2468 *p++ = c;
2469 else
2470 valid = 0;
bf5d1a17 2471
bf5d1a17
GM
2472 c = READCHAR;
2473 }
a108c10b 2474
0a6a104b 2475 UNREAD (c);
a108c10b 2476 *p = '\0';
bf5d1a17
GM
2477 }
2478
a108c10b 2479 if (! valid)
bf5d1a17 2480 {
8b9ac8b4 2481 sprintf (buf, "integer, radix %"pI"d", radix);
e4d29b33 2482 invalid_syntax (buf);
bf5d1a17
GM
2483 }
2484
a108c10b 2485 return string_to_number (buf, radix, 0);
bf5d1a17
GM
2486}
2487
2488
6428369f
KH
2489/* If the next token is ')' or ']' or '.', we store that character
2490 in *PCH and the return value is not interesting. Else, we store
17634846
RS
2491 zero in *PCH and we read and return one lisp object.
2492
7cded46f 2493 FIRST_IN_LIST is true if this is the first element of a list. */
17634846 2494
078e7b4a 2495static Lisp_Object
7cded46f 2496read1 (Lisp_Object readcharfun, int *pch, bool first_in_list)
078e7b4a 2497{
fce31d69
PE
2498 int c;
2499 bool uninterned_symbol = 0;
2500 bool multibyte;
4ad679f9 2501
6428369f 2502 *pch = 0;
078e7b4a
JB
2503
2504 retry:
2505
1202434b 2506 c = READCHAR_REPORT_MULTIBYTE (&multibyte);
9c97398c
GM
2507 if (c < 0)
2508 end_of_file_error ();
078e7b4a
JB
2509
2510 switch (c)
2511 {
2512 case '(':
2513 return read_list (0, readcharfun);
2514
2515 case '[':
c15cfd1f 2516 return read_vector (readcharfun, 0);
078e7b4a
JB
2517
2518 case ')':
2519 case ']':
078e7b4a 2520 {
6428369f
KH
2521 *pch = c;
2522 return Qnil;
078e7b4a
JB
2523 }
2524
2525 case '#':
200f684e 2526 c = READCHAR;
f19a0f5b
TZ
2527 if (c == 's')
2528 {
2529 c = READCHAR;
2530 if (c == '(')
2531 {
2532 /* Accept extended format for hashtables (extensible to
2533 other types), e.g.
48def666 2534 #s(hash-table size 2 test equal data (k1 v1 k2 v2)) */
f19a0f5b
TZ
2535 Lisp_Object tmp = read_list (0, readcharfun);
2536 Lisp_Object head = CAR_SAFE (tmp);
2537 Lisp_Object data = Qnil;
2538 Lisp_Object val = Qnil;
2539 /* The size is 2 * number of allowed keywords to
48def666 2540 make-hash-table. */
9735b9ce 2541 Lisp_Object params[10];
f19a0f5b
TZ
2542 Lisp_Object ht;
2543 Lisp_Object key = Qnil;
2544 int param_count = 0;
9735b9ce 2545
f19a0f5b
TZ
2546 if (!EQ (head, Qhash_table))
2547 error ("Invalid extended read marker at head of #s list "
2548 "(only hash-table allowed)");
9735b9ce 2549
f19a0f5b
TZ
2550 tmp = CDR_SAFE (tmp);
2551
48def666 2552 /* This is repetitive but fast and simple. */
f19a0f5b 2553 params[param_count] = QCsize;
48def666 2554 params[param_count + 1] = Fplist_get (tmp, Qsize);
5721b4ed
AS
2555 if (!NILP (params[param_count + 1]))
2556 param_count += 2;
f19a0f5b
TZ
2557
2558 params[param_count] = QCtest;
48def666 2559 params[param_count + 1] = Fplist_get (tmp, Qtest);
5721b4ed
AS
2560 if (!NILP (params[param_count + 1]))
2561 param_count += 2;
f19a0f5b
TZ
2562
2563 params[param_count] = QCweakness;
48def666 2564 params[param_count + 1] = Fplist_get (tmp, Qweakness);
5721b4ed
AS
2565 if (!NILP (params[param_count + 1]))
2566 param_count += 2;
f19a0f5b
TZ
2567
2568 params[param_count] = QCrehash_size;
48def666 2569 params[param_count + 1] = Fplist_get (tmp, Qrehash_size);
5721b4ed
AS
2570 if (!NILP (params[param_count + 1]))
2571 param_count += 2;
f19a0f5b
TZ
2572
2573 params[param_count] = QCrehash_threshold;
48def666 2574 params[param_count + 1] = Fplist_get (tmp, Qrehash_threshold);
5721b4ed
AS
2575 if (!NILP (params[param_count + 1]))
2576 param_count += 2;
f19a0f5b 2577
48def666 2578 /* This is the hashtable data. */
f19a0f5b
TZ
2579 data = Fplist_get (tmp, Qdata);
2580
48def666 2581 /* Now use params to make a new hashtable and fill it. */
f19a0f5b 2582 ht = Fmake_hash_table (param_count, params);
9735b9ce 2583
f19a0f5b
TZ
2584 while (CONSP (data))
2585 {
2586 key = XCAR (data);
2587 data = XCDR (data);
2588 if (!CONSP (data))
2589 error ("Odd number of elements in hashtable data");
2590 val = XCAR (data);
2591 data = XCDR (data);
2592 Fputhash (key, val, ht);
2593 }
9735b9ce 2594
f19a0f5b
TZ
2595 return ht;
2596 }
5721b4ed 2597 UNREAD (c);
e4d29b33 2598 invalid_syntax ("#");
f19a0f5b 2599 }
c2390933
RS
2600 if (c == '^')
2601 {
2602 c = READCHAR;
2603 if (c == '[')
2604 {
2605 Lisp_Object tmp;
c15cfd1f 2606 tmp = read_vector (readcharfun, 0);
77b37c05 2607 if (ASIZE (tmp) < CHAR_TABLE_STANDARD_SLOTS)
c2390933 2608 error ("Invalid size char-table");
985773c9 2609 XSETPVECTYPE (XVECTOR (tmp), PVEC_CHAR_TABLE);
c2390933
RS
2610 return tmp;
2611 }
3701b5de
KH
2612 else if (c == '^')
2613 {
2614 c = READCHAR;
2615 if (c == '[')
2616 {
2617 Lisp_Object tmp;
d311d28c
PE
2618 int depth;
2619 ptrdiff_t size;
8f924df7 2620
c15cfd1f 2621 tmp = read_vector (readcharfun, 0);
6efdadfd
PE
2622 size = ASIZE (tmp);
2623 if (size == 0)
2624 error ("Invalid size char-table");
d311d28c 2625 if (! RANGED_INTEGERP (1, AREF (tmp, 0), 3))
1571601b
KH
2626 error ("Invalid depth in char-table");
2627 depth = XINT (AREF (tmp, 0));
6efdadfd 2628 if (chartab_size[depth] != size - 2)
3701b5de 2629 error ("Invalid size char-table");
985773c9 2630 XSETPVECTYPE (XVECTOR (tmp), PVEC_SUB_CHAR_TABLE);
3701b5de
KH
2631 return tmp;
2632 }
3dc0d471 2633 invalid_syntax ("#^" "^");
3701b5de 2634 }
e4d29b33 2635 invalid_syntax ("#^");
c2390933
RS
2636 }
2637 if (c == '&')
2638 {
2639 Lisp_Object length;
2640 length = read1 (readcharfun, pch, first_in_list);
2641 c = READCHAR;
2642 if (c == '"')
2643 {
2644 Lisp_Object tmp, val;
2cf00efc 2645 EMACS_INT size_in_chars = bool_vector_bytes (XFASTINT (length));
df5b4930 2646 unsigned char *data;
c2390933
RS
2647
2648 UNREAD (c);
2649 tmp = read1 (readcharfun, pch, first_in_list);
8792be66 2650 if (STRING_MULTIBYTE (tmp)
8f924df7 2651 || (size_in_chars != SCHARS (tmp)
8792be66
KH
2652 /* We used to print 1 char too many
2653 when the number of bits was a multiple of 8.
2654 Accept such input in case it came from an old
2655 version. */
2656 && ! (XFASTINT (length)
327719ee 2657 == (SCHARS (tmp) - 1) * BOOL_VECTOR_BITS_PER_CHAR)))
e4d29b33 2658 invalid_syntax ("#&...");
177c0ea7 2659
2cf00efc 2660 val = make_uninit_bool_vector (XFASTINT (length));
df5b4930
PE
2661 data = bool_vector_uchar_data (val);
2662 memcpy (data, SDATA (tmp), size_in_chars);
67d3b149 2663 /* Clear the extraneous bits in the last byte. */
d1ca81d9 2664 if (XINT (length) != size_in_chars * BOOL_VECTOR_BITS_PER_CHAR)
df5b4930 2665 data[size_in_chars - 1]
d1ca81d9 2666 &= (1 << (XINT (length) % BOOL_VECTOR_BITS_PER_CHAR)) - 1;
c2390933
RS
2667 return val;
2668 }
e4d29b33 2669 invalid_syntax ("#&...");
c2390933 2670 }
200f684e 2671 if (c == '[')
876c194c
SM
2672 {
2673 /* Accept compiled functions at read-time so that we don't have to
2674 build them using function calls. */
2675 Lisp_Object tmp;
56a0e352 2676 struct Lisp_Vector *vec;
876c194c 2677 tmp = read_vector (readcharfun, 1);
56a0e352
PE
2678 vec = XVECTOR (tmp);
2679 if (vec->header.size == 0)
ba355de0
BR
2680 invalid_syntax ("Empty byte-code object");
2681 make_byte_code (vec);
3017f87f 2682 return tmp;
876c194c 2683 }
748ef62f
RS
2684 if (c == '(')
2685 {
2686 Lisp_Object tmp;
2687 struct gcpro gcpro1;
e28552a4 2688 int ch;
748ef62f
RS
2689
2690 /* Read the string itself. */
17634846 2691 tmp = read1 (readcharfun, &ch, 0);
6428369f 2692 if (ch != 0 || !STRINGP (tmp))
e4d29b33 2693 invalid_syntax ("#");
748ef62f
RS
2694 GCPRO1 (tmp);
2695 /* Read the intervals and their properties. */
2696 while (1)
2697 {
2698 Lisp_Object beg, end, plist;
2699
17634846 2700 beg = read1 (readcharfun, &ch, 0);
7ee3bd7b 2701 end = plist = Qnil;
6428369f
KH
2702 if (ch == ')')
2703 break;
2704 if (ch == 0)
17634846 2705 end = read1 (readcharfun, &ch, 0);
6428369f 2706 if (ch == 0)
17634846 2707 plist = read1 (readcharfun, &ch, 0);
6428369f 2708 if (ch)
e4d29b33 2709 invalid_syntax ("Invalid string property list");
748ef62f
RS
2710 Fset_text_properties (beg, end, plist, tmp);
2711 }
2712 UNGCPRO;
2713 return tmp;
2714 }
177c0ea7 2715
75a65c7e 2716 /* #@NUMBER is used to skip NUMBER following bytes.
20ea2964
RS
2717 That's used in .elc files to skip over doc strings
2718 and function definitions. */
2719 if (c == '@')
2720 {
bfbbd7e7 2721 enum { extra = 100 };
759fd763 2722 ptrdiff_t i, nskip = 0, digits = 0;
20ea2964
RS
2723
2724 /* Read a decimal integer. */
2725 while ((c = READCHAR) >= 0
2726 && c >= '0' && c <= '9')
2727 {
bfbbd7e7
PE
2728 if ((STRING_BYTES_BOUND - extra) / 10 <= nskip)
2729 string_overflow ();
759fd763 2730 digits++;
20ea2964
RS
2731 nskip *= 10;
2732 nskip += c - '0';
759fd763
SM
2733 if (digits == 2 && nskip == 0)
2734 { /* We've just seen #@00, which means "skip to end". */
2735 skip_dyn_eof (readcharfun);
2736 return Qnil;
2737 }
20ea2964 2738 }
75a65c7e
SM
2739 if (nskip > 0)
2740 /* We can't use UNREAD here, because in the code below we side-step
2741 READCHAR. Instead, assume the first char after #@NNN occupies
2742 a single byte, which is the case normally since it's just
2743 a space. */
2744 nskip--;
2745 else
2746 UNREAD (c);
7216e43b 2747
8792be66 2748 if (load_force_doc_strings
d2e24f92 2749 && (FROM_FILE_P (readcharfun)))
b2a30870
RS
2750 {
2751 /* If we are supposed to force doc strings into core right now,
2752 record the last string that we skipped,
2753 and record where in the file it comes from. */
c15cfd1f
RS
2754
2755 /* But first exchange saved_doc_string
2756 with prev_saved_doc_string, so we save two strings. */
2757 {
2758 char *temp = saved_doc_string;
bfbbd7e7 2759 ptrdiff_t temp_size = saved_doc_string_size;
68c45bf0 2760 file_offset temp_pos = saved_doc_string_position;
bfbbd7e7 2761 ptrdiff_t temp_len = saved_doc_string_length;
c15cfd1f
RS
2762
2763 saved_doc_string = prev_saved_doc_string;
2764 saved_doc_string_size = prev_saved_doc_string_size;
2765 saved_doc_string_position = prev_saved_doc_string_position;
2766 saved_doc_string_length = prev_saved_doc_string_length;
2767
2768 prev_saved_doc_string = temp;
2769 prev_saved_doc_string_size = temp_size;
2770 prev_saved_doc_string_position = temp_pos;
2771 prev_saved_doc_string_length = temp_len;
2772 }
2773
b2a30870
RS
2774 if (saved_doc_string_size == 0)
2775 {
a0a9ac13 2776 saved_doc_string = xmalloc_atomic (nskip + extra);
bfbbd7e7 2777 saved_doc_string_size = nskip + extra;
b2a30870
RS
2778 }
2779 if (nskip > saved_doc_string_size)
2780 {
38182d90 2781 saved_doc_string = xrealloc (saved_doc_string, nskip + extra);
37d0112b 2782 saved_doc_string_size = nskip + extra;
b2a30870
RS
2783 }
2784
68c45bf0 2785 saved_doc_string_position = file_tell (instream);
b2a30870
RS
2786
2787 /* Copy that many characters into saved_doc_string. */
75a65c7e 2788 block_input ();
b2a30870 2789 for (i = 0; i < nskip && c >= 0; i++)
75a65c7e
SM
2790 saved_doc_string[i] = c = getc (instream);
2791 unblock_input ();
b2a30870
RS
2792
2793 saved_doc_string_length = i;
2794 }
2795 else
75a65c7e
SM
2796 /* Skip that many bytes. */
2797 skip_dyn_bytes (readcharfun, nskip);
d49f0c1a 2798
20ea2964
RS
2799 goto retry;
2800 }
e2518d02
RS
2801 if (c == '!')
2802 {
2803 /* #! appears at the beginning of an executable file.
2804 Skip the first line. */
225c7a07 2805 while (c != '\n' && c >= 0)
e2518d02
RS
2806 c = READCHAR;
2807 goto retry;
2808 }
20ea2964
RS
2809 if (c == '$')
2810 return Vload_file_name;
2b6cae0c 2811 if (c == '\'')
6c6f1994 2812 return list2 (Qfunction, read0 (readcharfun));
4ad679f9
EN
2813 /* #:foo is the uninterned symbol named foo. */
2814 if (c == ':')
2815 {
2816 uninterned_symbol = 1;
2817 c = READCHAR;
52968808 2818 if (!(c > 040
ed497dd4 2819 && c != 0xa0 /* NBSP */
52968808 2820 && (c >= 0200
0a6a104b 2821 || strchr ("\"';()[]#`,", c) == NULL)))
52968808
AS
2822 {
2823 /* No symbol character follows, this is the empty
2824 symbol. */
0a6a104b 2825 UNREAD (c);
4a7edc24 2826 return Fmake_symbol (empty_unibyte_string);
52968808
AS
2827 }
2828 goto read_symbol;
4ad679f9 2829 }
9a79b20c
AS
2830 /* ## is the empty symbol. */
2831 if (c == '#')
4a7edc24 2832 return Fintern (empty_unibyte_string, Qnil);
4ad679f9
EN
2833 /* Reader forms that can reuse previously read objects. */
2834 if (c >= '0' && c <= '9')
2835 {
8b9ac8b4 2836 EMACS_INT n = 0;
4ad679f9 2837 Lisp_Object tem;
2b6cae0c 2838
4ad679f9
EN
2839 /* Read a non-negative integer. */
2840 while (c >= '0' && c <= '9')
2841 {
7216e43b
PE
2842 if (MOST_POSITIVE_FIXNUM / 10 < n
2843 || MOST_POSITIVE_FIXNUM < n * 10 + c - '0')
8b9ac8b4
PE
2844 n = MOST_POSITIVE_FIXNUM + 1;
2845 else
2846 n = n * 10 + c - '0';
4ad679f9
EN
2847 c = READCHAR;
2848 }
8b9ac8b4
PE
2849
2850 if (n <= MOST_POSITIVE_FIXNUM)
4ad679f9 2851 {
8b9ac8b4
PE
2852 if (c == 'r' || c == 'R')
2853 return read_integer (readcharfun, n);
9e062b6c 2854
8b9ac8b4
PE
2855 if (! NILP (Vread_circle))
2856 {
2857 /* #n=object returns object, but associates it with
2858 n for #n#. */
2859 if (c == '=')
2860 {
48def666 2861 /* Make a placeholder for #n# to use temporarily. */
8b9ac8b4
PE
2862 Lisp_Object placeholder;
2863 Lisp_Object cell;
9e062b6c 2864
8b9ac8b4
PE
2865 placeholder = Fcons (Qnil, Qnil);
2866 cell = Fcons (make_number (n), placeholder);
2867 read_objects = Fcons (cell, read_objects);
9e062b6c 2868
48def666 2869 /* Read the object itself. */
8b9ac8b4 2870 tem = read0 (readcharfun);
9e062b6c 2871
48def666 2872 /* Now put it everywhere the placeholder was... */
8b9ac8b4 2873 substitute_object_in_subtree (tem, placeholder);
177c0ea7 2874
8b9ac8b4
PE
2875 /* ...and #n# will use the real value from now on. */
2876 Fsetcdr (cell, tem);
177c0ea7 2877
8b9ac8b4
PE
2878 return tem;
2879 }
2880
2881 /* #n# returns a previously read object. */
2882 if (c == '#')
2883 {
2884 tem = Fassq (make_number (n), read_objects);
2885 if (CONSP (tem))
2886 return XCDR (tem);
2887 }
2888 }
2889 }
4ad679f9
EN
2890 /* Fall through to error message. */
2891 }
bf5d1a17
GM
2892 else if (c == 'x' || c == 'X')
2893 return read_integer (readcharfun, 16);
2894 else if (c == 'o' || c == 'O')
2895 return read_integer (readcharfun, 8);
2896 else if (c == 'b' || c == 'B')
2897 return read_integer (readcharfun, 2);
20ea2964 2898
200f684e 2899 UNREAD (c);
e4d29b33 2900 invalid_syntax ("#");
078e7b4a
JB
2901
2902 case ';':
2903 while ((c = READCHAR) >= 0 && c != '\n');
2904 goto retry;
2905
2906 case '\'':
6c6f1994 2907 return list2 (Qquote, read0 (readcharfun));
078e7b4a 2908
17634846 2909 case '`':
9a39b306
TO
2910 {
2911 int next_char = READCHAR;
2912 UNREAD (next_char);
2913 /* Transition from old-style to new-style:
2914 If we see "(`" it used to mean old-style, which usually works
2915 fine because ` should almost never appear in such a position
2916 for new-style. But occasionally we need "(`" to mean new
2917 style, so we try to distinguish the two by the fact that we
2918 can either write "( `foo" or "(` foo", where the first
2919 intends to use new-style whereas the second intends to use
2920 old-style. For Emacs-25, we should completely remove this
2921 first_in_list exception (old-style can still be obtained via
2922 "(\`" anyway). */
bba3e508 2923 if (!new_backquote_flag && first_in_list && next_char == ' ')
9a39b306
TO
2924 {
2925 Vold_style_backquotes = Qt;
2926 goto default_label;
2927 }
2928 else
2929 {
2930 Lisp_Object value;
7cded46f 2931 bool saved_new_backquote_flag = new_backquote_flag;
17634846 2932
7cded46f 2933 new_backquote_flag = 1;
9a39b306 2934 value = read0 (readcharfun);
7cded46f 2935 new_backquote_flag = saved_new_backquote_flag;
17634846 2936
6c6f1994 2937 return list2 (Qbackquote, value);
9a39b306
TO
2938 }
2939 }
17634846 2940 case ',':
bba3e508
SM
2941 {
2942 int next_char = READCHAR;
2943 UNREAD (next_char);
2944 /* Transition from old-style to new-style:
2945 It used to be impossible to have a new-style , other than within
2946 a new-style `. This is sufficient when ` and , are used in the
2947 normal way, but ` and , can also appear in args to macros that
2948 will not interpret them in the usual way, in which case , may be
2949 used without any ` anywhere near.
2950 So we now use the same heuristic as for backquote: old-style
2951 unquotes are only recognized when first on a list, and when
2952 followed by a space.
333f9019 2953 Because it's more difficult to peek 2 chars ahead, a new-style
bba3e508
SM
2954 ,@ can still not be used outside of a `, unless it's in the middle
2955 of a list. */
2956 if (new_backquote_flag
2957 || !first_in_list
2958 || (next_char != ' ' && next_char != '@'))
2959 {
2960 Lisp_Object comma_type = Qnil;
2961 Lisp_Object value;
2962 int ch = READCHAR;
17634846 2963
bba3e508
SM
2964 if (ch == '@')
2965 comma_type = Qcomma_at;
2966 else if (ch == '.')
2967 comma_type = Qcomma_dot;
2968 else
2969 {
2970 if (ch >= 0) UNREAD (ch);
2971 comma_type = Qcomma;
2972 }
17634846 2973
bba3e508 2974 value = read0 (readcharfun);
6c6f1994 2975 return list2 (comma_type, value);
bba3e508
SM
2976 }
2977 else
2978 {
2979 Vold_style_backquotes = Qt;
2980 goto default_label;
2981 }
2982 }
078e7b4a
JB
2983 case '?':
2984 {
8792be66 2985 int modifiers;
df9c2be7 2986 int next_char;
7cded46f 2987 bool ok;
f6f79b37 2988
078e7b4a 2989 c = READCHAR;
9c97398c
GM
2990 if (c < 0)
2991 end_of_file_error ();
078e7b4a 2992
b9284371
KS
2993 /* Accept `single space' syntax like (list ? x) where the
2994 whitespace character is SPC or TAB.
2995 Other literal whitespace like NL, CR, and FF are not accepted,
2996 as there are well-established escape sequences for these. */
2997 if (c == ' ' || c == '\t')
2998 return make_number (c);
2999
078e7b4a 3000 if (c == '\\')
8792be66
KH
3001 c = read_escape (readcharfun, 0);
3002 modifiers = c & CHAR_MODIFIER_MASK;
3003 c &= ~CHAR_MODIFIER_MASK;
3004 if (CHAR_BYTE8_P (c))
3005 c = CHAR_TO_BYTE8 (c);
3006 c |= modifiers;
078e7b4a 3007
df9c2be7 3008 next_char = READCHAR;
bba3e508
SM
3009 ok = (next_char <= 040
3010 || (next_char < 0200
0a6a104b 3011 && strchr ("\"';()[]#?`,.", next_char) != NULL));
df9c2be7 3012 UNREAD (next_char);
336d4a9c
KS
3013 if (ok)
3014 return make_number (c);
37cd4238 3015
e4d29b33 3016 invalid_syntax ("?");
078e7b4a
JB
3017 }
3018
00a9a935 3019 case '"':
078e7b4a 3020 {
a742d646
GM
3021 char *p = read_buffer;
3022 char *end = read_buffer + read_buffer_size;
7cded46f
PE
3023 int ch;
3024 /* True if we saw an escape sequence specifying
1571601b 3025 a multibyte character. */
7cded46f
PE
3026 bool force_multibyte = 0;
3027 /* True if we saw an escape sequence specifying
e7fc914b 3028 a single-byte character. */
7cded46f
PE
3029 bool force_singlebyte = 0;
3030 bool cancel = 0;
82cb60d3 3031 ptrdiff_t nchars = 0;
078e7b4a 3032
0902fe45
PE
3033 while ((ch = READCHAR) >= 0
3034 && ch != '\"')
078e7b4a 3035 {
449fea39 3036 if (end - p < MAX_MULTIBYTE_LENGTH)
078e7b4a 3037 {
82cb60d3 3038 ptrdiff_t offset = p - read_buffer;
7216e43b 3039 if (min (PTRDIFF_MAX, SIZE_MAX) / 2 < read_buffer_size)
20270765 3040 memory_full (SIZE_MAX);
38182d90 3041 read_buffer = xrealloc (read_buffer, read_buffer_size * 2);
37d0112b 3042 read_buffer_size *= 2;
5d65df0d 3043 p = read_buffer + offset;
078e7b4a
JB
3044 end = read_buffer + read_buffer_size;
3045 }
bed23cb2 3046
0902fe45 3047 if (ch == '\\')
03e88613 3048 {
1571601b 3049 int modifiers;
f6f79b37 3050
0902fe45 3051 ch = read_escape (readcharfun, 1);
bed23cb2 3052
48def666 3053 /* CH is -1 if \ newline has just been seen. */
0902fe45 3054 if (ch == -1)
03e88613 3055 {
bed23cb2
RS
3056 if (p == read_buffer)
3057 cancel = 1;
03e88613
RS
3058 continue;
3059 }
bed23cb2 3060
0902fe45
PE
3061 modifiers = ch & CHAR_MODIFIER_MASK;
3062 ch = ch & ~CHAR_MODIFIER_MASK;
1571601b 3063
0902fe45 3064 if (CHAR_BYTE8_P (ch))
e7fc914b 3065 force_singlebyte = 1;
0902fe45 3066 else if (! ASCII_CHAR_P (ch))
f6f79b37 3067 force_multibyte = 1;
48def666 3068 else /* I.e. ASCII_CHAR_P (ch). */
1571601b
KH
3069 {
3070 /* Allow `\C- ' and `\C-?'. */
3071 if (modifiers == CHAR_CTL)
3072 {
0902fe45
PE
3073 if (ch == ' ')
3074 ch = 0, modifiers = 0;
3075 else if (ch == '?')
3076 ch = 127, modifiers = 0;
1571601b
KH
3077 }
3078 if (modifiers & CHAR_SHIFT)
3079 {
3080 /* Shift modifier is valid only with [A-Za-z]. */
0902fe45 3081 if (ch >= 'A' && ch <= 'Z')
1571601b 3082 modifiers &= ~CHAR_SHIFT;
0902fe45
PE
3083 else if (ch >= 'a' && ch <= 'z')
3084 ch -= ('a' - 'A'), modifiers &= ~CHAR_SHIFT;
1571601b
KH
3085 }
3086
3087 if (modifiers & CHAR_META)
3088 {
3089 /* Move the meta bit to the right place for a
3090 string. */
3091 modifiers &= ~CHAR_META;
0902fe45 3092 ch = BYTE8_TO_CHAR (ch | 0x80);
1571601b
KH
3093 force_singlebyte = 1;
3094 }
3095 }
5150eeec 3096
1571601b
KH
3097 /* Any modifiers remaining are invalid. */
3098 if (modifiers)
3099 error ("Invalid modifier in string");
0902fe45 3100 p += CHAR_STRING (ch, (unsigned char *) p);
078e7b4a 3101 }
8792be66 3102 else
5150eeec 3103 {
0902fe45
PE
3104 p += CHAR_STRING (ch, (unsigned char *) p);
3105 if (CHAR_BYTE8_P (ch))
988f7a0c 3106 force_singlebyte = 1;
0902fe45 3107 else if (! ASCII_CHAR_P (ch))
988f7a0c 3108 force_multibyte = 1;
f943104a 3109 }
5150eeec 3110 nchars++;
078e7b4a 3111 }
5150eeec 3112
0902fe45 3113 if (ch < 0)
9c97398c 3114 end_of_file_error ();
078e7b4a 3115
4cfd81f6 3116 if (! force_multibyte && force_singlebyte)
a742d646 3117 {
4cfd81f6
PE
3118 /* READ_BUFFER contains raw 8-bit bytes and no multibyte
3119 forms. Convert it to unibyte. */
4a25e32a
PE
3120 nchars = str_as_unibyte ((unsigned char *) read_buffer,
3121 p - read_buffer);
1571601b 3122 p = read_buffer + nchars;
a742d646 3123 }
e7fc914b 3124
491f16a2 3125 return make_specified_string (read_buffer, nchars, p - read_buffer,
1571601b
KH
3126 (force_multibyte
3127 || (p - read_buffer != nchars)));
078e7b4a
JB
3128 }
3129
109d300c
JB
3130 case '.':
3131 {
109d300c
JB
3132 int next_char = READCHAR;
3133 UNREAD (next_char);
3134
035eec48 3135 if (next_char <= 040
e613ea97 3136 || (next_char < 0200
0a6a104b 3137 && strchr ("\"';([#?`,", next_char) != NULL))
109d300c 3138 {
6428369f
KH
3139 *pch = c;
3140 return Qnil;
109d300c
JB
3141 }
3142
3143 /* Otherwise, we fall through! Note that the atom-reading loop
3144 below will now loop at least once, assuring that we will not
3145 try to UNREAD two characters in a row. */
3146 }
078e7b4a 3147 default:
17634846 3148 default_label:
88852d45 3149 if (c <= 040) goto retry;
ed497dd4 3150 if (c == 0xa0) /* NBSP */
adef3de7 3151 goto retry;
52968808
AS
3152
3153 read_symbol:
078e7b4a 3154 {
38404229 3155 char *p = read_buffer;
7cded46f 3156 bool quoted = 0;
46cfea45 3157 EMACS_INT start_position = readchar_count - 1;
078e7b4a
JB
3158
3159 {
38404229 3160 char *end = read_buffer + read_buffer_size;
078e7b4a 3161
ef1b0ba7 3162 do
078e7b4a 3163 {
449fea39 3164 if (end - p < MAX_MULTIBYTE_LENGTH)
078e7b4a 3165 {
82cb60d3 3166 ptrdiff_t offset = p - read_buffer;
7216e43b 3167 if (min (PTRDIFF_MAX, SIZE_MAX) / 2 < read_buffer_size)
20270765 3168 memory_full (SIZE_MAX);
38182d90 3169 read_buffer = xrealloc (read_buffer, read_buffer_size * 2);
37d0112b 3170 read_buffer_size *= 2;
5d65df0d 3171 p = read_buffer + offset;
078e7b4a
JB
3172 end = read_buffer + read_buffer_size;
3173 }
177c0ea7 3174
078e7b4a 3175 if (c == '\\')
481c6336
RS
3176 {
3177 c = READCHAR;
4ab11c09
GM
3178 if (c == -1)
3179 end_of_file_error ();
481c6336
RS
3180 quoted = 1;
3181 }
6f7f43d5 3182
1202434b 3183 if (multibyte)
4a25e32a 3184 p += CHAR_STRING (c, (unsigned char *) p);
1202434b
KH
3185 else
3186 *p++ = c;
078e7b4a 3187 c = READCHAR;
0a6a104b
AS
3188 }
3189 while (c > 040
ed497dd4 3190 && c != 0xa0 /* NBSP */
0a6a104b
AS
3191 && (c >= 0200
3192 || strchr ("\"';()[]#`,", c) == NULL));
078e7b4a
JB
3193
3194 if (p == end)
3195 {
82cb60d3 3196 ptrdiff_t offset = p - read_buffer;
7216e43b 3197 if (min (PTRDIFF_MAX, SIZE_MAX) / 2 < read_buffer_size)
20270765 3198 memory_full (SIZE_MAX);
38182d90 3199 read_buffer = xrealloc (read_buffer, read_buffer_size * 2);
37d0112b 3200 read_buffer_size *= 2;
5d65df0d
GM
3201 p = read_buffer + offset;
3202 end = read_buffer + read_buffer_size;
078e7b4a
JB
3203 }
3204 *p = 0;
0a6a104b 3205 UNREAD (c);
078e7b4a
JB
3206 }
3207
4ad679f9 3208 if (!quoted && !uninterned_symbol)
481c6336 3209 {
452f4150
PE
3210 Lisp_Object result = string_to_number (read_buffer, 10, 0);
3211 if (! NILP (result))
8b9587d7 3212 return result;
481c6336 3213 }
abb13b09 3214 {
e93abe3d 3215 Lisp_Object name, result;
d311d28c
PE
3216 ptrdiff_t nbytes = p - read_buffer;
3217 ptrdiff_t nchars
4a25e32a
PE
3218 = (multibyte
3219 ? multibyte_chars_in_text ((unsigned char *) read_buffer,
3220 nbytes)
e93abe3d
KH
3221 : nbytes);
3222
61b108cc
SM
3223 name = ((uninterned_symbol && ! NILP (Vpurify_flag)
3224 ? make_pure_string : make_specified_string)
3225 (read_buffer, nchars, nbytes, multibyte));
e93abe3d
KH
3226 result = (uninterned_symbol ? Fmake_symbol (name)
3227 : Fintern (name, Qnil));
1202434b 3228
abb13b09
CW
3229 if (EQ (Vread_with_symbol_positions, Qt)
3230 || EQ (Vread_with_symbol_positions, readcharfun))
61b108cc
SM
3231 Vread_symbol_positions_list
3232 = Fcons (Fcons (result, make_number (start_position)),
3233 Vread_symbol_positions_list);
abb13b09
CW
3234 return result;
3235 }
078e7b4a
JB
3236 }
3237 }
3238}
3239\f
9e062b6c 3240
48def666 3241/* List of nodes we've seen during substitute_object_in_subtree. */
9e062b6c
RS
3242static Lisp_Object seen_list;
3243
3244static void
971de7fb 3245substitute_object_in_subtree (Lisp_Object object, Lisp_Object placeholder)
9e062b6c
RS
3246{
3247 Lisp_Object check_object;
3248
48def666 3249 /* We haven't seen any objects when we start. */
9e062b6c
RS
3250 seen_list = Qnil;
3251
48def666 3252 /* Make all the substitutions. */
9e062b6c
RS
3253 check_object
3254 = substitute_object_recurse (object, placeholder, object);
177c0ea7 3255
48def666 3256 /* Clear seen_list because we're done with it. */
9e062b6c
RS
3257 seen_list = Qnil;
3258
3259 /* The returned object here is expected to always eq the
48def666 3260 original. */
9e062b6c
RS
3261 if (!EQ (check_object, object))
3262 error ("Unexpected mutation error in reader");
3263}
3264
48def666 3265/* Feval doesn't get called from here, so no gc protection is needed. */
7a3d90dc
SM
3266#define SUBSTITUTE(get_val, set_val) \
3267 do { \
3268 Lisp_Object old_value = get_val; \
3269 Lisp_Object true_value \
3270 = substitute_object_recurse (object, placeholder, \
3271 old_value); \
3272 \
3273 if (!EQ (old_value, true_value)) \
3274 { \
3275 set_val; \
3276 } \
3277 } while (0)
9e062b6c
RS
3278
3279static Lisp_Object
971de7fb 3280substitute_object_recurse (Lisp_Object object, Lisp_Object placeholder, Lisp_Object subtree)
9e062b6c 3281{
48def666 3282 /* If we find the placeholder, return the target object. */
9e062b6c
RS
3283 if (EQ (placeholder, subtree))
3284 return object;
3285
48def666 3286 /* If we've been to this node before, don't explore it again. */
9e062b6c
RS
3287 if (!EQ (Qnil, Fmemq (subtree, seen_list)))
3288 return subtree;
3289
3290 /* If this node can be the entry point to a cycle, remember that
3291 we've seen it. It can only be such an entry point if it was made
3292 by #n=, which means that we can find it as a value in
3293 read_objects. */
3294 if (!EQ (Qnil, Frassq (subtree, read_objects)))
3295 seen_list = Fcons (subtree, seen_list);
177c0ea7 3296
9e062b6c
RS
3297 /* Recurse according to subtree's type.
3298 Every branch must return a Lisp_Object. */
29ab866a 3299 if (VECTORLIKEP (subtree))
9e062b6c 3300 {
29ab866a
BT
3301 ptrdiff_t i, length = 0;
3302 if (BOOL_VECTOR_P (subtree))
3303 return subtree; /* No sub-objects anyway. */
3304 else if (CHAR_TABLE_P (subtree) || SUB_CHAR_TABLE_P (subtree)
3305 || COMPILEDP (subtree) || HASH_TABLE_P (subtree))
3306 length = ASIZE (subtree) & PSEUDOVECTOR_SIZE_MASK;
3307 else if (VECTORP (subtree))
3308 length = ASIZE (subtree);
3309 else
3310 /* An unknown pseudovector may contain non-Lisp fields, so we
3311 can't just blindly traverse all its fields. We used to call
3312 `Flength' which signaled `sequencep', so I just preserved this
3313 behavior. */
3314 wrong_type_argument (Qsequencep, subtree);
3315
3316 for (i = 0; i < length; i++)
3317 SUBSTITUTE (AREF (subtree, i),
3318 ASET (subtree, i, true_value));
3319 return subtree;
3320 }
3321 else if (CONSP (subtree))
3322 {
3323 SUBSTITUTE (XCAR (subtree),
3324 XSETCAR (subtree, true_value));
3325 SUBSTITUTE (XCDR (subtree),
3326 XSETCDR (subtree, true_value));
3327 return subtree;
3328 }
3329 else if (STRINGP (subtree))
3330 {
3331 /* Check for text properties in each interval.
3332 substitute_in_interval contains part of the logic. */
177c0ea7 3333
29ab866a
BT
3334 INTERVAL root_interval = string_intervals (subtree);
3335 Lisp_Object arg = Fcons (object, placeholder);
9e062b6c 3336
29ab866a
BT
3337 traverse_intervals_noorder (root_interval,
3338 &substitute_in_interval, arg);
9e062b6c 3339
9e062b6c
RS
3340 return subtree;
3341 }
29ab866a
BT
3342 else
3343 /* Other types don't recurse any further. */
3344 return subtree;
9e062b6c
RS
3345}
3346
3347/* Helper function for substitute_object_recurse. */
3348static void
971de7fb 3349substitute_in_interval (INTERVAL interval, Lisp_Object arg)
9e062b6c
RS
3350{
3351 Lisp_Object object = Fcar (arg);
3352 Lisp_Object placeholder = Fcdr (arg);
3353
0c94c8d6 3354 SUBSTITUTE (interval->plist, set_interval_plist (interval, true_value));
9e062b6c
RS
3355}
3356
3357\f
078e7b4a
JB
3358#define LEAD_INT 1
3359#define DOT_CHAR 2
3360#define TRAIL_INT 4
452f4150 3361#define E_EXP 16
078e7b4a 3362
8b9587d7 3363
452f4150
PE
3364/* Convert STRING to a number, assuming base BASE. Return a fixnum if CP has
3365 integer syntax and fits in a fixnum, else return the nearest float if CP has
3366 either floating point or integer syntax and BASE is 10, else return nil. If
7cded46f 3367 IGNORE_TRAILING, consider just the longest prefix of CP that has
452f4150
PE
3368 valid floating point syntax. Signal an overflow if BASE is not 10 and the
3369 number has integer syntax but does not fit. */
8b9587d7
PE
3370
3371Lisp_Object
7cded46f 3372string_to_number (char const *string, int base, bool ignore_trailing)
078e7b4a 3373{
a8fe7202 3374 int state;
452f4150
PE
3375 char const *cp = string;
3376 int leading_digit;
7cded46f 3377 bool float_syntax = 0;
452f4150 3378 double value = 0;
d8578e58 3379
8b9587d7
PE
3380 /* Compute NaN and infinities using a variable, to cope with compilers that
3381 think they are smarter than we are. */
3382 double zero = 0;
3383
3384 /* Negate the value ourselves. This treats 0, NaNs, and infinity properly on
3385 IEEE floating point hosts, and works around a formerly-common bug where
3386 atof ("-0.0") drops the sign. */
7cded46f 3387 bool negative = *cp == '-';
8b9587d7 3388
7cded46f 3389 bool signedp = negative || *cp == '+';
452f4150 3390 cp += signedp;
8b9587d7 3391
078e7b4a 3392 state = 0;
078e7b4a 3393
452f4150 3394 leading_digit = digit_to_number (*cp, base);
908589fd 3395 if (leading_digit >= 0)
078e7b4a
JB
3396 {
3397 state |= LEAD_INT;
452f4150
PE
3398 do
3399 ++cp;
908589fd 3400 while (digit_to_number (*cp, base) >= 0);
078e7b4a
JB
3401 }
3402 if (*cp == '.')
3403 {
3404 state |= DOT_CHAR;
3405 cp++;
3406 }
078e7b4a 3407
452f4150 3408 if (base == 10)
eb659c41 3409 {
452f4150
PE
3410 if ('0' <= *cp && *cp <= '9')
3411 {
3412 state |= TRAIL_INT;
3413 do
3414 cp++;
3415 while ('0' <= *cp && *cp <= '9');
3416 }
3417 if (*cp == 'e' || *cp == 'E')
3418 {
3419 char const *ecp = cp;
3420 cp++;
3421 if (*cp == '+' || *cp == '-')
3422 cp++;
3423 if ('0' <= *cp && *cp <= '9')
3424 {
3425 state |= E_EXP;
3426 do
3427 cp++;
3428 while ('0' <= *cp && *cp <= '9');
3429 }
3430 else if (cp[-1] == '+'
3431 && cp[0] == 'I' && cp[1] == 'N' && cp[2] == 'F')
3432 {
3433 state |= E_EXP;
3434 cp += 3;
3435 value = 1.0 / zero;
3436 }
3437 else if (cp[-1] == '+'
3438 && cp[0] == 'N' && cp[1] == 'a' && cp[2] == 'N')
3439 {
3440 state |= E_EXP;
3441 cp += 3;
3442 value = zero / zero;
3443
3444 /* If that made a "negative" NaN, negate it. */
3445 {
3446 int i;
3447 union { double d; char c[sizeof (double)]; }
3448 u_data, u_minus_zero;
3449 u_data.d = value;
3450 u_minus_zero.d = -0.0;
3451 for (i = 0; i < sizeof (double); i++)
3452 if (u_data.c[i] & u_minus_zero.c[i])
3453 {
3454 value = -value;
3455 break;
3456 }
3457 }
3458 /* Now VALUE is a positive NaN. */
3459 }
3460 else
3461 cp = ecp;
3462 }
3463
3464 float_syntax = ((state & (DOT_CHAR|TRAIL_INT)) == (DOT_CHAR|TRAIL_INT)
3465 || state == (LEAD_INT|E_EXP));
eb659c41 3466 }
8b9587d7 3467
452f4150
PE
3468 /* Return nil if the number uses invalid syntax. If IGNORE_TRAILING, accept
3469 any prefix that matches. Otherwise, the entire string must match. */
3470 if (! (ignore_trailing
3471 ? ((state & LEAD_INT) != 0 || float_syntax)
3472 : (!*cp && ((state & ~DOT_CHAR) == LEAD_INT || float_syntax))))
3473 return Qnil;
8b9587d7 3474
d78050d6
PE
3475 /* If the number uses integer and not float syntax, and is in C-language
3476 range, use its value, preferably as a fixnum. */
908589fd 3477 if (leading_digit >= 0 && ! float_syntax)
452f4150 3478 {
d78050d6
PE
3479 uintmax_t n;
3480
3481 /* Fast special case for single-digit integers. This also avoids a
7cded46f 3482 glitch when BASE is 16 and IGNORE_TRAILING, because in that
d78050d6
PE
3483 case some versions of strtoumax accept numbers like "0x1" that Emacs
3484 does not allow. */
3485 if (digit_to_number (string[signedp + 1], base) < 0)
3486 return make_number (negative ? -leading_digit : leading_digit);
3487
3488 errno = 0;
3489 n = strtoumax (string + signedp, NULL, base);
3490 if (errno == ERANGE)
452f4150 3491 {
d78050d6
PE
3492 /* Unfortunately there's no simple and accurate way to convert
3493 non-base-10 numbers that are out of C-language range. */
3494 if (base != 10)
f14ed477 3495 xsignal1 (Qoverflow_error, build_string (string));
452f4150 3496 }
d78050d6
PE
3497 else if (n <= (negative ? -MOST_NEGATIVE_FIXNUM : MOST_POSITIVE_FIXNUM))
3498 {
3499 EMACS_INT signed_n = n;
3500 return make_number (negative ? -signed_n : signed_n);
3501 }
3502 else
3503 value = n;
452f4150 3504 }
8b9587d7 3505
452f4150
PE
3506 /* Either the number uses float syntax, or it does not fit into a fixnum.
3507 Convert it from string to floating point, unless the value is already
d78050d6
PE
3508 known because it is an infinity, a NAN, or its absolute value fits in
3509 uintmax_t. */
8b9587d7 3510 if (! value)
452f4150
PE
3511 value = atof (string + signedp);
3512
d78050d6 3513 return make_float (negative ? -value : value);
078e7b4a 3514}
cc94f3b2 3515
078e7b4a
JB
3516\f
3517static Lisp_Object
7cded46f 3518read_vector (Lisp_Object readcharfun, bool bytecodeflag)
078e7b4a 3519{
82cb60d3 3520 ptrdiff_t i, size;
7cded46f
PE
3521 Lisp_Object *ptr;
3522 Lisp_Object tem, item, vector;
078e7b4a
JB
3523 Lisp_Object len;
3524
3525 tem = read_list (1, readcharfun);
3526 len = Flength (tem);
48def666 3527 vector = Fmake_vector (len, Qnil);
078e7b4a 3528
77b37c05 3529 size = ASIZE (vector);
91f2d272 3530 ptr = XVECTOR (vector)->contents;
078e7b4a
JB
3531 for (i = 0; i < size; i++)
3532 {
c15cfd1f
RS
3533 item = Fcar (tem);
3534 /* If `load-force-doc-strings' is t when reading a lazily-loaded
3535 bytecode object, the docstring containing the bytecode and
3536 constants values must be treated as unibyte and passed to
3537 Fread, to get the actual bytecode string and constants vector. */
876c194c 3538 if (bytecodeflag && load_force_doc_strings)
c15cfd1f
RS
3539 {
3540 if (i == COMPILED_BYTECODE)
3541 {
3542 if (!STRINGP (item))
6fa2b890 3543 error ("Invalid byte code");
c15cfd1f
RS
3544
3545 /* Delay handling the bytecode slot until we know whether
3546 it is lazily-loaded (we can tell by whether the
3547 constants slot is nil). */
086ca913 3548 ASET (vector, COMPILED_CONSTANTS, item);
c15cfd1f
RS
3549 item = Qnil;
3550 }
3551 else if (i == COMPILED_CONSTANTS)
3552 {
3553 Lisp_Object bytestr = ptr[COMPILED_CONSTANTS];
3554
3555 if (NILP (item))
3556 {
3557 /* Coerce string to unibyte (like string-as-unibyte,
3558 but without generating extra garbage and
3559 guaranteeing no change in the contents). */
bee91904 3560 STRING_SET_CHARS (bytestr, SBYTES (bytestr));
d5db4077 3561 STRING_SET_UNIBYTE (bytestr);
c15cfd1f 3562
8792be66 3563 item = Fread (Fcons (bytestr, readcharfun));
c15cfd1f 3564 if (!CONSP (item))
6fa2b890 3565 error ("Invalid byte code");
c15cfd1f 3566
c1d497be
KR
3567 bytestr = XCAR (item);
3568 item = XCDR (item);
c15cfd1f
RS
3569 }
3570
3571 /* Now handle the bytecode slot. */
086ca913 3572 ASET (vector, COMPILED_BYTECODE, bytestr);
c15cfd1f 3573 }
8792be66
KH
3574 else if (i == COMPILED_DOC_STRING
3575 && STRINGP (item)
3576 && ! STRING_MULTIBYTE (item))
3577 {
3578 if (EQ (readcharfun, Qget_emacs_mule_file_char))
3579 item = Fdecode_coding_string (item, Qemacs_mule, Qnil, Qnil);
3580 else
3581 item = Fstring_as_multibyte (item);
3582 }
c15cfd1f 3583 }
086ca913 3584 ASET (vector, i, item);
078e7b4a 3585 tem = Fcdr (tem);
078e7b4a
JB
3586 }
3587 return vector;
3588}
177c0ea7 3589
f224e500 3590/* FLAG means check for ']' to terminate rather than ')' and '.'. */
078e7b4a
JB
3591
3592static Lisp_Object
7cded46f 3593read_list (bool flag, Lisp_Object readcharfun)
078e7b4a 3594{
078e7b4a 3595 Lisp_Object val, tail;
7cded46f 3596 Lisp_Object elt, tem;
078e7b4a 3597 struct gcpro gcpro1, gcpro2;
821d417e 3598 /* 0 is the normal case.
b2a30870 3599 1 means this list is a doc reference; replace it with the number 0.
177c0ea7 3600 2 means this list is a doc reference; replace it with the doc string. */
821d417e 3601 int doc_reference = 0;
078e7b4a 3602
17634846 3603 /* Initialize this to 1 if we are reading a list. */
7cded46f 3604 bool first_in_list = flag <= 0;
17634846 3605
078e7b4a
JB
3606 val = Qnil;
3607 tail = Qnil;
3608
3609 while (1)
3610 {
e28552a4 3611 int ch;
078e7b4a 3612 GCPRO2 (val, tail);
17634846 3613 elt = read1 (readcharfun, &ch, first_in_list);
078e7b4a 3614 UNGCPRO;
20ea2964 3615
17634846
RS
3616 first_in_list = 0;
3617
821d417e 3618 /* While building, if the list starts with #$, treat it specially. */
20ea2964 3619 if (EQ (elt, Vload_file_name)
d49f0c1a 3620 && ! NILP (elt)
821d417e
RS
3621 && !NILP (Vpurify_flag))
3622 {
3623 if (NILP (Vdoc_file_name))
3624 /* We have not yet called Snarf-documentation, so assume
6e911150 3625 this file is described in the DOC file
821d417e
RS
3626 and Snarf-documentation will fill in the right value later.
3627 For now, replace the whole list with 0. */
3628 doc_reference = 1;
3629 else
3630 /* We have already called Snarf-documentation, so make a relative
3631 file name for this file, so it can be found properly
3632 in the installed Lisp directory.
3633 We don't use Fexpand_file_name because that would make
3634 the directory absolute now. */
3635 elt = concat2 (build_string ("../lisp/"),
61b108cc 3636 Ffile_name_nondirectory (elt));
821d417e 3637 }
b2a30870 3638 else if (EQ (elt, Vload_file_name)
d49f0c1a 3639 && ! NILP (elt)
b2a30870
RS
3640 && load_force_doc_strings)
3641 doc_reference = 2;
20ea2964 3642
6428369f 3643 if (ch)
078e7b4a
JB
3644 {
3645 if (flag > 0)
3646 {
6428369f 3647 if (ch == ']')
078e7b4a 3648 return val;
e4d29b33 3649 invalid_syntax (") or . in a vector");
078e7b4a 3650 }
6428369f 3651 if (ch == ')')
078e7b4a 3652 return val;
6428369f 3653 if (ch == '.')
078e7b4a
JB
3654 {
3655 GCPRO2 (val, tail);
265a9e55 3656 if (!NILP (tail))
f5df591a 3657 XSETCDR (tail, read0 (readcharfun));
078e7b4a
JB
3658 else
3659 val = read0 (readcharfun);
17634846 3660 read1 (readcharfun, &ch, 0);
078e7b4a 3661 UNGCPRO;
6428369f 3662 if (ch == ')')
821d417e
RS
3663 {
3664 if (doc_reference == 1)
3665 return make_number (0);
d2e24f92 3666 if (doc_reference == 2 && INTEGERP (XCDR (val)))
b2a30870 3667 {
d2e24f92
SM
3668 char *saved = NULL;
3669 file_offset saved_position;
b2a30870 3670 /* Get a doc string from the file we are loading.
8792be66
KH
3671 If it's in saved_doc_string, get it from there.
3672
3673 Here, we don't know if the string is a
3674 bytecode string or a doc string. As a
3675 bytecode string must be unibyte, we always
3676 return a unibyte string. If it is actually a
3677 doc string, caller must make it
3678 multibyte. */
8f924df7 3679
c15cfd1f 3680 /* Position is negative for user variables. */
71376d4b 3681 EMACS_INT pos = eabs (XINT (XCDR (val)));
b2a30870
RS
3682 if (pos >= saved_doc_string_position
3683 && pos < (saved_doc_string_position
3684 + saved_doc_string_length))
3685 {
d2e24f92
SM
3686 saved = saved_doc_string;
3687 saved_position = saved_doc_string_position;
b2a30870 3688 }
c15cfd1f
RS
3689 /* Look in prev_saved_doc_string the same way. */
3690 else if (pos >= prev_saved_doc_string_position
3691 && pos < (prev_saved_doc_string_position
3692 + prev_saved_doc_string_length))
3693 {
d2e24f92
SM
3694 saved = prev_saved_doc_string;
3695 saved_position = prev_saved_doc_string_position;
3696 }
3697 if (saved)
3698 {
3699 ptrdiff_t start = pos - saved_position;
82cb60d3 3700 ptrdiff_t from, to;
c15cfd1f
RS
3701
3702 /* Process quoting with ^A,
3703 and find the end of the string,
3704 which is marked with ^_ (037). */
3705 for (from = start, to = start;
d2e24f92 3706 saved[from] != 037;)
c15cfd1f 3707 {
d2e24f92 3708 int c = saved[from++];
c15cfd1f
RS
3709 if (c == 1)
3710 {
d2e24f92
SM
3711 c = saved[from++];
3712 saved[to++] = (c == 1 ? c
3713 : c == '0' ? 0
3714 : c == '_' ? 037
3715 : c);
c15cfd1f
RS
3716 }
3717 else
d2e24f92 3718 saved[to++] = c;
c15cfd1f
RS
3719 }
3720
d2e24f92 3721 return make_unibyte_string (saved + start,
8792be66 3722 to - start);
c15cfd1f 3723 }
b2a30870 3724 else
8792be66 3725 return get_doc_string (val, 1, 0);
b2a30870
RS
3726 }
3727
821d417e
RS
3728 return val;
3729 }
e4d29b33 3730 invalid_syntax (". in wrong context");
078e7b4a 3731 }
e4d29b33 3732 invalid_syntax ("] in a list");
078e7b4a 3733 }
6c6f1994 3734 tem = list1 (elt);
265a9e55 3735 if (!NILP (tail))
f5df591a 3736 XSETCDR (tail, tem);
078e7b4a
JB
3737 else
3738 val = tem;
3739 tail = tem;
078e7b4a
JB
3740 }
3741}
3742\f
1e3890d1 3743static Lisp_Object initial_obarray;
078e7b4a 3744
5359af0e
BT
3745Lisp_Object
3746obhash (Lisp_Object obarray)
3747{
3748 Lisp_Object tem = scm_hashq_get_handle (obarrays, obarray);
3749 if (SCM_UNLIKELY (scm_is_false (tem)))
3750 tem = scm_hashq_create_handle_x (obarrays, obarray,
3751 scm_make_obarray ());
3752 return scm_cdr (tem);
3753}
d007f5c8 3754
d007f5c8
RS
3755/* Get an error if OBARRAY is not an obarray.
3756 If it is one, return it. */
3757
078e7b4a 3758Lisp_Object
971de7fb 3759check_obarray (Lisp_Object obarray)
078e7b4a 3760{
77b37c05 3761 if (!VECTORP (obarray) || ASIZE (obarray) == 0)
078e7b4a
JB
3762 {
3763 /* If Vobarray is now invalid, force it to be valid. */
3764 if (EQ (Vobarray, obarray)) Vobarray = initial_obarray;
8878319c 3765 wrong_type_argument (Qvectorp, obarray);
078e7b4a
JB
3766 }
3767 return obarray;
3768}
3769
d007f5c8
RS
3770/* Intern the C string STR: return a symbol with that name,
3771 interned in the current obarray. */
078e7b4a
JB
3772
3773Lisp_Object
e8df9267 3774intern_1 (const char *str, ptrdiff_t len)
078e7b4a 3775{
66d2ddd5 3776 return Fintern (make_string (str, len), Qnil);
078e7b4a 3777}
4ad679f9 3778
5e2327cf 3779Lisp_Object
e8df9267 3780intern_c_string_1 (const char *str, ptrdiff_t len)
5e2327cf 3781{
66d2ddd5
BT
3782 return Fintern (make_pure_c_string (str, len), Qnil);
3783}
3784\f
3785DEFUN ("find-symbol", Ffind_symbol, Sfind_symbol, 1, 2, 0,
3786 doc: /* find-symbol */)
3787 (Lisp_Object string, Lisp_Object obarray)
3788{
3789 Lisp_Object tem, sstring, found;
5e2327cf 3790
66d2ddd5
BT
3791 obarray = check_obarray (NILP (obarray) ? Vobarray : obarray);
3792 CHECK_STRING (string);
5e2327cf 3793
66d2ddd5
BT
3794 sstring = scm_from_utf8_stringn (SSDATA (string), SBYTES (string));
3795 tem = scm_find_symbol (sstring, obhash (obarray));
ec8b67a4 3796 if (scm_is_true (tem))
66d2ddd5
BT
3797 {
3798 if (EQ (tem, Qnil_))
3799 tem = Qnil;
3800 else if (EQ (tem, Qt_))
3801 tem = Qt;
3802 return scm_values (scm_list_2 (tem, Qt));
3803 }
3804 else
3805 return scm_values (scm_list_2 (Qnil, Qnil));
5e2327cf 3806}
66d2ddd5 3807
a7ca3326 3808DEFUN ("intern", Fintern, Sintern, 1, 2, 0,
5de38842
PJ
3809 doc: /* Return the canonical symbol whose name is STRING.
3810If there is none, one is created by this function and returned.
3811A second optional argument specifies the obarray to use;
3812it defaults to the value of `obarray'. */)
5842a27b 3813 (Lisp_Object string, Lisp_Object obarray)
078e7b4a
JB
3814{
3815 register Lisp_Object tem, sym, *ptr;
3816
265a9e55 3817 if (NILP (obarray)) obarray = Vobarray;
078e7b4a
JB
3818 obarray = check_obarray (obarray);
3819
b7826503 3820 CHECK_STRING (string);
078e7b4a 3821
66d2ddd5
BT
3822 tem = Ffind_symbol (string, obarray);
3823 if (! NILP (scm_c_value_ref (tem, 1)))
3824 return scm_c_value_ref (tem, 0);
5359af0e
BT
3825
3826 sym = scm_intern (scm_from_utf8_stringn (SSDATA (string),
3827 SBYTES (string)),
3828 obhash (obarray));
44c6c019 3829
d5db4077 3830 if ((SREF (string, 0) == ':')
a458d45d 3831 && EQ (obarray, initial_obarray))
44c6c019 3832 {
db633ecc
BT
3833 SET_SYMBOL_CONSTANT (XSYMBOL (sym), 1);
3834 SET_SYMBOL_REDIRECT (XSYMBOL (sym), SYMBOL_PLAINVAL);
ce5b453a 3835 SET_SYMBOL_VAL (XSYMBOL (sym), sym);
44c6c019 3836 }
a0549832 3837
66d2ddd5 3838 return sym;
078e7b4a
JB
3839}
3840
a7ca3326 3841DEFUN ("intern-soft", Fintern_soft, Sintern_soft, 1, 2, 0,
5de38842
PJ
3842 doc: /* Return the canonical symbol named NAME, or nil if none exists.
3843NAME may be a string or a symbol. If it is a symbol, that exact
3844symbol is searched for.
3845A second optional argument specifies the obarray to use;
3846it defaults to the value of `obarray'. */)
5842a27b 3847 (Lisp_Object name, Lisp_Object obarray)
078e7b4a 3848{
66d2ddd5 3849 register Lisp_Object tem, string, mv, found;
078e7b4a 3850
66d2ddd5
BT
3851 string = SYMBOLP (name) ? SYMBOL_NAME (name) : name;
3852 mv = Ffind_symbol (string, obarray);
3853 tem = scm_c_value_ref (mv, 0);
3854 found = scm_c_value_ref (mv, 1);
078e7b4a 3855
66d2ddd5 3856 if (NILP (found) || (SYMBOLP (name) && !EQ (name, tem)))
b55048d4
GM
3857 return Qnil;
3858 else
078e7b4a 3859 return tem;
078e7b4a 3860}
d007f5c8 3861\f
a7ca3326 3862DEFUN ("unintern", Funintern, Sunintern, 1, 2, 0,
5de38842
PJ
3863 doc: /* Delete the symbol named NAME, if any, from OBARRAY.
3864The value is t if a symbol was found and deleted, nil otherwise.
3865NAME may be a string or a symbol. If it is a symbol, that symbol
3866is deleted, if it belongs to OBARRAY--no other symbol is deleted.
0e46275b
JB
3867OBARRAY, if nil, defaults to the value of the variable `obarray'.
3868usage: (unintern NAME OBARRAY) */)
5842a27b 3869 (Lisp_Object name, Lisp_Object obarray)
d007f5c8 3870{
5359af0e
BT
3871 Lisp_Object string;
3872 Lisp_Object tem;
d007f5c8 3873
5359af0e
BT
3874 if (NILP (obarray))
3875 obarray = Vobarray;
d007f5c8
RS
3876 obarray = check_obarray (obarray);
3877
3878 if (SYMBOLP (name))
b2a30870 3879 {
5359af0e
BT
3880 if (! EQ (name,
3881 scm_find_symbol (scm_symbol_to_string (name),
3882 obhash (obarray))))
3883 return Qnil;
3884 string = SYMBOL_NAME (name);
b2a30870 3885 }
d007f5c8
RS
3886 else
3887 {
5359af0e
BT
3888 CHECK_STRING (name);
3889 string = name;
3890
d007f5c8
RS
3891 }
3892
5359af0e 3893 return (scm_is_true (scm_unintern (name, obhash (obarray))) ? Qt : Qnil);
d007f5c8
RS
3894}
3895\f
078e7b4a 3896void
971de7fb 3897map_obarray (Lisp_Object obarray, void (*fn) (Lisp_Object, Lisp_Object), Lisp_Object arg)
078e7b4a 3898{
5359af0e
BT
3899 Lisp_Object proc (Lisp_Object sym)
3900 {
3901 Lisp_Object tem = Ffind_symbol (SYMBOL_NAME (sym), obarray);
3902 if (scm_is_true (scm_c_value_ref (tem, 1))
3903 && EQ (sym, scm_c_value_ref (tem, 0)))
3904 fn (sym, arg);
3905 return SCM_UNSPECIFIED;
3906 }
b7826503 3907 CHECK_VECTOR (obarray);
5359af0e
BT
3908 scm_obarray_for_each (scm_c_make_gsubr ("proc", 1, 0, 0, proc),
3909 obhash (obarray));
078e7b4a
JB
3910}
3911
7d383292 3912static void
971de7fb 3913mapatoms_1 (Lisp_Object sym, Lisp_Object function)
078e7b4a
JB
3914{
3915 call1 (function, sym);
3916}
3917
3918DEFUN ("mapatoms", Fmapatoms, Smapatoms, 1, 2, 0,
5de38842
PJ
3919 doc: /* Call FUNCTION on every symbol in OBARRAY.
3920OBARRAY defaults to the value of `obarray'. */)
5842a27b 3921 (Lisp_Object function, Lisp_Object obarray)
078e7b4a 3922{
265a9e55 3923 if (NILP (obarray)) obarray = Vobarray;
078e7b4a
JB
3924 obarray = check_obarray (obarray);
3925
3926 map_obarray (obarray, mapatoms_1, function);
3927 return Qnil;
3928}
3929
5e88a39e 3930#define OBARRAY_SIZE 1511
078e7b4a
JB
3931
3932void
971de7fb 3933init_obarray (void)
078e7b4a
JB
3934{
3935 Lisp_Object oblength;
37d0112b 3936 ptrdiff_t size = 100 + MAX_MULTIBYTE_LENGTH;
078e7b4a 3937
baf69866 3938 XSETFASTINT (oblength, OBARRAY_SIZE);
078e7b4a 3939
078e7b4a
JB
3940 Vobarray = Fmake_vector (oblength, make_number (0));
3941 initial_obarray = Vobarray;
3942 staticpro (&initial_obarray);
078e7b4a 3943
5359af0e
BT
3944 obarrays = scm_make_hash_table (SCM_UNDEFINED);
3945 scm_hashq_set_x (obarrays, Vobarray, SCM_UNDEFINED);
3946
6bc48005
BT
3947 Qnil = SCM_ELISP_NIL;
3948 Qt = SCM_BOOL_T;
3949
3950 Qnil_ = intern_c_string ("nil");
3951 SET_SYMBOL_VAL (XSYMBOL (Qnil_), Qnil);
db633ecc
BT
3952 SET_SYMBOL_CONSTANT (XSYMBOL (Qnil_), 1);
3953 SET_SYMBOL_DECLARED_SPECIAL (XSYMBOL (Qnil_), 1);
ce5b453a 3954
6bc48005
BT
3955 Qt_ = intern_c_string ("t");
3956 SET_SYMBOL_VAL (XSYMBOL (Qt_), Qt);
db633ecc
BT
3957 SET_SYMBOL_CONSTANT (XSYMBOL (Qt_), 1);
3958 SET_SYMBOL_DECLARED_SPECIAL (XSYMBOL (Qt_), 1);
6bc48005 3959
ec8b67a4 3960 Qunbound = scm_c_public_ref ("language elisp runtime", "unbound");
ce5b453a 3961 SET_SYMBOL_VAL (XSYMBOL (Qunbound), Qunbound);
078e7b4a
JB
3962
3963 /* Qt is correct even if CANNOT_DUMP. loadup.el will set to nil at end. */
3964 Vpurify_flag = Qt;
3965
cd3520a4 3966 DEFSYM (Qvariable_documentation, "variable-documentation");
078e7b4a 3967
a0a9ac13 3968 read_buffer = xmalloc_atomic (size);
37d0112b 3969 read_buffer_size = size;
078e7b4a
JB
3970}
3971\f
3972void
b7faa6e4 3973defsubr (const char *lname, scm_t_subr gsubr_fn, short min_args, short max_args, const char *intspec)
078e7b4a 3974{
b7faa6e4
BT
3975 Lisp_Object sym = intern_c_string (lname);
3976 Lisp_Object fn;
3977 switch (max_args)
3978 {
3979 case MANY:
3980 fn = scm_c_make_gsubr (lname, 0, 0, 1, gsubr_fn);
3981 break;
3982 case UNEVALLED:
3983 fn = Fcons (Qspecial_operator,
3984 scm_c_make_gsubr (lname, 0, 0, 1, gsubr_fn));
3985 break;
3986 default:
3987 fn = scm_c_make_gsubr (lname, min_args, max_args - min_args, 0, gsubr_fn);
3988 break;
3989 }
3990 set_symbol_function (sym, fn);
3991 if (intspec)
3992 {
3993 Lisp_Object tem = ((*intspec != '(')
3994 ? build_string (intspec)
3995 : Fcar (Fread_from_string (build_string (intspec),
3996 Qnil, Qnil)));
3997 scm_set_procedure_property_x (fn, Qinteractive_form, tem);
3998 }
078e7b4a
JB
3999}
4000
039c6cc3 4001/* Define an "integer variable"; a symbol whose value is forwarded to a
82cb60d3 4002 C variable of type EMACS_INT. Sample call (with "xx" to fool make-docfile):
039c6cc3 4003 DEFxxVAR_INT ("emacs-priority", &emacs_priority, "Documentation"); */
078e7b4a 4004void
ce5b453a
SM
4005defvar_int (struct Lisp_Intfwd *i_fwd,
4006 const char *namestring, EMACS_INT *address)
078e7b4a 4007{
ce5b453a 4008 Lisp_Object sym;
5e2327cf 4009 sym = intern_c_string (namestring);
ce5b453a
SM
4010 i_fwd->type = Lisp_Fwd_Int;
4011 i_fwd->intvar = address;
db633ecc
BT
4012 SET_SYMBOL_DECLARED_SPECIAL (XSYMBOL (sym), 1);
4013 SET_SYMBOL_REDIRECT (XSYMBOL (sym), SYMBOL_FORWARDED);
ce5b453a 4014 SET_SYMBOL_FWD (XSYMBOL (sym), (union Lisp_Fwd *)i_fwd);
078e7b4a
JB
4015}
4016
f0529b5b 4017/* Similar but define a variable whose value is t if address contains 1,
0f011df0 4018 nil if address contains 0. */
078e7b4a 4019void
ce5b453a 4020defvar_bool (struct Lisp_Boolfwd *b_fwd,
f5d9e83a 4021 const char *namestring, bool *address)
078e7b4a 4022{
ce5b453a 4023 Lisp_Object sym;
5e2327cf 4024 sym = intern_c_string (namestring);
ce5b453a
SM
4025 b_fwd->type = Lisp_Fwd_Bool;
4026 b_fwd->boolvar = address;
db633ecc
BT
4027 SET_SYMBOL_DECLARED_SPECIAL (XSYMBOL (sym), 1);
4028 SET_SYMBOL_REDIRECT (XSYMBOL (sym), SYMBOL_FORWARDED);
ce5b453a 4029 SET_SYMBOL_FWD (XSYMBOL (sym), (union Lisp_Fwd *)b_fwd);
1ffcc3b1 4030 Vbyte_boolean_vars = Fcons (sym, Vbyte_boolean_vars);
078e7b4a
JB
4031}
4032
1a0f90f7
KH
4033/* Similar but define a variable whose value is the Lisp Object stored
4034 at address. Two versions: with and without gc-marking of the C
4035 variable. The nopro version is used when that variable will be
4036 gc-marked for some other reason, since marking the same slot twice
4037 can cause trouble with strings. */
078e7b4a 4038void
ce5b453a
SM
4039defvar_lisp_nopro (struct Lisp_Objfwd *o_fwd,
4040 const char *namestring, Lisp_Object *address)
078e7b4a 4041{
ce5b453a 4042 Lisp_Object sym;
5e2327cf 4043 sym = intern_c_string (namestring);
ce5b453a
SM
4044 o_fwd->type = Lisp_Fwd_Obj;
4045 o_fwd->objvar = address;
db633ecc
BT
4046 SET_SYMBOL_DECLARED_SPECIAL (XSYMBOL (sym), 1);
4047 SET_SYMBOL_REDIRECT (XSYMBOL (sym), SYMBOL_FORWARDED);
ce5b453a 4048 SET_SYMBOL_FWD (XSYMBOL (sym), (union Lisp_Fwd *)o_fwd);
078e7b4a
JB
4049}
4050
078e7b4a 4051void
ce5b453a
SM
4052defvar_lisp (struct Lisp_Objfwd *o_fwd,
4053 const char *namestring, Lisp_Object *address)
078e7b4a 4054{
ce5b453a 4055 defvar_lisp_nopro (o_fwd, namestring, address);
1a0f90f7 4056 staticpro (address);
078e7b4a
JB
4057}
4058
950c215d 4059/* Similar but define a variable whose value is the Lisp Object stored
4ac38690 4060 at a particular offset in the current kboard object. */
950c215d
KH
4061
4062void
ce5b453a
SM
4063defvar_kboard (struct Lisp_Kboard_Objfwd *ko_fwd,
4064 const char *namestring, int offset)
950c215d 4065{
ce5b453a 4066 Lisp_Object sym;
5e2327cf 4067 sym = intern_c_string (namestring);
ce5b453a
SM
4068 ko_fwd->type = Lisp_Fwd_Kboard_Obj;
4069 ko_fwd->offset = offset;
db633ecc
BT
4070 SET_SYMBOL_DECLARED_SPECIAL (XSYMBOL (sym), 1);
4071 SET_SYMBOL_REDIRECT (XSYMBOL (sym), SYMBOL_FORWARDED);
ce5b453a 4072 SET_SYMBOL_FWD (XSYMBOL (sym), (union Lisp_Fwd *)ko_fwd);
950c215d 4073}
078e7b4a 4074\f
17e0445b 4075/* Check that the elements of lpath exist. */
929e7845 4076
b3350bf9 4077static void
17e0445b 4078load_path_check (Lisp_Object lpath)
929e7845
GM
4079{
4080 Lisp_Object path_tail;
4081
4082 /* The only elements that might not exist are those from
4083 PATH_LOADSEARCH, EMACSLOADPATH. Anything else is only added if
4084 it exists. */
17e0445b 4085 for (path_tail = lpath; !NILP (path_tail); path_tail = XCDR (path_tail))
929e7845
GM
4086 {
4087 Lisp_Object dirfile;
4088 dirfile = Fcar (path_tail);
4089 if (STRINGP (dirfile))
4090 {
4091 dirfile = Fdirectory_file_name (dirfile);
73dcdb9f
PE
4092 if (! file_accessible_directory_p (SSDATA (dirfile)))
4093 dir_warning ("Lisp directory", XCAR (path_tail));
929e7845
GM
4094 }
4095 }
4096}
4097
17e0445b
GM
4098/* Return the default load-path, to be used if EMACSLOADPATH is unset.
4099 This does not include the standard site-lisp directories
4100 under the installation prefix (i.e., PATH_SITELOADSEARCH),
4101 but it does (unless no_site_lisp is set) include site-lisp
4102 directories in the source/build directories if those exist and we
4103 are running uninstalled.
4104
4105 Uses the following logic:
4106 If CANNOT_DUMP: Use PATH_LOADSEARCH.
929e7845
GM
4107 The remainder is what happens when dumping works:
4108 If purify-flag (ie dumping) just use PATH_DUMPLOADSEARCH.
17e0445b 4109 Otherwise use PATH_LOADSEARCH.
929e7845 4110
06a4f110
GM
4111 If !initialized, then just return PATH_DUMPLOADSEARCH.
4112 If initialized:
929e7845
GM
4113 If Vinstallation_directory is not nil (ie, running uninstalled):
4114 If installation-dir/lisp exists and not already a member,
4115 we must be running uninstalled. Reset the load-path
4116 to just installation-dir/lisp. (The default PATH_LOADSEARCH
4117 refers to the eventual installation directories. Since we
4118 are not yet installed, we should not use them, even if they exist.)
06a4f110
GM
4119 If installation-dir/lisp does not exist, just add
4120 PATH_DUMPLOADSEARCH at the end instead.
929e7845
GM
4121 Add installation-dir/site-lisp (if !no_site_lisp, and exists
4122 and not already a member) at the front.
4123 If installation-dir != source-dir (ie running an uninstalled,
4124 out-of-tree build) AND install-dir/src/Makefile exists BUT
4125 install-dir/src/Makefile.in does NOT exist (this is a sanity
cb6c95a3 4126 check), then repeat the above steps for source-dir/lisp, site-lisp. */
4aaf6b61
PE
4127
4128static Lisp_Object
dc7909c4 4129load_path_default (void)
078e7b4a 4130{
17e0445b 4131 Lisp_Object lpath = Qnil;
8ea90aa3 4132 const char *normal;
ca26824c 4133
46947372 4134#ifdef CANNOT_DUMP
9e059e3f
GM
4135#ifdef HAVE_NS
4136 const char *loadpath = ns_load_path ();
4137#endif
4138
46947372 4139 normal = PATH_LOADSEARCH;
9e059e3f 4140#ifdef HAVE_NS
17e0445b 4141 lpath = decode_env_path (0, loadpath ? loadpath : normal, 0);
9e059e3f 4142#else
17e0445b 4143 lpath = decode_env_path (0, normal, 0);
9e059e3f 4144#endif
929e7845 4145
76151e2c 4146#else /* !CANNOT_DUMP */
17e0445b
GM
4147
4148 normal = NILP (Vpurify_flag) ? PATH_LOADSEARCH : PATH_DUMPLOADSEARCH;
279499f0 4149
4746118a
JB
4150 if (initialized)
4151 {
9e059e3f 4152#ifdef HAVE_NS
06a4f110
GM
4153 const char *loadpath = ns_load_path ();
4154 lpath = decode_env_path (0, loadpath ? loadpath : normal, 0);
9e059e3f 4155#else
06a4f110 4156 lpath = decode_env_path (0, normal, 0);
9e059e3f 4157#endif
06a4f110
GM
4158 if (!NILP (Vinstallation_directory))
4159 {
4160 Lisp_Object tem, tem1;
4161
4162 /* Add to the path the lisp subdir of the installation
4163 dir, if it is accessible. Note: in out-of-tree builds,
4164 this directory is empty save for Makefile. */
4165 tem = Fexpand_file_name (build_string ("lisp"),
4166 Vinstallation_directory);
4167 tem1 = Ffile_accessible_directory_p (tem);
4168 if (!NILP (tem1))
4169 {
4170 if (NILP (Fmember (tem, lpath)))
4171 {
4172 /* We are running uninstalled. The default load-path
4173 points to the eventual installed lisp directories.
4174 We should not use those now, even if they exist,
4175 so start over from a clean slate. */
4176 lpath = list1 (tem);
4177 }
4178 }
4179 else
4180 /* That dir doesn't exist, so add the build-time
4181 Lisp dirs instead. */
17e0445b 4182 {
06a4f110
GM
4183 Lisp_Object dump_path =
4184 decode_env_path (0, PATH_DUMPLOADSEARCH, 0);
4185 lpath = nconc2 (lpath, dump_path);
4186 }
ca26824c 4187
06a4f110
GM
4188 /* Add site-lisp under the installation dir, if it exists. */
4189 if (!no_site_lisp)
4190 {
4191 tem = Fexpand_file_name (build_string ("site-lisp"),
ca26824c 4192 Vinstallation_directory);
73dcdb9f 4193 tem1 = Ffile_accessible_directory_p (tem);
ca26824c
GM
4194 if (!NILP (tem1))
4195 {
17e0445b 4196 if (NILP (Fmember (tem, lpath)))
06a4f110 4197 lpath = Fcons (tem, lpath);
ca26824c 4198 }
06a4f110 4199 }
ca26824c 4200
06a4f110
GM
4201 /* If Emacs was not built in the source directory,
4202 and it is run from where it was built, add to load-path
4203 the lisp and site-lisp dirs under that directory. */
ca26824c 4204
06a4f110
GM
4205 if (NILP (Fequal (Vinstallation_directory, Vsource_directory)))
4206 {
4207 Lisp_Object tem2;
4208
4209 tem = Fexpand_file_name (build_string ("src/Makefile"),
4210 Vinstallation_directory);
4211 tem1 = Ffile_exists_p (tem);
ca26824c 4212
06a4f110
GM
4213 /* Don't be fooled if they moved the entire source tree
4214 AFTER dumping Emacs. If the build directory is indeed
4215 different from the source dir, src/Makefile.in and
4216 src/Makefile will not be found together. */
4217 tem = Fexpand_file_name (build_string ("src/Makefile.in"),
4218 Vinstallation_directory);
4219 tem2 = Ffile_exists_p (tem);
4220 if (!NILP (tem1) && NILP (tem2))
ca26824c 4221 {
06a4f110
GM
4222 tem = Fexpand_file_name (build_string ("lisp"),
4223 Vsource_directory);
ca26824c 4224
06a4f110
GM
4225 if (NILP (Fmember (tem, lpath)))
4226 lpath = Fcons (tem, lpath);
ca26824c 4227
06a4f110
GM
4228 if (!no_site_lisp)
4229 {
4230 tem = Fexpand_file_name (build_string ("site-lisp"),
4231 Vsource_directory);
4232 tem1 = Ffile_accessible_directory_p (tem);
4233 if (!NILP (tem1))
ca26824c 4234 {
06a4f110
GM
4235 if (NILP (Fmember (tem, lpath)))
4236 lpath = Fcons (tem, lpath);
ca26824c
GM
4237 }
4238 }
06a4f110
GM
4239 }
4240 } /* Vinstallation_directory != Vsource_directory */
929e7845 4241
06a4f110 4242 } /* if Vinstallation_directory */
4746118a 4243 }
9d8d07e5 4244 else /* !initialized */
11938f10 4245 {
929e7845
GM
4246 /* NORMAL refers to PATH_DUMPLOADSEARCH, ie the lisp dir in the
4247 source directory. We used to add ../lisp (ie the lisp dir in
06a4f110
GM
4248 the build directory) at the front here, but that should not
4249 be necessary, since in out of tree builds lisp/ is empty, save
929e7845 4250 for Makefile. */
17e0445b 4251 lpath = decode_env_path (0, normal, 0);
11938f10 4252 }
17e0445b
GM
4253#endif /* !CANNOT_DUMP */
4254
4255 return lpath;
4256}
4257
4258void
4259init_lread (void)
4260{
4261 /* First, set Vload_path. */
4262
8fb8c4f3
PE
4263 /* Ignore EMACSLOADPATH when dumping. */
4264#ifdef CANNOT_DUMP
4265 bool use_loadpath = true;
4266#else
f952002e 4267 bool use_loadpath = NILP (Vpurify_flag);
8fb8c4f3
PE
4268#endif
4269
4270 if (use_loadpath && egetenv ("EMACSLOADPATH"))
17e0445b 4271 {
06a4f110 4272 Vload_path = decode_env_path ("EMACSLOADPATH", 0, 1);
17e0445b
GM
4273
4274 /* Check (non-nil) user-supplied elements. */
06a4f110 4275 load_path_check (Vload_path);
17e0445b 4276
310294a3
GM
4277 /* If no nils in the environment variable, use as-is.
4278 Otherwise, replace any nils with the default. */
06a4f110 4279 if (! NILP (Fmemq (Qnil, Vload_path)))
17e0445b 4280 {
06a4f110
GM
4281 Lisp_Object elem, elpath = Vload_path;
4282 Lisp_Object default_lpath = load_path_default ();
17e0445b
GM
4283
4284 /* Check defaults, before adding site-lisp. */
4285 load_path_check (default_lpath);
4286
4287 /* Add the site-lisp directories to the front of the default. */
4288 if (!no_site_lisp)
4289 {
4290 Lisp_Object sitelisp;
4291 sitelisp = decode_env_path (0, PATH_SITELOADSEARCH, 0);
4292 if (! NILP (sitelisp))
4293 default_lpath = nconc2 (sitelisp, default_lpath);
4294 }
4295
4296 Vload_path = Qnil;
4297
4298 /* Replace nils from EMACSLOADPATH by default. */
310294a3 4299 while (CONSP (elpath))
17e0445b
GM
4300 {
4301 Lisp_Object arg[2];
310294a3
GM
4302 elem = XCAR (elpath);
4303 elpath = XCDR (elpath);
17e0445b
GM
4304 arg[0] = Vload_path;
4305 arg[1] = NILP (elem) ? default_lpath : Fcons (elem, Qnil);
4306 Vload_path = Fappend (2, arg);
4307 }
4308 } /* Fmemq (Qnil, Vload_path) */
4309 }
f952002e 4310 else
17e0445b 4311 {
06a4f110 4312 Vload_path = load_path_default ();
17e0445b
GM
4313
4314 /* Check before adding site-lisp directories.
4315 The install should have created them, but they are not
4316 required, so no need to warn if they are absent.
4317 Or we might be running before installation. */
4318 load_path_check (Vload_path);
4319
06a4f110
GM
4320 /* Add the site-lisp directories at the front. */
4321 if (initialized && !no_site_lisp)
17e0445b
GM
4322 {
4323 Lisp_Object sitelisp;
4324 sitelisp = decode_env_path (0, PATH_SITELOADSEARCH, 0);
4325 if (! NILP (sitelisp)) Vload_path = nconc2 (sitelisp, Vload_path);
4326 }
f952002e 4327 }
279499f0 4328
279499f0
JB
4329 Vvalues = Qnil;
4330
078e7b4a 4331 load_in_progress = 0;
4e53f562 4332 Vload_file_name = Qnil;
8f6b0411 4333 Vstandard_input = Qt;
f74b0705 4334 Vloads_in_progress = Qnil;
078e7b4a
JB
4335}
4336
73dcdb9f
PE
4337/* Print a warning that directory intended for use USE and with name
4338 DIRNAME cannot be accessed. On entry, errno should correspond to
4339 the access failure. Print the warning on stderr and put it in
4340 *Messages*. */
85496b8c 4341
d5b28a9d 4342void
73dcdb9f 4343dir_warning (char const *use, Lisp_Object dirname)
85496b8c 4344{
73dcdb9f
PE
4345 static char const format[] = "Warning: %s `%s': %s\n";
4346 int access_errno = errno;
4347 fprintf (stderr, format, use, SSDATA (dirname), strerror (access_errno));
0df02bf3 4348
48def666 4349 /* Don't log the warning before we've initialized!! */
9b69357e 4350 if (initialized)
0df02bf3 4351 {
73dcdb9f 4352 char const *diagnostic = emacs_strerror (access_errno);
0df02bf3 4353 USE_SAFE_ALLOCA;
73dcdb9f
PE
4354 char *buffer = SAFE_ALLOCA (sizeof format - 3 * (sizeof "%s" - 1)
4355 + strlen (use) + SBYTES (dirname)
4356 + strlen (diagnostic));
4357 ptrdiff_t message_len = esprintf (buffer, format, use, SSDATA (dirname),
4358 diagnostic);
0df02bf3
PE
4359 message_dolog (buffer, message_len, 0, STRING_MULTIBYTE (dirname));
4360 SAFE_FREE ();
4361 }
85496b8c
RS
4362}
4363
078e7b4a 4364void
971de7fb 4365syms_of_lread (void)
078e7b4a 4366{
172a66a1 4367#include "lread.x"
078e7b4a 4368
29208e82 4369 DEFVAR_LISP ("obarray", Vobarray,
5de38842
PJ
4370 doc: /* Symbol table for use by `intern' and `read'.
4371It is a vector whose length ought to be prime for best results.
4372The vector's contents don't make sense if examined from Lisp programs;
4373to find all the symbols in an obarray, use `mapatoms'. */);
078e7b4a 4374
29208e82 4375 DEFVAR_LISP ("values", Vvalues,
5de38842 4376 doc: /* List of values of all expressions which were read, evaluated and printed.
513749ee 4377 Order is reverse chronological. */);
db633ecc 4378 SET_SYMBOL_DECLARED_SPECIAL (XSYMBOL (intern ("values")), 0);
078e7b4a 4379
29208e82 4380 DEFVAR_LISP ("standard-input", Vstandard_input,
5de38842
PJ
4381 doc: /* Stream for read to get input from.
4382See documentation of `read' for possible values. */);
078e7b4a
JB
4383 Vstandard_input = Qt;
4384
29208e82 4385 DEFVAR_LISP ("read-with-symbol-positions", Vread_with_symbol_positions,
abb13b09
CW
4386 doc: /* If non-nil, add position of read symbols to `read-symbol-positions-list'.
4387
4388If this variable is a buffer, then only forms read from that buffer
4389will be added to `read-symbol-positions-list'.
4390If this variable is t, then all read forms will be added.
4391The effect of all other values other than nil are not currently
4392defined, although they may be in the future.
4393
4394The positions are relative to the last call to `read' or
4395`read-from-string'. It is probably a bad idea to set this variable at
513749ee 4396the toplevel; bind it instead. */);
abb13b09
CW
4397 Vread_with_symbol_positions = Qnil;
4398
29208e82 4399 DEFVAR_LISP ("read-symbol-positions-list", Vread_symbol_positions_list,
d6567030 4400 doc: /* A list mapping read symbols to their positions.
abb13b09
CW
4401This variable is modified during calls to `read' or
4402`read-from-string', but only when `read-with-symbol-positions' is
4403non-nil.
4404
4405Each element of the list looks like (SYMBOL . CHAR-POSITION), where
d6567030 4406CHAR-POSITION is an integer giving the offset of that occurrence of the
abb13b09
CW
4407symbol from the position where `read' or `read-from-string' started.
4408
4409Note that a symbol will appear multiple times in this list, if it was
4410read multiple times. The list is in the same order as the symbols
513749ee 4411were read in. */);
177c0ea7 4412 Vread_symbol_positions_list = Qnil;
abb13b09 4413
29208e82 4414 DEFVAR_LISP ("read-circle", Vread_circle,
91f68422
CY
4415 doc: /* Non-nil means read recursive structures using #N= and #N# syntax. */);
4416 Vread_circle = Qt;
4417
29208e82 4418 DEFVAR_LISP ("load-path", Vload_path,
fb7ada5f 4419 doc: /* List of directories to search for files to load.
17e0445b
GM
4420Each element is a string (directory name) or nil (meaning `default-directory').
4421Initialized during startup as described in Info node `(elisp)Library Search'. */);
078e7b4a 4422
29208e82 4423 DEFVAR_LISP ("load-suffixes", Vload_suffixes,
971a4293
LT
4424 doc: /* List of suffixes for (compiled or source) Emacs Lisp files.
4425This list should not include the empty string.
4426`load' and related functions try to append these suffixes, in order,
4427to the specified file name if a Lisp suffix is allowed or required. */);
6c6f1994
PE
4428 Vload_suffixes = list2 (build_pure_c_string (".elc"),
4429 build_pure_c_string (".el"));
29208e82 4430 DEFVAR_LISP ("load-file-rep-suffixes", Vload_file_rep_suffixes,
971a4293
LT
4431 doc: /* List of suffixes that indicate representations of \
4432the same file.
4433This list should normally start with the empty string.
4434
4435Enabling Auto Compression mode appends the suffixes in
4436`jka-compr-load-suffixes' to this list and disabling Auto Compression
4437mode removes them again. `load' and related functions use this list to
4438determine whether they should look for compressed versions of a file
4439and, if so, which suffixes they should try to append to the file name
4440in order to do so. However, if you want to customize which suffixes
4441the loading functions recognize as compression suffixes, you should
4442customize `jka-compr-load-suffixes' rather than the present variable. */);
6c6f1994 4443 Vload_file_rep_suffixes = list1 (empty_unibyte_string);
e61b9b87 4444
29208e82 4445 DEFVAR_BOOL ("load-in-progress", load_in_progress,
e0f24100 4446 doc: /* Non-nil if inside of `load'. */);
cd3520a4 4447 DEFSYM (Qload_in_progress, "load-in-progress");
078e7b4a 4448
29208e82 4449 DEFVAR_LISP ("after-load-alist", Vafter_load_alist,
de0503df
SM
4450 doc: /* An alist of functions to be evalled when particular files are loaded.
4451Each element looks like (REGEXP-OR-FEATURE FUNCS...).
6bb6da3e
AM
4452
4453REGEXP-OR-FEATURE is either a regular expression to match file names, or
4454a symbol \(a feature name).
4455
4456When `load' is run and the file-name argument matches an element's
4457REGEXP-OR-FEATURE, or when `provide' is run and provides the symbol
de0503df 4458REGEXP-OR-FEATURE, the FUNCS in the element are called.
6bb6da3e
AM
4459
4460An error in FORMS does not undo the load, but does prevent execution of
4461the rest of the FORMS. */);
078e7b4a
JB
4462 Vafter_load_alist = Qnil;
4463
29208e82 4464 DEFVAR_LISP ("load-history", Vload_history,
4801c5fa
CY
4465 doc: /* Alist mapping loaded file names to symbols and features.
4466Each alist element should be a list (FILE-NAME ENTRIES...), where
4467FILE-NAME is the name of a file that has been loaded into Emacs.
4468The file name is absolute and true (i.e. it doesn't contain symlinks).
4469As an exception, one of the alist elements may have FILE-NAME nil,
4470for symbols and features not associated with any file.
4471
4472The remaining ENTRIES in the alist element describe the functions and
4473variables defined in that file, the features provided, and the
4474features required. Each entry has the form `(provide . FEATURE)',
4475`(require . FEATURE)', `(defun . FUNCTION)', `(autoload . SYMBOL)',
69bb1ef7
LMI
4476`(defface . SYMBOL)', or `(t . SYMBOL)'. Entries like `(t . SYMBOL)'
4477may precede a `(defun . FUNCTION)' entry, and means that SYMBOL was an
4478autoload before this file redefined it as a function. In addition,
4479entries may also be single symbols, which means that SYMBOL was
4480defined by `defvar' or `defconst'.
0fc213e9 4481
b502a9a1
RS
4482During preloading, the file name recorded is relative to the main Lisp
4483directory. These file names are converted to absolute at startup. */);
ae321d28
RS
4484 Vload_history = Qnil;
4485
29208e82 4486 DEFVAR_LISP ("load-file-name", Vload_file_name,
5de38842 4487 doc: /* Full name of file being loaded by `load'. */);
20ea2964
RS
4488 Vload_file_name = Qnil;
4489
29208e82 4490 DEFVAR_LISP ("user-init-file", Vuser_init_file,
5de38842 4491 doc: /* File name, including directory, of user's initialization file.
0a25a201
RS
4492If the file loaded had extension `.elc', and the corresponding source file
4493exists, this variable contains the name of source file, suitable for use
099de390
JB
4494by functions like `custom-save-all' which edit the init file.
4495While Emacs loads and evaluates the init file, value is the real name
4496of the file, regardless of whether or not it has the `.elc' extension. */);
4116ab9f
KH
4497 Vuser_init_file = Qnil;
4498
29208e82 4499 DEFVAR_LISP ("current-load-list", Vcurrent_load_list,
5de38842 4500 doc: /* Used for internal purposes by `load'. */);
ae321d28
RS
4501 Vcurrent_load_list = Qnil;
4502
29208e82 4503 DEFVAR_LISP ("load-read-function", Vload_read_function,
5de38842
PJ
4504 doc: /* Function used by `load' and `eval-region' for reading expressions.
4505The default is nil, which means use the function `read'. */);
84a15045
RS
4506 Vload_read_function = Qnil;
4507
29208e82 4508 DEFVAR_LISP ("load-source-file-function", Vload_source_file_function,
76b92fee
CS
4509 doc: /* Function called in `load' to load an Emacs Lisp source file.
4510The value should be a function for doing code conversion before
4511reading a source file. It can also be nil, in which case loading is
4512done without any code conversion.
4513
4514If the value is a function, it is called with four arguments,
4515FULLNAME, FILE, NOERROR, NOMESSAGE. FULLNAME is the absolute name of
4516the file to load, FILE is the non-absolute name (for messages etc.),
4517and NOERROR and NOMESSAGE are the corresponding arguments passed to
4518`load'. The function should return t if the file was loaded. */);
fe0e03f3
KH
4519 Vload_source_file_function = Qnil;
4520
29208e82 4521 DEFVAR_BOOL ("load-force-doc-strings", load_force_doc_strings,
5de38842
PJ
4522 doc: /* Non-nil means `load' should force-load all dynamic doc strings.
4523This is useful when the file being loaded is a temporary copy. */);
b2a30870
RS
4524 load_force_doc_strings = 0;
4525
29208e82 4526 DEFVAR_BOOL ("load-convert-to-unibyte", load_convert_to_unibyte,
5de38842
PJ
4527 doc: /* Non-nil means `read' converts strings to unibyte whenever possible.
4528This is normally bound by `load' and `eval-buffer' to control `read',
4529and is not meant for users to change. */);
94e554db
RS
4530 load_convert_to_unibyte = 0;
4531
29208e82 4532 DEFVAR_LISP ("source-directory", Vsource_directory,
5de38842
PJ
4533 doc: /* Directory in which Emacs sources were found when Emacs was built.
4534You cannot count on them to still be there! */);
a90ba1e2
KH
4535 Vsource_directory
4536 = Fexpand_file_name (build_string ("../"),
17e0445b 4537 Fcar (decode_env_path (0, PATH_DUMPLOADSEARCH, 0)));
a90ba1e2 4538
29208e82 4539 DEFVAR_LISP ("preloaded-file-list", Vpreloaded_file_list,
5de38842 4540 doc: /* List of files that were preloaded (when dumping Emacs). */);
4b104c41
RS
4541 Vpreloaded_file_list = Qnil;
4542
29208e82 4543 DEFVAR_LISP ("byte-boolean-vars", Vbyte_boolean_vars,
5de38842 4544 doc: /* List of all DEFVAR_BOOL variables, used by the byte code optimizer. */);
1ffcc3b1
DL
4545 Vbyte_boolean_vars = Qnil;
4546
29208e82 4547 DEFVAR_BOOL ("load-dangerous-libraries", load_dangerous_libraries,
5de38842
PJ
4548 doc: /* Non-nil means load dangerous compiled Lisp files.
4549Some versions of XEmacs use different byte codes than Emacs. These
4550incompatible byte codes can make Emacs crash when it tries to execute
4551them. */);
da84f340
GM
4552 load_dangerous_libraries = 0;
4553
29208e82 4554 DEFVAR_BOOL ("force-load-messages", force_load_messages,
beb0b7f9
EZ
4555 doc: /* Non-nil means force printing messages when loading Lisp files.
4556This overrides the value of the NOMESSAGE argument to `load'. */);
4557 force_load_messages = 0;
4558
29208e82 4559 DEFVAR_LISP ("bytecomp-version-regexp", Vbytecomp_version_regexp,
5de38842
PJ
4560 doc: /* Regular expression matching safe to load compiled Lisp files.
4561When Emacs loads a compiled Lisp file, it reads the first 512 bytes
4562from the file, and matches them against this regular expression.
4563When the regular expression matches, the file is considered to be safe
4564to load. See also `load-dangerous-libraries'. */);
bb970e67 4565 Vbytecomp_version_regexp
2a0213a6 4566 = build_pure_c_string ("^;;;.\\(in Emacs version\\|bytecomp version FSF\\)");
da84f340 4567
14ae4239 4568 DEFSYM (Qlexical_binding, "lexical-binding");
8f1d2ef6 4569 DEFVAR_LISP ("lexical-binding", Vlexical_binding,
f41628b2
LMI
4570 doc: /* Whether to use lexical binding when evaluating code.
4571Non-nil means that the code in the current buffer should be evaluated
4572with lexical binding.
1d698799 4573This variable is automatically set from the file variables of an
48da7392
GM
4574interpreted Lisp file read using `load'. Unlike other file local
4575variables, this must be set in the first line of a file. */);
14ae4239 4576 Vlexical_binding = Qnil;
b9598260
SM
4577 Fmake_variable_buffer_local (Qlexical_binding);
4578
29208e82 4579 DEFVAR_LISP ("eval-buffer-list", Veval_buffer_list,
3f39f996
RS
4580 doc: /* List of buffers being read from by calls to `eval-buffer' and `eval-region'. */);
4581 Veval_buffer_list = Qnil;
4582
29208e82 4583 DEFVAR_LISP ("old-style-backquotes", Vold_style_backquotes,
5aa273b0
SM
4584 doc: /* Set to non-nil when `read' encounters an old-style backquote. */);
4585 Vold_style_backquotes = Qnil;
cd3520a4 4586 DEFSYM (Qold_style_backquotes, "old-style-backquotes");
5aa273b0 4587
1f41ee56
GM
4588 DEFVAR_BOOL ("load-prefer-newer", load_prefer_newer,
4589 doc: /* Non-nil means `load' prefers the newest version of a file.
4590This applies when a filename suffix is not explicitly specified and
4591`load' is trying various possible suffixes (see `load-suffixes' and
4592`load-file-rep-suffixes'). Normally, it stops at the first file
2dc383bc
XF
4593that exists unless you explicitly specify one or the other. If this
4594option is non-nil, it checks all suffixes and uses whichever file is
4595newest.
1f41ee56
GM
4596Note that if you customize this, obviously it will not affect files
4597that are loaded before your customizations are read! */);
4598 load_prefer_newer = 0;
4599
a90ba1e2
KH
4600 /* Vsource_directory was initialized in init_lread. */
4601
cd3520a4
JB
4602 DEFSYM (Qcurrent_load_list, "current-load-list");
4603 DEFSYM (Qstandard_input, "standard-input");
4604 DEFSYM (Qread_char, "read-char");
4605 DEFSYM (Qget_file_char, "get-file-char");
4606 DEFSYM (Qget_emacs_mule_file_char, "get-emacs-mule-file-char");
4607 DEFSYM (Qload_force_doc_strings, "load-force-doc-strings");
4608
4609 DEFSYM (Qbackquote, "`");
4610 DEFSYM (Qcomma, ",");
4611 DEFSYM (Qcomma_at, ",@");
4612 DEFSYM (Qcomma_dot, ",.");
4613
4614 DEFSYM (Qinhibit_file_name_operation, "inhibit-file-name-operation");
4615 DEFSYM (Qascii_character, "ascii-character");
4616 DEFSYM (Qfunction, "function");
4617 DEFSYM (Qload, "load");
4618 DEFSYM (Qload_file_name, "load-file-name");
4619 DEFSYM (Qeval_buffer_list, "eval-buffer-list");
4620 DEFSYM (Qfile_truename, "file-truename");
4621 DEFSYM (Qdir_ok, "dir-ok");
4622 DEFSYM (Qdo_after_load_evaluation, "do-after-load-evaluation");
6bb6da3e 4623
4ad679f9
EN
4624 staticpro (&read_objects);
4625 read_objects = Qnil;
9e062b6c 4626 staticpro (&seen_list);
f153db13 4627 seen_list = Qnil;
177c0ea7 4628
7ee3bd7b
GM
4629 Vloads_in_progress = Qnil;
4630 staticpro (&Vloads_in_progress);
f19a0f5b 4631
cd3520a4
JB
4632 DEFSYM (Qhash_table, "hash-table");
4633 DEFSYM (Qdata, "data");
4634 DEFSYM (Qtest, "test");
4635 DEFSYM (Qsize, "size");
4636 DEFSYM (Qweakness, "weakness");
4637 DEFSYM (Qrehash_size, "rehash-size");
4638 DEFSYM (Qrehash_threshold, "rehash-threshold");
078e7b4a 4639}