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