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