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