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