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