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