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