Simplify by avoiding confusing use of strncpy etc.
[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 int prefixlen = ((SCHARS (filename) > 2
1499 && SREF (filename, 0) == '/'
1500 && SREF (filename, 1) == ':')
1501 ? 2 : 0);
1502 fnlen = SBYTES (filename) - prefixlen;
1503 memcpy (fn, SDATA (filename) + prefixlen, fnlen);
1504 memcpy (fn + fnlen, SDATA (XCAR (tail)), lsuffix + 1);
1505 fnlen += lsuffix;
1506 /* Check that the file exists and is not a directory. */
1507 /* We used to only check for handlers on non-absolute file names:
1508 if (absolute)
1509 handler = Qnil;
1510 else
1511 handler = Ffind_file_name_handler (filename, Qfile_exists_p);
1512 It's not clear why that was the case and it breaks things like
1513 (load "/bar.el") where the file is actually "/bar.el.gz". */
1514 string = make_string (fn, fnlen);
1515 handler = Ffind_file_name_handler (string, Qfile_exists_p);
1516 if ((!NILP (handler) || !NILP (predicate)) && !NATNUMP (predicate))
1517 {
1518 if (NILP (predicate))
1519 exists = !NILP (Ffile_readable_p (string));
1520 else
1521 {
1522 Lisp_Object tmp = call1 (predicate, string);
1523 exists = !NILP (tmp)
1524 && (EQ (tmp, Qdir_ok)
1525 || NILP (Ffile_directory_p (string)));
1526 }
1527
1528 if (exists)
1529 {
1530 /* We succeeded; return this descriptor and filename. */
1531 if (storeptr)
1532 *storeptr = string;
1533 UNGCPRO;
1534 return -2;
1535 }
1536 }
1537 else
1538 {
1539 const char *pfn;
1540
1541 encoded_fn = ENCODE_FILE (string);
1542 pfn = SSDATA (encoded_fn);
1543 exists = (stat (pfn, &st) == 0 && ! S_ISDIR (st.st_mode));
1544 if (exists)
1545 {
1546 /* Check that we can access or open it. */
1547 if (NATNUMP (predicate))
1548 fd = (((XFASTINT (predicate) & ~INT_MAX) == 0
1549 && access (pfn, XFASTINT (predicate)) == 0)
1550 ? 1 : -1);
1551 else
1552 fd = emacs_open (pfn, O_RDONLY, 0);
1553
1554 if (fd >= 0)
1555 {
1556 /* We succeeded; return this descriptor and filename. */
1557 if (storeptr)
1558 *storeptr = string;
1559 UNGCPRO;
1560 return fd;
1561 }
1562 }
1563 }
1564 }
1565 if (absolute)
1566 break;
1567 }
1568
1569 UNGCPRO;
1570 return -1;
1571 }
1572
1573 \f
1574 /* Merge the list we've accumulated of globals from the current input source
1575 into the load_history variable. The details depend on whether
1576 the source has an associated file name or not.
1577
1578 FILENAME is the file name that we are loading from.
1579 ENTIRE is 1 if loading that entire file, 0 if evaluating part of it. */
1580
1581 static void
1582 build_load_history (Lisp_Object filename, int entire)
1583 {
1584 register Lisp_Object tail, prev, newelt;
1585 register Lisp_Object tem, tem2;
1586 register int foundit = 0;
1587
1588 tail = Vload_history;
1589 prev = Qnil;
1590
1591 while (CONSP (tail))
1592 {
1593 tem = XCAR (tail);
1594
1595 /* Find the feature's previous assoc list... */
1596 if (!NILP (Fequal (filename, Fcar (tem))))
1597 {
1598 foundit = 1;
1599
1600 /* If we're loading the entire file, remove old data. */
1601 if (entire)
1602 {
1603 if (NILP (prev))
1604 Vload_history = XCDR (tail);
1605 else
1606 Fsetcdr (prev, XCDR (tail));
1607 }
1608
1609 /* Otherwise, cons on new symbols that are not already members. */
1610 else
1611 {
1612 tem2 = Vcurrent_load_list;
1613
1614 while (CONSP (tem2))
1615 {
1616 newelt = XCAR (tem2);
1617
1618 if (NILP (Fmember (newelt, tem)))
1619 Fsetcar (tail, Fcons (XCAR (tem),
1620 Fcons (newelt, XCDR (tem))));
1621
1622 tem2 = XCDR (tem2);
1623 QUIT;
1624 }
1625 }
1626 }
1627 else
1628 prev = tail;
1629 tail = XCDR (tail);
1630 QUIT;
1631 }
1632
1633 /* If we're loading an entire file, cons the new assoc onto the
1634 front of load-history, the most-recently-loaded position. Also
1635 do this if we didn't find an existing member for the file. */
1636 if (entire || !foundit)
1637 Vload_history = Fcons (Fnreverse (Vcurrent_load_list),
1638 Vload_history);
1639 }
1640
1641 static Lisp_Object
1642 readevalloop_1 (Lisp_Object old)
1643 {
1644 load_convert_to_unibyte = ! NILP (old);
1645 return Qnil;
1646 }
1647
1648 /* Signal an `end-of-file' error, if possible with file name
1649 information. */
1650
1651 static _Noreturn void
1652 end_of_file_error (void)
1653 {
1654 if (STRINGP (Vload_file_name))
1655 xsignal1 (Qend_of_file, Vload_file_name);
1656
1657 xsignal0 (Qend_of_file);
1658 }
1659
1660 /* UNIBYTE specifies how to set load_convert_to_unibyte
1661 for this invocation.
1662 READFUN, if non-nil, is used instead of `read'.
1663
1664 START, END specify region to read in current buffer (from eval-region).
1665 If the input is not from a buffer, they must be nil. */
1666
1667 static void
1668 readevalloop (Lisp_Object readcharfun,
1669 FILE *stream,
1670 Lisp_Object sourcename,
1671 int printflag,
1672 Lisp_Object unibyte, Lisp_Object readfun,
1673 Lisp_Object start, Lisp_Object end)
1674 {
1675 register int c;
1676 register Lisp_Object val;
1677 ptrdiff_t count = SPECPDL_INDEX ();
1678 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1679 struct buffer *b = 0;
1680 int continue_reading_p;
1681 Lisp_Object lex_bound;
1682 /* Nonzero if reading an entire buffer. */
1683 int whole_buffer = 0;
1684 /* 1 on the first time around. */
1685 int first_sexp = 1;
1686
1687 if (MARKERP (readcharfun))
1688 {
1689 if (NILP (start))
1690 start = readcharfun;
1691 }
1692
1693 if (BUFFERP (readcharfun))
1694 b = XBUFFER (readcharfun);
1695 else if (MARKERP (readcharfun))
1696 b = XMARKER (readcharfun)->buffer;
1697
1698 /* We assume START is nil when input is not from a buffer. */
1699 if (! NILP (start) && !b)
1700 abort ();
1701
1702 specbind (Qstandard_input, readcharfun); /* GCPROs readcharfun. */
1703 specbind (Qcurrent_load_list, Qnil);
1704 record_unwind_protect (readevalloop_1, load_convert_to_unibyte ? Qt : Qnil);
1705 load_convert_to_unibyte = !NILP (unibyte);
1706
1707 /* If lexical binding is active (either because it was specified in
1708 the file's header, or via a buffer-local variable), create an empty
1709 lexical environment, otherwise, turn off lexical binding. */
1710 lex_bound = find_symbol_value (Qlexical_binding);
1711 specbind (Qinternal_interpreter_environment,
1712 NILP (lex_bound) || EQ (lex_bound, Qunbound)
1713 ? Qnil : Fcons (Qt, Qnil));
1714
1715 GCPRO4 (sourcename, readfun, start, end);
1716
1717 /* Try to ensure sourcename is a truename, except whilst preloading. */
1718 if (NILP (Vpurify_flag)
1719 && !NILP (sourcename) && !NILP (Ffile_name_absolute_p (sourcename))
1720 && !NILP (Ffboundp (Qfile_truename)))
1721 sourcename = call1 (Qfile_truename, sourcename) ;
1722
1723 LOADHIST_ATTACH (sourcename);
1724
1725 continue_reading_p = 1;
1726 while (continue_reading_p)
1727 {
1728 ptrdiff_t count1 = SPECPDL_INDEX ();
1729
1730 if (b != 0 && NILP (BVAR (b, name)))
1731 error ("Reading from killed buffer");
1732
1733 if (!NILP (start))
1734 {
1735 /* Switch to the buffer we are reading from. */
1736 record_unwind_protect (save_excursion_restore, save_excursion_save ());
1737 set_buffer_internal (b);
1738
1739 /* Save point in it. */
1740 record_unwind_protect (save_excursion_restore, save_excursion_save ());
1741 /* Save ZV in it. */
1742 record_unwind_protect (save_restriction_restore, save_restriction_save ());
1743 /* Those get unbound after we read one expression. */
1744
1745 /* Set point and ZV around stuff to be read. */
1746 Fgoto_char (start);
1747 if (!NILP (end))
1748 Fnarrow_to_region (make_number (BEGV), end);
1749
1750 /* Just for cleanliness, convert END to a marker
1751 if it is an integer. */
1752 if (INTEGERP (end))
1753 end = Fpoint_max_marker ();
1754 }
1755
1756 /* On the first cycle, we can easily test here
1757 whether we are reading the whole buffer. */
1758 if (b && first_sexp)
1759 whole_buffer = (PT == BEG && ZV == Z);
1760
1761 instream = stream;
1762 read_next:
1763 c = READCHAR;
1764 if (c == ';')
1765 {
1766 while ((c = READCHAR) != '\n' && c != -1);
1767 goto read_next;
1768 }
1769 if (c < 0)
1770 {
1771 unbind_to (count1, Qnil);
1772 break;
1773 }
1774
1775 /* Ignore whitespace here, so we can detect eof. */
1776 if (c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r'
1777 || c == 0xa0) /* NBSP */
1778 goto read_next;
1779
1780 if (!NILP (Vpurify_flag) && c == '(')
1781 {
1782 val = read_list (0, readcharfun);
1783 }
1784 else
1785 {
1786 UNREAD (c);
1787 read_objects = Qnil;
1788 if (!NILP (readfun))
1789 {
1790 val = call1 (readfun, readcharfun);
1791
1792 /* If READCHARFUN has set point to ZV, we should
1793 stop reading, even if the form read sets point
1794 to a different value when evaluated. */
1795 if (BUFFERP (readcharfun))
1796 {
1797 struct buffer *buf = XBUFFER (readcharfun);
1798 if (BUF_PT (buf) == BUF_ZV (buf))
1799 continue_reading_p = 0;
1800 }
1801 }
1802 else if (! NILP (Vload_read_function))
1803 val = call1 (Vload_read_function, readcharfun);
1804 else
1805 val = read_internal_start (readcharfun, Qnil, Qnil);
1806 }
1807
1808 if (!NILP (start) && continue_reading_p)
1809 start = Fpoint_marker ();
1810
1811 /* Restore saved point and BEGV. */
1812 unbind_to (count1, Qnil);
1813
1814 /* Now eval what we just read. */
1815 val = eval_sub (val);
1816
1817 if (printflag)
1818 {
1819 Vvalues = Fcons (val, Vvalues);
1820 if (EQ (Vstandard_output, Qt))
1821 Fprin1 (val, Qnil);
1822 else
1823 Fprint (val, Qnil);
1824 }
1825
1826 first_sexp = 0;
1827 }
1828
1829 build_load_history (sourcename,
1830 stream || whole_buffer);
1831
1832 UNGCPRO;
1833
1834 unbind_to (count, Qnil);
1835 }
1836
1837 DEFUN ("eval-buffer", Feval_buffer, Seval_buffer, 0, 5, "",
1838 doc: /* Execute the current buffer as Lisp code.
1839 When called from a Lisp program (i.e., not interactively), this
1840 function accepts up to five optional arguments:
1841 BUFFER is the buffer to evaluate (nil means use current buffer).
1842 PRINTFLAG controls printing of output:
1843 A value of nil means discard it; anything else is stream for print.
1844 FILENAME specifies the file name to use for `load-history'.
1845 UNIBYTE, if non-nil, specifies `load-convert-to-unibyte' for this
1846 invocation.
1847 DO-ALLOW-PRINT, if non-nil, specifies that `print' and related
1848 functions should work normally even if PRINTFLAG is nil.
1849
1850 This function preserves the position of point. */)
1851 (Lisp_Object buffer, Lisp_Object printflag, Lisp_Object filename, Lisp_Object unibyte, Lisp_Object do_allow_print)
1852 {
1853 ptrdiff_t count = SPECPDL_INDEX ();
1854 Lisp_Object tem, buf;
1855
1856 if (NILP (buffer))
1857 buf = Fcurrent_buffer ();
1858 else
1859 buf = Fget_buffer (buffer);
1860 if (NILP (buf))
1861 error ("No such buffer");
1862
1863 if (NILP (printflag) && NILP (do_allow_print))
1864 tem = Qsymbolp;
1865 else
1866 tem = printflag;
1867
1868 if (NILP (filename))
1869 filename = BVAR (XBUFFER (buf), filename);
1870
1871 specbind (Qeval_buffer_list, Fcons (buf, Veval_buffer_list));
1872 specbind (Qstandard_output, tem);
1873 record_unwind_protect (save_excursion_restore, save_excursion_save ());
1874 BUF_TEMP_SET_PT (XBUFFER (buf), BUF_BEGV (XBUFFER (buf)));
1875 specbind (Qlexical_binding, lisp_file_lexically_bound_p (buf) ? Qt : Qnil);
1876 readevalloop (buf, 0, filename,
1877 !NILP (printflag), unibyte, Qnil, Qnil, Qnil);
1878 unbind_to (count, Qnil);
1879
1880 return Qnil;
1881 }
1882
1883 DEFUN ("eval-region", Feval_region, Seval_region, 2, 4, "r",
1884 doc: /* Execute the region as Lisp code.
1885 When called from programs, expects two arguments,
1886 giving starting and ending indices in the current buffer
1887 of the text to be executed.
1888 Programs can pass third argument PRINTFLAG which controls output:
1889 A value of nil means discard it; anything else is stream for printing it.
1890 Also the fourth argument READ-FUNCTION, if non-nil, is used
1891 instead of `read' to read each expression. It gets one argument
1892 which is the input stream for reading characters.
1893
1894 This function does not move point. */)
1895 (Lisp_Object start, Lisp_Object end, Lisp_Object printflag, Lisp_Object read_function)
1896 {
1897 /* FIXME: Do the eval-sexp-add-defvars dance! */
1898 ptrdiff_t count = SPECPDL_INDEX ();
1899 Lisp_Object tem, cbuf;
1900
1901 cbuf = Fcurrent_buffer ();
1902
1903 if (NILP (printflag))
1904 tem = Qsymbolp;
1905 else
1906 tem = printflag;
1907 specbind (Qstandard_output, tem);
1908 specbind (Qeval_buffer_list, Fcons (cbuf, Veval_buffer_list));
1909
1910 /* `readevalloop' calls functions which check the type of start and end. */
1911 readevalloop (cbuf, 0, BVAR (XBUFFER (cbuf), filename),
1912 !NILP (printflag), Qnil, read_function,
1913 start, end);
1914
1915 return unbind_to (count, Qnil);
1916 }
1917
1918 \f
1919 DEFUN ("read", Fread, Sread, 0, 1, 0,
1920 doc: /* Read one Lisp expression as text from STREAM, return as Lisp object.
1921 If STREAM is nil, use the value of `standard-input' (which see).
1922 STREAM or the value of `standard-input' may be:
1923 a buffer (read from point and advance it)
1924 a marker (read from where it points and advance it)
1925 a function (call it with no arguments for each character,
1926 call it with a char as argument to push a char back)
1927 a string (takes text from string, starting at the beginning)
1928 t (read text line using minibuffer and use it, or read from
1929 standard input in batch mode). */)
1930 (Lisp_Object stream)
1931 {
1932 if (NILP (stream))
1933 stream = Vstandard_input;
1934 if (EQ (stream, Qt))
1935 stream = Qread_char;
1936 if (EQ (stream, Qread_char))
1937 return Fread_minibuffer (build_string ("Lisp expression: "), Qnil);
1938
1939 return read_internal_start (stream, Qnil, Qnil);
1940 }
1941
1942 DEFUN ("read-from-string", Fread_from_string, Sread_from_string, 1, 3, 0,
1943 doc: /* Read one Lisp expression which is represented as text by STRING.
1944 Returns a cons: (OBJECT-READ . FINAL-STRING-INDEX).
1945 FINAL-STRING-INDEX is an integer giving the position of the next
1946 remaining character in STRING.
1947 START and END optionally delimit a substring of STRING from which to read;
1948 they default to 0 and (length STRING) respectively. */)
1949 (Lisp_Object string, Lisp_Object start, Lisp_Object end)
1950 {
1951 Lisp_Object ret;
1952 CHECK_STRING (string);
1953 /* `read_internal_start' sets `read_from_string_index'. */
1954 ret = read_internal_start (string, start, end);
1955 return Fcons (ret, make_number (read_from_string_index));
1956 }
1957
1958 /* Function to set up the global context we need in toplevel read
1959 calls. */
1960 static Lisp_Object
1961 read_internal_start (Lisp_Object stream, Lisp_Object start, Lisp_Object end)
1962 /* `start', `end' only used when stream is a string. */
1963 {
1964 Lisp_Object retval;
1965
1966 readchar_count = 0;
1967 new_backquote_flag = 0;
1968 read_objects = Qnil;
1969 if (EQ (Vread_with_symbol_positions, Qt)
1970 || EQ (Vread_with_symbol_positions, stream))
1971 Vread_symbol_positions_list = Qnil;
1972
1973 if (STRINGP (stream)
1974 || ((CONSP (stream) && STRINGP (XCAR (stream)))))
1975 {
1976 ptrdiff_t startval, endval;
1977 Lisp_Object string;
1978
1979 if (STRINGP (stream))
1980 string = stream;
1981 else
1982 string = XCAR (stream);
1983
1984 if (NILP (end))
1985 endval = SCHARS (string);
1986 else
1987 {
1988 CHECK_NUMBER (end);
1989 if (! (0 <= XINT (end) && XINT (end) <= SCHARS (string)))
1990 args_out_of_range (string, end);
1991 endval = XINT (end);
1992 }
1993
1994 if (NILP (start))
1995 startval = 0;
1996 else
1997 {
1998 CHECK_NUMBER (start);
1999 if (! (0 <= XINT (start) && XINT (start) <= endval))
2000 args_out_of_range (string, start);
2001 startval = XINT (start);
2002 }
2003 read_from_string_index = startval;
2004 read_from_string_index_byte = string_char_to_byte (string, startval);
2005 read_from_string_limit = endval;
2006 }
2007
2008 retval = read0 (stream);
2009 if (EQ (Vread_with_symbol_positions, Qt)
2010 || EQ (Vread_with_symbol_positions, stream))
2011 Vread_symbol_positions_list = Fnreverse (Vread_symbol_positions_list);
2012 return retval;
2013 }
2014 \f
2015
2016 /* Signal Qinvalid_read_syntax error.
2017 S is error string of length N (if > 0) */
2018
2019 static _Noreturn void
2020 invalid_syntax (const char *s)
2021 {
2022 xsignal1 (Qinvalid_read_syntax, build_string (s));
2023 }
2024
2025
2026 /* Use this for recursive reads, in contexts where internal tokens
2027 are not allowed. */
2028
2029 static Lisp_Object
2030 read0 (Lisp_Object readcharfun)
2031 {
2032 register Lisp_Object val;
2033 int c;
2034
2035 val = read1 (readcharfun, &c, 0);
2036 if (!c)
2037 return val;
2038
2039 xsignal1 (Qinvalid_read_syntax,
2040 Fmake_string (make_number (1), make_number (c)));
2041 }
2042 \f
2043 static ptrdiff_t read_buffer_size;
2044 static char *read_buffer;
2045
2046 /* Read a \-escape sequence, assuming we already read the `\'.
2047 If the escape sequence forces unibyte, return eight-bit char. */
2048
2049 static int
2050 read_escape (Lisp_Object readcharfun, int stringp)
2051 {
2052 register int c = READCHAR;
2053 /* \u allows up to four hex digits, \U up to eight. Default to the
2054 behavior for \u, and change this value in the case that \U is seen. */
2055 int unicode_hex_count = 4;
2056
2057 switch (c)
2058 {
2059 case -1:
2060 end_of_file_error ();
2061
2062 case 'a':
2063 return '\007';
2064 case 'b':
2065 return '\b';
2066 case 'd':
2067 return 0177;
2068 case 'e':
2069 return 033;
2070 case 'f':
2071 return '\f';
2072 case 'n':
2073 return '\n';
2074 case 'r':
2075 return '\r';
2076 case 't':
2077 return '\t';
2078 case 'v':
2079 return '\v';
2080 case '\n':
2081 return -1;
2082 case ' ':
2083 if (stringp)
2084 return -1;
2085 return ' ';
2086
2087 case 'M':
2088 c = READCHAR;
2089 if (c != '-')
2090 error ("Invalid escape character syntax");
2091 c = READCHAR;
2092 if (c == '\\')
2093 c = read_escape (readcharfun, 0);
2094 return c | meta_modifier;
2095
2096 case 'S':
2097 c = READCHAR;
2098 if (c != '-')
2099 error ("Invalid escape character syntax");
2100 c = READCHAR;
2101 if (c == '\\')
2102 c = read_escape (readcharfun, 0);
2103 return c | shift_modifier;
2104
2105 case 'H':
2106 c = READCHAR;
2107 if (c != '-')
2108 error ("Invalid escape character syntax");
2109 c = READCHAR;
2110 if (c == '\\')
2111 c = read_escape (readcharfun, 0);
2112 return c | hyper_modifier;
2113
2114 case 'A':
2115 c = READCHAR;
2116 if (c != '-')
2117 error ("Invalid escape character syntax");
2118 c = READCHAR;
2119 if (c == '\\')
2120 c = read_escape (readcharfun, 0);
2121 return c | alt_modifier;
2122
2123 case 's':
2124 c = READCHAR;
2125 if (stringp || c != '-')
2126 {
2127 UNREAD (c);
2128 return ' ';
2129 }
2130 c = READCHAR;
2131 if (c == '\\')
2132 c = read_escape (readcharfun, 0);
2133 return c | super_modifier;
2134
2135 case 'C':
2136 c = READCHAR;
2137 if (c != '-')
2138 error ("Invalid escape character syntax");
2139 case '^':
2140 c = READCHAR;
2141 if (c == '\\')
2142 c = read_escape (readcharfun, 0);
2143 if ((c & ~CHAR_MODIFIER_MASK) == '?')
2144 return 0177 | (c & CHAR_MODIFIER_MASK);
2145 else if (! SINGLE_BYTE_CHAR_P ((c & ~CHAR_MODIFIER_MASK)))
2146 return c | ctrl_modifier;
2147 /* ASCII control chars are made from letters (both cases),
2148 as well as the non-letters within 0100...0137. */
2149 else if ((c & 0137) >= 0101 && (c & 0137) <= 0132)
2150 return (c & (037 | ~0177));
2151 else if ((c & 0177) >= 0100 && (c & 0177) <= 0137)
2152 return (c & (037 | ~0177));
2153 else
2154 return c | ctrl_modifier;
2155
2156 case '0':
2157 case '1':
2158 case '2':
2159 case '3':
2160 case '4':
2161 case '5':
2162 case '6':
2163 case '7':
2164 /* An octal escape, as in ANSI C. */
2165 {
2166 register int i = c - '0';
2167 register int count = 0;
2168 while (++count < 3)
2169 {
2170 if ((c = READCHAR) >= '0' && c <= '7')
2171 {
2172 i *= 8;
2173 i += c - '0';
2174 }
2175 else
2176 {
2177 UNREAD (c);
2178 break;
2179 }
2180 }
2181
2182 if (i >= 0x80 && i < 0x100)
2183 i = BYTE8_TO_CHAR (i);
2184 return i;
2185 }
2186
2187 case 'x':
2188 /* A hex escape, as in ANSI C. */
2189 {
2190 unsigned int i = 0;
2191 int count = 0;
2192 while (1)
2193 {
2194 c = READCHAR;
2195 if (c >= '0' && c <= '9')
2196 {
2197 i *= 16;
2198 i += c - '0';
2199 }
2200 else if ((c >= 'a' && c <= 'f')
2201 || (c >= 'A' && c <= 'F'))
2202 {
2203 i *= 16;
2204 if (c >= 'a' && c <= 'f')
2205 i += c - 'a' + 10;
2206 else
2207 i += c - 'A' + 10;
2208 }
2209 else
2210 {
2211 UNREAD (c);
2212 break;
2213 }
2214 /* Allow hex escapes as large as ?\xfffffff, because some
2215 packages use them to denote characters with modifiers. */
2216 if ((CHAR_META | (CHAR_META - 1)) < i)
2217 error ("Hex character out of range: \\x%x...", i);
2218 count += count < 3;
2219 }
2220
2221 if (count < 3 && i >= 0x80)
2222 return BYTE8_TO_CHAR (i);
2223 return i;
2224 }
2225
2226 case 'U':
2227 /* Post-Unicode-2.0: Up to eight hex chars. */
2228 unicode_hex_count = 8;
2229 case 'u':
2230
2231 /* A Unicode escape. We only permit them in strings and characters,
2232 not arbitrarily in the source code, as in some other languages. */
2233 {
2234 unsigned int i = 0;
2235 int count = 0;
2236
2237 while (++count <= unicode_hex_count)
2238 {
2239 c = READCHAR;
2240 /* `isdigit' and `isalpha' may be locale-specific, which we don't
2241 want. */
2242 if (c >= '0' && c <= '9') i = (i << 4) + (c - '0');
2243 else if (c >= 'a' && c <= 'f') i = (i << 4) + (c - 'a') + 10;
2244 else if (c >= 'A' && c <= 'F') i = (i << 4) + (c - 'A') + 10;
2245 else
2246 error ("Non-hex digit used for Unicode escape");
2247 }
2248 if (i > 0x10FFFF)
2249 error ("Non-Unicode character: 0x%x", i);
2250 return i;
2251 }
2252
2253 default:
2254 return c;
2255 }
2256 }
2257
2258 /* Return the digit that CHARACTER stands for in the given BASE.
2259 Return -1 if CHARACTER is out of range for BASE,
2260 and -2 if CHARACTER is not valid for any supported BASE. */
2261 static inline int
2262 digit_to_number (int character, int base)
2263 {
2264 int digit;
2265
2266 if ('0' <= character && character <= '9')
2267 digit = character - '0';
2268 else if ('a' <= character && character <= 'z')
2269 digit = character - 'a' + 10;
2270 else if ('A' <= character && character <= 'Z')
2271 digit = character - 'A' + 10;
2272 else
2273 return -2;
2274
2275 return digit < base ? digit : -1;
2276 }
2277
2278 /* Read an integer in radix RADIX using READCHARFUN to read
2279 characters. RADIX must be in the interval [2..36]; if it isn't, a
2280 read error is signaled . Value is the integer read. Signals an
2281 error if encountering invalid read syntax or if RADIX is out of
2282 range. */
2283
2284 static Lisp_Object
2285 read_integer (Lisp_Object readcharfun, EMACS_INT radix)
2286 {
2287 /* Room for sign, leading 0, other digits, trailing null byte.
2288 Also, room for invalid syntax diagnostic. */
2289 char buf[max (1 + 1 + sizeof (uintmax_t) * CHAR_BIT + 1,
2290 sizeof "integer, radix " + INT_STRLEN_BOUND (EMACS_INT))];
2291
2292 int valid = -1; /* 1 if valid, 0 if not, -1 if incomplete. */
2293
2294 if (radix < 2 || radix > 36)
2295 valid = 0;
2296 else
2297 {
2298 char *p = buf;
2299 int c, digit;
2300
2301 c = READCHAR;
2302 if (c == '-' || c == '+')
2303 {
2304 *p++ = c;
2305 c = READCHAR;
2306 }
2307
2308 if (c == '0')
2309 {
2310 *p++ = c;
2311 valid = 1;
2312
2313 /* Ignore redundant leading zeros, so the buffer doesn't
2314 fill up with them. */
2315 do
2316 c = READCHAR;
2317 while (c == '0');
2318 }
2319
2320 while (-1 <= (digit = digit_to_number (c, radix)))
2321 {
2322 if (digit == -1)
2323 valid = 0;
2324 if (valid < 0)
2325 valid = 1;
2326
2327 if (p < buf + sizeof buf - 1)
2328 *p++ = c;
2329 else
2330 valid = 0;
2331
2332 c = READCHAR;
2333 }
2334
2335 UNREAD (c);
2336 *p = '\0';
2337 }
2338
2339 if (! valid)
2340 {
2341 sprintf (buf, "integer, radix %"pI"d", radix);
2342 invalid_syntax (buf);
2343 }
2344
2345 return string_to_number (buf, radix, 0);
2346 }
2347
2348
2349 /* If the next token is ')' or ']' or '.', we store that character
2350 in *PCH and the return value is not interesting. Else, we store
2351 zero in *PCH and we read and return one lisp object.
2352
2353 FIRST_IN_LIST is nonzero if this is the first element of a list. */
2354
2355 static Lisp_Object
2356 read1 (register Lisp_Object readcharfun, int *pch, int first_in_list)
2357 {
2358 register int c;
2359 unsigned uninterned_symbol = 0;
2360 int multibyte;
2361
2362 *pch = 0;
2363 load_each_byte = 0;
2364
2365 retry:
2366
2367 c = READCHAR_REPORT_MULTIBYTE (&multibyte);
2368 if (c < 0)
2369 end_of_file_error ();
2370
2371 switch (c)
2372 {
2373 case '(':
2374 return read_list (0, readcharfun);
2375
2376 case '[':
2377 return read_vector (readcharfun, 0);
2378
2379 case ')':
2380 case ']':
2381 {
2382 *pch = c;
2383 return Qnil;
2384 }
2385
2386 case '#':
2387 c = READCHAR;
2388 if (c == 's')
2389 {
2390 c = READCHAR;
2391 if (c == '(')
2392 {
2393 /* Accept extended format for hashtables (extensible to
2394 other types), e.g.
2395 #s(hash-table size 2 test equal data (k1 v1 k2 v2)) */
2396 Lisp_Object tmp = read_list (0, readcharfun);
2397 Lisp_Object head = CAR_SAFE (tmp);
2398 Lisp_Object data = Qnil;
2399 Lisp_Object val = Qnil;
2400 /* The size is 2 * number of allowed keywords to
2401 make-hash-table. */
2402 Lisp_Object params[10];
2403 Lisp_Object ht;
2404 Lisp_Object key = Qnil;
2405 int param_count = 0;
2406
2407 if (!EQ (head, Qhash_table))
2408 error ("Invalid extended read marker at head of #s list "
2409 "(only hash-table allowed)");
2410
2411 tmp = CDR_SAFE (tmp);
2412
2413 /* This is repetitive but fast and simple. */
2414 params[param_count] = QCsize;
2415 params[param_count + 1] = Fplist_get (tmp, Qsize);
2416 if (!NILP (params[param_count + 1]))
2417 param_count += 2;
2418
2419 params[param_count] = QCtest;
2420 params[param_count + 1] = Fplist_get (tmp, Qtest);
2421 if (!NILP (params[param_count + 1]))
2422 param_count += 2;
2423
2424 params[param_count] = QCweakness;
2425 params[param_count + 1] = Fplist_get (tmp, Qweakness);
2426 if (!NILP (params[param_count + 1]))
2427 param_count += 2;
2428
2429 params[param_count] = QCrehash_size;
2430 params[param_count + 1] = Fplist_get (tmp, Qrehash_size);
2431 if (!NILP (params[param_count + 1]))
2432 param_count += 2;
2433
2434 params[param_count] = QCrehash_threshold;
2435 params[param_count + 1] = Fplist_get (tmp, Qrehash_threshold);
2436 if (!NILP (params[param_count + 1]))
2437 param_count += 2;
2438
2439 /* This is the hashtable data. */
2440 data = Fplist_get (tmp, Qdata);
2441
2442 /* Now use params to make a new hashtable and fill it. */
2443 ht = Fmake_hash_table (param_count, params);
2444
2445 while (CONSP (data))
2446 {
2447 key = XCAR (data);
2448 data = XCDR (data);
2449 if (!CONSP (data))
2450 error ("Odd number of elements in hashtable data");
2451 val = XCAR (data);
2452 data = XCDR (data);
2453 Fputhash (key, val, ht);
2454 }
2455
2456 return ht;
2457 }
2458 UNREAD (c);
2459 invalid_syntax ("#");
2460 }
2461 if (c == '^')
2462 {
2463 c = READCHAR;
2464 if (c == '[')
2465 {
2466 Lisp_Object tmp;
2467 tmp = read_vector (readcharfun, 0);
2468 if (ASIZE (tmp) < CHAR_TABLE_STANDARD_SLOTS)
2469 error ("Invalid size char-table");
2470 XSETPVECTYPE (XVECTOR (tmp), PVEC_CHAR_TABLE);
2471 return tmp;
2472 }
2473 else if (c == '^')
2474 {
2475 c = READCHAR;
2476 if (c == '[')
2477 {
2478 Lisp_Object tmp;
2479 int depth;
2480 ptrdiff_t size;
2481
2482 tmp = read_vector (readcharfun, 0);
2483 size = ASIZE (tmp);
2484 if (size == 0)
2485 error ("Invalid size char-table");
2486 if (! RANGED_INTEGERP (1, AREF (tmp, 0), 3))
2487 error ("Invalid depth in char-table");
2488 depth = XINT (AREF (tmp, 0));
2489 if (chartab_size[depth] != size - 2)
2490 error ("Invalid size char-table");
2491 XSETPVECTYPE (XVECTOR (tmp), PVEC_SUB_CHAR_TABLE);
2492 return tmp;
2493 }
2494 invalid_syntax ("#^^");
2495 }
2496 invalid_syntax ("#^");
2497 }
2498 if (c == '&')
2499 {
2500 Lisp_Object length;
2501 length = read1 (readcharfun, pch, first_in_list);
2502 c = READCHAR;
2503 if (c == '"')
2504 {
2505 Lisp_Object tmp, val;
2506 EMACS_INT size_in_chars
2507 = ((XFASTINT (length) + BOOL_VECTOR_BITS_PER_CHAR - 1)
2508 / BOOL_VECTOR_BITS_PER_CHAR);
2509
2510 UNREAD (c);
2511 tmp = read1 (readcharfun, pch, first_in_list);
2512 if (STRING_MULTIBYTE (tmp)
2513 || (size_in_chars != SCHARS (tmp)
2514 /* We used to print 1 char too many
2515 when the number of bits was a multiple of 8.
2516 Accept such input in case it came from an old
2517 version. */
2518 && ! (XFASTINT (length)
2519 == (SCHARS (tmp) - 1) * BOOL_VECTOR_BITS_PER_CHAR)))
2520 invalid_syntax ("#&...");
2521
2522 val = Fmake_bool_vector (length, Qnil);
2523 memcpy (XBOOL_VECTOR (val)->data, SDATA (tmp), size_in_chars);
2524 /* Clear the extraneous bits in the last byte. */
2525 if (XINT (length) != size_in_chars * BOOL_VECTOR_BITS_PER_CHAR)
2526 XBOOL_VECTOR (val)->data[size_in_chars - 1]
2527 &= (1 << (XINT (length) % BOOL_VECTOR_BITS_PER_CHAR)) - 1;
2528 return val;
2529 }
2530 invalid_syntax ("#&...");
2531 }
2532 if (c == '[')
2533 {
2534 /* Accept compiled functions at read-time so that we don't have to
2535 build them using function calls. */
2536 Lisp_Object tmp;
2537 tmp = read_vector (readcharfun, 1);
2538 make_byte_code (XVECTOR (tmp));
2539 return tmp;
2540 }
2541 if (c == '(')
2542 {
2543 Lisp_Object tmp;
2544 struct gcpro gcpro1;
2545 int ch;
2546
2547 /* Read the string itself. */
2548 tmp = read1 (readcharfun, &ch, 0);
2549 if (ch != 0 || !STRINGP (tmp))
2550 invalid_syntax ("#");
2551 GCPRO1 (tmp);
2552 /* Read the intervals and their properties. */
2553 while (1)
2554 {
2555 Lisp_Object beg, end, plist;
2556
2557 beg = read1 (readcharfun, &ch, 0);
2558 end = plist = Qnil;
2559 if (ch == ')')
2560 break;
2561 if (ch == 0)
2562 end = read1 (readcharfun, &ch, 0);
2563 if (ch == 0)
2564 plist = read1 (readcharfun, &ch, 0);
2565 if (ch)
2566 invalid_syntax ("Invalid string property list");
2567 Fset_text_properties (beg, end, plist, tmp);
2568 }
2569 UNGCPRO;
2570 return tmp;
2571 }
2572
2573 /* #@NUMBER is used to skip NUMBER following characters.
2574 That's used in .elc files to skip over doc strings
2575 and function definitions. */
2576 if (c == '@')
2577 {
2578 enum { extra = 100 };
2579 ptrdiff_t i, nskip = 0;
2580
2581 load_each_byte = 1;
2582 /* Read a decimal integer. */
2583 while ((c = READCHAR) >= 0
2584 && c >= '0' && c <= '9')
2585 {
2586 if ((STRING_BYTES_BOUND - extra) / 10 <= nskip)
2587 string_overflow ();
2588 nskip *= 10;
2589 nskip += c - '0';
2590 }
2591 UNREAD (c);
2592
2593 if (load_force_doc_strings
2594 && (EQ (readcharfun, Qget_file_char)
2595 || EQ (readcharfun, Qget_emacs_mule_file_char)))
2596 {
2597 /* If we are supposed to force doc strings into core right now,
2598 record the last string that we skipped,
2599 and record where in the file it comes from. */
2600
2601 /* But first exchange saved_doc_string
2602 with prev_saved_doc_string, so we save two strings. */
2603 {
2604 char *temp = saved_doc_string;
2605 ptrdiff_t temp_size = saved_doc_string_size;
2606 file_offset temp_pos = saved_doc_string_position;
2607 ptrdiff_t temp_len = saved_doc_string_length;
2608
2609 saved_doc_string = prev_saved_doc_string;
2610 saved_doc_string_size = prev_saved_doc_string_size;
2611 saved_doc_string_position = prev_saved_doc_string_position;
2612 saved_doc_string_length = prev_saved_doc_string_length;
2613
2614 prev_saved_doc_string = temp;
2615 prev_saved_doc_string_size = temp_size;
2616 prev_saved_doc_string_position = temp_pos;
2617 prev_saved_doc_string_length = temp_len;
2618 }
2619
2620 if (saved_doc_string_size == 0)
2621 {
2622 saved_doc_string = xmalloc (nskip + extra);
2623 saved_doc_string_size = nskip + extra;
2624 }
2625 if (nskip > saved_doc_string_size)
2626 {
2627 saved_doc_string = xrealloc (saved_doc_string, nskip + extra);
2628 saved_doc_string_size = nskip + extra;
2629 }
2630
2631 saved_doc_string_position = file_tell (instream);
2632
2633 /* Copy that many characters into saved_doc_string. */
2634 for (i = 0; i < nskip && c >= 0; i++)
2635 saved_doc_string[i] = c = READCHAR;
2636
2637 saved_doc_string_length = i;
2638 }
2639 else
2640 {
2641 /* Skip that many characters. */
2642 for (i = 0; i < nskip && c >= 0; i++)
2643 c = READCHAR;
2644 }
2645
2646 load_each_byte = 0;
2647 goto retry;
2648 }
2649 if (c == '!')
2650 {
2651 /* #! appears at the beginning of an executable file.
2652 Skip the first line. */
2653 while (c != '\n' && c >= 0)
2654 c = READCHAR;
2655 goto retry;
2656 }
2657 if (c == '$')
2658 return Vload_file_name;
2659 if (c == '\'')
2660 return Fcons (Qfunction, Fcons (read0 (readcharfun), Qnil));
2661 /* #:foo is the uninterned symbol named foo. */
2662 if (c == ':')
2663 {
2664 uninterned_symbol = 1;
2665 c = READCHAR;
2666 if (!(c > 040
2667 && c != 0xa0 /* NBSP */
2668 && (c >= 0200
2669 || strchr ("\"';()[]#`,", c) == NULL)))
2670 {
2671 /* No symbol character follows, this is the empty
2672 symbol. */
2673 UNREAD (c);
2674 return Fmake_symbol (build_string (""));
2675 }
2676 goto read_symbol;
2677 }
2678 /* ## is the empty symbol. */
2679 if (c == '#')
2680 return Fintern (build_string (""), Qnil);
2681 /* Reader forms that can reuse previously read objects. */
2682 if (c >= '0' && c <= '9')
2683 {
2684 EMACS_INT n = 0;
2685 Lisp_Object tem;
2686
2687 /* Read a non-negative integer. */
2688 while (c >= '0' && c <= '9')
2689 {
2690 if (MOST_POSITIVE_FIXNUM / 10 < n
2691 || MOST_POSITIVE_FIXNUM < n * 10 + c - '0')
2692 n = MOST_POSITIVE_FIXNUM + 1;
2693 else
2694 n = n * 10 + c - '0';
2695 c = READCHAR;
2696 }
2697
2698 if (n <= MOST_POSITIVE_FIXNUM)
2699 {
2700 if (c == 'r' || c == 'R')
2701 return read_integer (readcharfun, n);
2702
2703 if (! NILP (Vread_circle))
2704 {
2705 /* #n=object returns object, but associates it with
2706 n for #n#. */
2707 if (c == '=')
2708 {
2709 /* Make a placeholder for #n# to use temporarily. */
2710 Lisp_Object placeholder;
2711 Lisp_Object cell;
2712
2713 placeholder = Fcons (Qnil, Qnil);
2714 cell = Fcons (make_number (n), placeholder);
2715 read_objects = Fcons (cell, read_objects);
2716
2717 /* Read the object itself. */
2718 tem = read0 (readcharfun);
2719
2720 /* Now put it everywhere the placeholder was... */
2721 substitute_object_in_subtree (tem, placeholder);
2722
2723 /* ...and #n# will use the real value from now on. */
2724 Fsetcdr (cell, tem);
2725
2726 return tem;
2727 }
2728
2729 /* #n# returns a previously read object. */
2730 if (c == '#')
2731 {
2732 tem = Fassq (make_number (n), read_objects);
2733 if (CONSP (tem))
2734 return XCDR (tem);
2735 }
2736 }
2737 }
2738 /* Fall through to error message. */
2739 }
2740 else if (c == 'x' || c == 'X')
2741 return read_integer (readcharfun, 16);
2742 else if (c == 'o' || c == 'O')
2743 return read_integer (readcharfun, 8);
2744 else if (c == 'b' || c == 'B')
2745 return read_integer (readcharfun, 2);
2746
2747 UNREAD (c);
2748 invalid_syntax ("#");
2749
2750 case ';':
2751 while ((c = READCHAR) >= 0 && c != '\n');
2752 goto retry;
2753
2754 case '\'':
2755 {
2756 return Fcons (Qquote, Fcons (read0 (readcharfun), Qnil));
2757 }
2758
2759 case '`':
2760 {
2761 int next_char = READCHAR;
2762 UNREAD (next_char);
2763 /* Transition from old-style to new-style:
2764 If we see "(`" it used to mean old-style, which usually works
2765 fine because ` should almost never appear in such a position
2766 for new-style. But occasionally we need "(`" to mean new
2767 style, so we try to distinguish the two by the fact that we
2768 can either write "( `foo" or "(` foo", where the first
2769 intends to use new-style whereas the second intends to use
2770 old-style. For Emacs-25, we should completely remove this
2771 first_in_list exception (old-style can still be obtained via
2772 "(\`" anyway). */
2773 if (!new_backquote_flag && first_in_list && next_char == ' ')
2774 {
2775 Vold_style_backquotes = Qt;
2776 goto default_label;
2777 }
2778 else
2779 {
2780 Lisp_Object value;
2781
2782 new_backquote_flag++;
2783 value = read0 (readcharfun);
2784 new_backquote_flag--;
2785
2786 return Fcons (Qbackquote, Fcons (value, Qnil));
2787 }
2788 }
2789 case ',':
2790 {
2791 int next_char = READCHAR;
2792 UNREAD (next_char);
2793 /* Transition from old-style to new-style:
2794 It used to be impossible to have a new-style , other than within
2795 a new-style `. This is sufficient when ` and , are used in the
2796 normal way, but ` and , can also appear in args to macros that
2797 will not interpret them in the usual way, in which case , may be
2798 used without any ` anywhere near.
2799 So we now use the same heuristic as for backquote: old-style
2800 unquotes are only recognized when first on a list, and when
2801 followed by a space.
2802 Because it's more difficult to peek 2 chars ahead, a new-style
2803 ,@ can still not be used outside of a `, unless it's in the middle
2804 of a list. */
2805 if (new_backquote_flag
2806 || !first_in_list
2807 || (next_char != ' ' && next_char != '@'))
2808 {
2809 Lisp_Object comma_type = Qnil;
2810 Lisp_Object value;
2811 int ch = READCHAR;
2812
2813 if (ch == '@')
2814 comma_type = Qcomma_at;
2815 else if (ch == '.')
2816 comma_type = Qcomma_dot;
2817 else
2818 {
2819 if (ch >= 0) UNREAD (ch);
2820 comma_type = Qcomma;
2821 }
2822
2823 value = read0 (readcharfun);
2824 return Fcons (comma_type, Fcons (value, Qnil));
2825 }
2826 else
2827 {
2828 Vold_style_backquotes = Qt;
2829 goto default_label;
2830 }
2831 }
2832 case '?':
2833 {
2834 int modifiers;
2835 int next_char;
2836 int ok;
2837
2838 c = READCHAR;
2839 if (c < 0)
2840 end_of_file_error ();
2841
2842 /* Accept `single space' syntax like (list ? x) where the
2843 whitespace character is SPC or TAB.
2844 Other literal whitespace like NL, CR, and FF are not accepted,
2845 as there are well-established escape sequences for these. */
2846 if (c == ' ' || c == '\t')
2847 return make_number (c);
2848
2849 if (c == '\\')
2850 c = read_escape (readcharfun, 0);
2851 modifiers = c & CHAR_MODIFIER_MASK;
2852 c &= ~CHAR_MODIFIER_MASK;
2853 if (CHAR_BYTE8_P (c))
2854 c = CHAR_TO_BYTE8 (c);
2855 c |= modifiers;
2856
2857 next_char = READCHAR;
2858 ok = (next_char <= 040
2859 || (next_char < 0200
2860 && strchr ("\"';()[]#?`,.", next_char) != NULL));
2861 UNREAD (next_char);
2862 if (ok)
2863 return make_number (c);
2864
2865 invalid_syntax ("?");
2866 }
2867
2868 case '"':
2869 {
2870 char *p = read_buffer;
2871 char *end = read_buffer + read_buffer_size;
2872 register int ch;
2873 /* Nonzero if we saw an escape sequence specifying
2874 a multibyte character. */
2875 int force_multibyte = 0;
2876 /* Nonzero if we saw an escape sequence specifying
2877 a single-byte character. */
2878 int force_singlebyte = 0;
2879 int cancel = 0;
2880 ptrdiff_t nchars = 0;
2881
2882 while ((ch = READCHAR) >= 0
2883 && ch != '\"')
2884 {
2885 if (end - p < MAX_MULTIBYTE_LENGTH)
2886 {
2887 ptrdiff_t offset = p - read_buffer;
2888 if (min (PTRDIFF_MAX, SIZE_MAX) / 2 < read_buffer_size)
2889 memory_full (SIZE_MAX);
2890 read_buffer = xrealloc (read_buffer, read_buffer_size * 2);
2891 read_buffer_size *= 2;
2892 p = read_buffer + offset;
2893 end = read_buffer + read_buffer_size;
2894 }
2895
2896 if (ch == '\\')
2897 {
2898 int modifiers;
2899
2900 ch = read_escape (readcharfun, 1);
2901
2902 /* CH is -1 if \ newline has just been seen. */
2903 if (ch == -1)
2904 {
2905 if (p == read_buffer)
2906 cancel = 1;
2907 continue;
2908 }
2909
2910 modifiers = ch & CHAR_MODIFIER_MASK;
2911 ch = ch & ~CHAR_MODIFIER_MASK;
2912
2913 if (CHAR_BYTE8_P (ch))
2914 force_singlebyte = 1;
2915 else if (! ASCII_CHAR_P (ch))
2916 force_multibyte = 1;
2917 else /* I.e. ASCII_CHAR_P (ch). */
2918 {
2919 /* Allow `\C- ' and `\C-?'. */
2920 if (modifiers == CHAR_CTL)
2921 {
2922 if (ch == ' ')
2923 ch = 0, modifiers = 0;
2924 else if (ch == '?')
2925 ch = 127, modifiers = 0;
2926 }
2927 if (modifiers & CHAR_SHIFT)
2928 {
2929 /* Shift modifier is valid only with [A-Za-z]. */
2930 if (ch >= 'A' && ch <= 'Z')
2931 modifiers &= ~CHAR_SHIFT;
2932 else if (ch >= 'a' && ch <= 'z')
2933 ch -= ('a' - 'A'), modifiers &= ~CHAR_SHIFT;
2934 }
2935
2936 if (modifiers & CHAR_META)
2937 {
2938 /* Move the meta bit to the right place for a
2939 string. */
2940 modifiers &= ~CHAR_META;
2941 ch = BYTE8_TO_CHAR (ch | 0x80);
2942 force_singlebyte = 1;
2943 }
2944 }
2945
2946 /* Any modifiers remaining are invalid. */
2947 if (modifiers)
2948 error ("Invalid modifier in string");
2949 p += CHAR_STRING (ch, (unsigned char *) p);
2950 }
2951 else
2952 {
2953 p += CHAR_STRING (ch, (unsigned char *) p);
2954 if (CHAR_BYTE8_P (ch))
2955 force_singlebyte = 1;
2956 else if (! ASCII_CHAR_P (ch))
2957 force_multibyte = 1;
2958 }
2959 nchars++;
2960 }
2961
2962 if (ch < 0)
2963 end_of_file_error ();
2964
2965 /* If purifying, and string starts with \ newline,
2966 return zero instead. This is for doc strings
2967 that we are really going to find in etc/DOC.nn.nn. */
2968 if (!NILP (Vpurify_flag) && NILP (Vdoc_file_name) && cancel)
2969 return make_number (0);
2970
2971 if (! force_multibyte && force_singlebyte)
2972 {
2973 /* READ_BUFFER contains raw 8-bit bytes and no multibyte
2974 forms. Convert it to unibyte. */
2975 nchars = str_as_unibyte ((unsigned char *) read_buffer,
2976 p - read_buffer);
2977 p = read_buffer + nchars;
2978 }
2979
2980 return make_specified_string (read_buffer, nchars, p - read_buffer,
2981 (force_multibyte
2982 || (p - read_buffer != nchars)));
2983 }
2984
2985 case '.':
2986 {
2987 int next_char = READCHAR;
2988 UNREAD (next_char);
2989
2990 if (next_char <= 040
2991 || (next_char < 0200
2992 && strchr ("\"';([#?`,", next_char) != NULL))
2993 {
2994 *pch = c;
2995 return Qnil;
2996 }
2997
2998 /* Otherwise, we fall through! Note that the atom-reading loop
2999 below will now loop at least once, assuring that we will not
3000 try to UNREAD two characters in a row. */
3001 }
3002 default:
3003 default_label:
3004 if (c <= 040) goto retry;
3005 if (c == 0xa0) /* NBSP */
3006 goto retry;
3007
3008 read_symbol:
3009 {
3010 char *p = read_buffer;
3011 int quoted = 0;
3012 EMACS_INT start_position = readchar_count - 1;
3013
3014 {
3015 char *end = read_buffer + read_buffer_size;
3016
3017 do
3018 {
3019 if (end - p < MAX_MULTIBYTE_LENGTH)
3020 {
3021 ptrdiff_t offset = p - read_buffer;
3022 if (min (PTRDIFF_MAX, SIZE_MAX) / 2 < read_buffer_size)
3023 memory_full (SIZE_MAX);
3024 read_buffer = xrealloc (read_buffer, read_buffer_size * 2);
3025 read_buffer_size *= 2;
3026 p = read_buffer + offset;
3027 end = read_buffer + read_buffer_size;
3028 }
3029
3030 if (c == '\\')
3031 {
3032 c = READCHAR;
3033 if (c == -1)
3034 end_of_file_error ();
3035 quoted = 1;
3036 }
3037
3038 if (multibyte)
3039 p += CHAR_STRING (c, (unsigned char *) p);
3040 else
3041 *p++ = c;
3042 c = READCHAR;
3043 }
3044 while (c > 040
3045 && c != 0xa0 /* NBSP */
3046 && (c >= 0200
3047 || strchr ("\"';()[]#`,", c) == NULL));
3048
3049 if (p == end)
3050 {
3051 ptrdiff_t offset = p - read_buffer;
3052 if (min (PTRDIFF_MAX, SIZE_MAX) / 2 < read_buffer_size)
3053 memory_full (SIZE_MAX);
3054 read_buffer = xrealloc (read_buffer, read_buffer_size * 2);
3055 read_buffer_size *= 2;
3056 p = read_buffer + offset;
3057 end = read_buffer + read_buffer_size;
3058 }
3059 *p = 0;
3060 UNREAD (c);
3061 }
3062
3063 if (!quoted && !uninterned_symbol)
3064 {
3065 Lisp_Object result = string_to_number (read_buffer, 10, 0);
3066 if (! NILP (result))
3067 return result;
3068 }
3069 {
3070 Lisp_Object name, result;
3071 ptrdiff_t nbytes = p - read_buffer;
3072 ptrdiff_t nchars
3073 = (multibyte
3074 ? multibyte_chars_in_text ((unsigned char *) read_buffer,
3075 nbytes)
3076 : nbytes);
3077
3078 name = ((uninterned_symbol && ! NILP (Vpurify_flag)
3079 ? make_pure_string : make_specified_string)
3080 (read_buffer, nchars, nbytes, multibyte));
3081 result = (uninterned_symbol ? Fmake_symbol (name)
3082 : Fintern (name, Qnil));
3083
3084 if (EQ (Vread_with_symbol_positions, Qt)
3085 || EQ (Vread_with_symbol_positions, readcharfun))
3086 Vread_symbol_positions_list
3087 = Fcons (Fcons (result, make_number (start_position)),
3088 Vread_symbol_positions_list);
3089 return result;
3090 }
3091 }
3092 }
3093 }
3094 \f
3095
3096 /* List of nodes we've seen during substitute_object_in_subtree. */
3097 static Lisp_Object seen_list;
3098
3099 static void
3100 substitute_object_in_subtree (Lisp_Object object, Lisp_Object placeholder)
3101 {
3102 Lisp_Object check_object;
3103
3104 /* We haven't seen any objects when we start. */
3105 seen_list = Qnil;
3106
3107 /* Make all the substitutions. */
3108 check_object
3109 = substitute_object_recurse (object, placeholder, object);
3110
3111 /* Clear seen_list because we're done with it. */
3112 seen_list = Qnil;
3113
3114 /* The returned object here is expected to always eq the
3115 original. */
3116 if (!EQ (check_object, object))
3117 error ("Unexpected mutation error in reader");
3118 }
3119
3120 /* Feval doesn't get called from here, so no gc protection is needed. */
3121 #define SUBSTITUTE(get_val, set_val) \
3122 do { \
3123 Lisp_Object old_value = get_val; \
3124 Lisp_Object true_value \
3125 = substitute_object_recurse (object, placeholder, \
3126 old_value); \
3127 \
3128 if (!EQ (old_value, true_value)) \
3129 { \
3130 set_val; \
3131 } \
3132 } while (0)
3133
3134 static Lisp_Object
3135 substitute_object_recurse (Lisp_Object object, Lisp_Object placeholder, Lisp_Object subtree)
3136 {
3137 /* If we find the placeholder, return the target object. */
3138 if (EQ (placeholder, subtree))
3139 return object;
3140
3141 /* If we've been to this node before, don't explore it again. */
3142 if (!EQ (Qnil, Fmemq (subtree, seen_list)))
3143 return subtree;
3144
3145 /* If this node can be the entry point to a cycle, remember that
3146 we've seen it. It can only be such an entry point if it was made
3147 by #n=, which means that we can find it as a value in
3148 read_objects. */
3149 if (!EQ (Qnil, Frassq (subtree, read_objects)))
3150 seen_list = Fcons (subtree, seen_list);
3151
3152 /* Recurse according to subtree's type.
3153 Every branch must return a Lisp_Object. */
3154 switch (XTYPE (subtree))
3155 {
3156 case Lisp_Vectorlike:
3157 {
3158 ptrdiff_t i, length = 0;
3159 if (BOOL_VECTOR_P (subtree))
3160 return subtree; /* No sub-objects anyway. */
3161 else if (CHAR_TABLE_P (subtree) || SUB_CHAR_TABLE_P (subtree)
3162 || COMPILEDP (subtree))
3163 length = ASIZE (subtree) & PSEUDOVECTOR_SIZE_MASK;
3164 else if (VECTORP (subtree))
3165 length = ASIZE (subtree);
3166 else
3167 /* An unknown pseudovector may contain non-Lisp fields, so we
3168 can't just blindly traverse all its fields. We used to call
3169 `Flength' which signaled `sequencep', so I just preserved this
3170 behavior. */
3171 wrong_type_argument (Qsequencep, subtree);
3172
3173 for (i = 0; i < length; i++)
3174 SUBSTITUTE (AREF (subtree, i),
3175 ASET (subtree, i, true_value));
3176 return subtree;
3177 }
3178
3179 case Lisp_Cons:
3180 {
3181 SUBSTITUTE (XCAR (subtree),
3182 XSETCAR (subtree, true_value));
3183 SUBSTITUTE (XCDR (subtree),
3184 XSETCDR (subtree, true_value));
3185 return subtree;
3186 }
3187
3188 case Lisp_String:
3189 {
3190 /* Check for text properties in each interval.
3191 substitute_in_interval contains part of the logic. */
3192
3193 INTERVAL root_interval = STRING_INTERVALS (subtree);
3194 Lisp_Object arg = Fcons (object, placeholder);
3195
3196 traverse_intervals_noorder (root_interval,
3197 &substitute_in_interval, arg);
3198
3199 return subtree;
3200 }
3201
3202 /* Other types don't recurse any further. */
3203 default:
3204 return subtree;
3205 }
3206 }
3207
3208 /* Helper function for substitute_object_recurse. */
3209 static void
3210 substitute_in_interval (INTERVAL interval, Lisp_Object arg)
3211 {
3212 Lisp_Object object = Fcar (arg);
3213 Lisp_Object placeholder = Fcdr (arg);
3214
3215 SUBSTITUTE (interval->plist, interval->plist = true_value);
3216 }
3217
3218 \f
3219 #define LEAD_INT 1
3220 #define DOT_CHAR 2
3221 #define TRAIL_INT 4
3222 #define E_EXP 16
3223
3224
3225 /* Convert STRING to a number, assuming base BASE. Return a fixnum if CP has
3226 integer syntax and fits in a fixnum, else return the nearest float if CP has
3227 either floating point or integer syntax and BASE is 10, else return nil. If
3228 IGNORE_TRAILING is nonzero, consider just the longest prefix of CP that has
3229 valid floating point syntax. Signal an overflow if BASE is not 10 and the
3230 number has integer syntax but does not fit. */
3231
3232 Lisp_Object
3233 string_to_number (char const *string, int base, int ignore_trailing)
3234 {
3235 int state;
3236 char const *cp = string;
3237 int leading_digit;
3238 int float_syntax = 0;
3239 double value = 0;
3240
3241 /* Compute NaN and infinities using a variable, to cope with compilers that
3242 think they are smarter than we are. */
3243 double zero = 0;
3244
3245 /* Negate the value ourselves. This treats 0, NaNs, and infinity properly on
3246 IEEE floating point hosts, and works around a formerly-common bug where
3247 atof ("-0.0") drops the sign. */
3248 int negative = *cp == '-';
3249
3250 int signedp = negative || *cp == '+';
3251 cp += signedp;
3252
3253 state = 0;
3254
3255 leading_digit = digit_to_number (*cp, base);
3256 if (0 <= leading_digit)
3257 {
3258 state |= LEAD_INT;
3259 do
3260 ++cp;
3261 while (0 <= digit_to_number (*cp, base));
3262 }
3263 if (*cp == '.')
3264 {
3265 state |= DOT_CHAR;
3266 cp++;
3267 }
3268
3269 if (base == 10)
3270 {
3271 if ('0' <= *cp && *cp <= '9')
3272 {
3273 state |= TRAIL_INT;
3274 do
3275 cp++;
3276 while ('0' <= *cp && *cp <= '9');
3277 }
3278 if (*cp == 'e' || *cp == 'E')
3279 {
3280 char const *ecp = cp;
3281 cp++;
3282 if (*cp == '+' || *cp == '-')
3283 cp++;
3284 if ('0' <= *cp && *cp <= '9')
3285 {
3286 state |= E_EXP;
3287 do
3288 cp++;
3289 while ('0' <= *cp && *cp <= '9');
3290 }
3291 else if (cp[-1] == '+'
3292 && cp[0] == 'I' && cp[1] == 'N' && cp[2] == 'F')
3293 {
3294 state |= E_EXP;
3295 cp += 3;
3296 value = 1.0 / zero;
3297 }
3298 else if (cp[-1] == '+'
3299 && cp[0] == 'N' && cp[1] == 'a' && cp[2] == 'N')
3300 {
3301 state |= E_EXP;
3302 cp += 3;
3303 value = zero / zero;
3304
3305 /* If that made a "negative" NaN, negate it. */
3306 {
3307 int i;
3308 union { double d; char c[sizeof (double)]; }
3309 u_data, u_minus_zero;
3310 u_data.d = value;
3311 u_minus_zero.d = -0.0;
3312 for (i = 0; i < sizeof (double); i++)
3313 if (u_data.c[i] & u_minus_zero.c[i])
3314 {
3315 value = -value;
3316 break;
3317 }
3318 }
3319 /* Now VALUE is a positive NaN. */
3320 }
3321 else
3322 cp = ecp;
3323 }
3324
3325 float_syntax = ((state & (DOT_CHAR|TRAIL_INT)) == (DOT_CHAR|TRAIL_INT)
3326 || state == (LEAD_INT|E_EXP));
3327 }
3328
3329 /* Return nil if the number uses invalid syntax. If IGNORE_TRAILING, accept
3330 any prefix that matches. Otherwise, the entire string must match. */
3331 if (! (ignore_trailing
3332 ? ((state & LEAD_INT) != 0 || float_syntax)
3333 : (!*cp && ((state & ~DOT_CHAR) == LEAD_INT || float_syntax))))
3334 return Qnil;
3335
3336 /* If the number uses integer and not float syntax, and is in C-language
3337 range, use its value, preferably as a fixnum. */
3338 if (0 <= leading_digit && ! float_syntax)
3339 {
3340 uintmax_t n;
3341
3342 /* Fast special case for single-digit integers. This also avoids a
3343 glitch when BASE is 16 and IGNORE_TRAILING is nonzero, because in that
3344 case some versions of strtoumax accept numbers like "0x1" that Emacs
3345 does not allow. */
3346 if (digit_to_number (string[signedp + 1], base) < 0)
3347 return make_number (negative ? -leading_digit : leading_digit);
3348
3349 errno = 0;
3350 n = strtoumax (string + signedp, NULL, base);
3351 if (errno == ERANGE)
3352 {
3353 /* Unfortunately there's no simple and accurate way to convert
3354 non-base-10 numbers that are out of C-language range. */
3355 if (base != 10)
3356 xsignal1 (Qoverflow_error, build_string (string));
3357 }
3358 else if (n <= (negative ? -MOST_NEGATIVE_FIXNUM : MOST_POSITIVE_FIXNUM))
3359 {
3360 EMACS_INT signed_n = n;
3361 return make_number (negative ? -signed_n : signed_n);
3362 }
3363 else
3364 value = n;
3365 }
3366
3367 /* Either the number uses float syntax, or it does not fit into a fixnum.
3368 Convert it from string to floating point, unless the value is already
3369 known because it is an infinity, a NAN, or its absolute value fits in
3370 uintmax_t. */
3371 if (! value)
3372 value = atof (string + signedp);
3373
3374 return make_float (negative ? -value : value);
3375 }
3376
3377 \f
3378 static Lisp_Object
3379 read_vector (Lisp_Object readcharfun, int bytecodeflag)
3380 {
3381 ptrdiff_t i, size;
3382 register Lisp_Object *ptr;
3383 register Lisp_Object tem, item, vector;
3384 register struct Lisp_Cons *otem;
3385 Lisp_Object len;
3386
3387 tem = read_list (1, readcharfun);
3388 len = Flength (tem);
3389 vector = Fmake_vector (len, Qnil);
3390
3391 size = ASIZE (vector);
3392 ptr = XVECTOR (vector)->contents;
3393 for (i = 0; i < size; i++)
3394 {
3395 item = Fcar (tem);
3396 /* If `load-force-doc-strings' is t when reading a lazily-loaded
3397 bytecode object, the docstring containing the bytecode and
3398 constants values must be treated as unibyte and passed to
3399 Fread, to get the actual bytecode string and constants vector. */
3400 if (bytecodeflag && load_force_doc_strings)
3401 {
3402 if (i == COMPILED_BYTECODE)
3403 {
3404 if (!STRINGP (item))
3405 error ("Invalid byte code");
3406
3407 /* Delay handling the bytecode slot until we know whether
3408 it is lazily-loaded (we can tell by whether the
3409 constants slot is nil). */
3410 ptr[COMPILED_CONSTANTS] = item;
3411 item = Qnil;
3412 }
3413 else if (i == COMPILED_CONSTANTS)
3414 {
3415 Lisp_Object bytestr = ptr[COMPILED_CONSTANTS];
3416
3417 if (NILP (item))
3418 {
3419 /* Coerce string to unibyte (like string-as-unibyte,
3420 but without generating extra garbage and
3421 guaranteeing no change in the contents). */
3422 STRING_SET_CHARS (bytestr, SBYTES (bytestr));
3423 STRING_SET_UNIBYTE (bytestr);
3424
3425 item = Fread (Fcons (bytestr, readcharfun));
3426 if (!CONSP (item))
3427 error ("Invalid byte code");
3428
3429 otem = XCONS (item);
3430 bytestr = XCAR (item);
3431 item = XCDR (item);
3432 free_cons (otem);
3433 }
3434
3435 /* Now handle the bytecode slot. */
3436 ptr[COMPILED_BYTECODE] = bytestr;
3437 }
3438 else if (i == COMPILED_DOC_STRING
3439 && STRINGP (item)
3440 && ! STRING_MULTIBYTE (item))
3441 {
3442 if (EQ (readcharfun, Qget_emacs_mule_file_char))
3443 item = Fdecode_coding_string (item, Qemacs_mule, Qnil, Qnil);
3444 else
3445 item = Fstring_as_multibyte (item);
3446 }
3447 }
3448 ptr[i] = item;
3449 otem = XCONS (tem);
3450 tem = Fcdr (tem);
3451 free_cons (otem);
3452 }
3453 return vector;
3454 }
3455
3456 /* FLAG = 1 means check for ] to terminate rather than ) and . */
3457
3458 static Lisp_Object
3459 read_list (int flag, register Lisp_Object readcharfun)
3460 {
3461 Lisp_Object val, tail;
3462 register Lisp_Object elt, tem;
3463 struct gcpro gcpro1, gcpro2;
3464 /* 0 is the normal case.
3465 1 means this list is a doc reference; replace it with the number 0.
3466 2 means this list is a doc reference; replace it with the doc string. */
3467 int doc_reference = 0;
3468
3469 /* Initialize this to 1 if we are reading a list. */
3470 int first_in_list = flag <= 0;
3471
3472 val = Qnil;
3473 tail = Qnil;
3474
3475 while (1)
3476 {
3477 int ch;
3478 GCPRO2 (val, tail);
3479 elt = read1 (readcharfun, &ch, first_in_list);
3480 UNGCPRO;
3481
3482 first_in_list = 0;
3483
3484 /* While building, if the list starts with #$, treat it specially. */
3485 if (EQ (elt, Vload_file_name)
3486 && ! NILP (elt)
3487 && !NILP (Vpurify_flag))
3488 {
3489 if (NILP (Vdoc_file_name))
3490 /* We have not yet called Snarf-documentation, so assume
3491 this file is described in the DOC-MM.NN file
3492 and Snarf-documentation will fill in the right value later.
3493 For now, replace the whole list with 0. */
3494 doc_reference = 1;
3495 else
3496 /* We have already called Snarf-documentation, so make a relative
3497 file name for this file, so it can be found properly
3498 in the installed Lisp directory.
3499 We don't use Fexpand_file_name because that would make
3500 the directory absolute now. */
3501 elt = concat2 (build_string ("../lisp/"),
3502 Ffile_name_nondirectory (elt));
3503 }
3504 else if (EQ (elt, Vload_file_name)
3505 && ! NILP (elt)
3506 && load_force_doc_strings)
3507 doc_reference = 2;
3508
3509 if (ch)
3510 {
3511 if (flag > 0)
3512 {
3513 if (ch == ']')
3514 return val;
3515 invalid_syntax (") or . in a vector");
3516 }
3517 if (ch == ')')
3518 return val;
3519 if (ch == '.')
3520 {
3521 GCPRO2 (val, tail);
3522 if (!NILP (tail))
3523 XSETCDR (tail, read0 (readcharfun));
3524 else
3525 val = read0 (readcharfun);
3526 read1 (readcharfun, &ch, 0);
3527 UNGCPRO;
3528 if (ch == ')')
3529 {
3530 if (doc_reference == 1)
3531 return make_number (0);
3532 if (doc_reference == 2)
3533 {
3534 /* Get a doc string from the file we are loading.
3535 If it's in saved_doc_string, get it from there.
3536
3537 Here, we don't know if the string is a
3538 bytecode string or a doc string. As a
3539 bytecode string must be unibyte, we always
3540 return a unibyte string. If it is actually a
3541 doc string, caller must make it
3542 multibyte. */
3543
3544 EMACS_INT pos = XINT (XCDR (val));
3545 /* Position is negative for user variables. */
3546 if (pos < 0) pos = -pos;
3547 if (pos >= saved_doc_string_position
3548 && pos < (saved_doc_string_position
3549 + saved_doc_string_length))
3550 {
3551 ptrdiff_t start = pos - saved_doc_string_position;
3552 ptrdiff_t from, to;
3553
3554 /* Process quoting with ^A,
3555 and find the end of the string,
3556 which is marked with ^_ (037). */
3557 for (from = start, to = start;
3558 saved_doc_string[from] != 037;)
3559 {
3560 int c = saved_doc_string[from++];
3561 if (c == 1)
3562 {
3563 c = saved_doc_string[from++];
3564 if (c == 1)
3565 saved_doc_string[to++] = c;
3566 else if (c == '0')
3567 saved_doc_string[to++] = 0;
3568 else if (c == '_')
3569 saved_doc_string[to++] = 037;
3570 }
3571 else
3572 saved_doc_string[to++] = c;
3573 }
3574
3575 return make_unibyte_string (saved_doc_string + start,
3576 to - start);
3577 }
3578 /* Look in prev_saved_doc_string the same way. */
3579 else if (pos >= prev_saved_doc_string_position
3580 && pos < (prev_saved_doc_string_position
3581 + prev_saved_doc_string_length))
3582 {
3583 ptrdiff_t start =
3584 pos - prev_saved_doc_string_position;
3585 ptrdiff_t from, to;
3586
3587 /* Process quoting with ^A,
3588 and find the end of the string,
3589 which is marked with ^_ (037). */
3590 for (from = start, to = start;
3591 prev_saved_doc_string[from] != 037;)
3592 {
3593 int c = prev_saved_doc_string[from++];
3594 if (c == 1)
3595 {
3596 c = prev_saved_doc_string[from++];
3597 if (c == 1)
3598 prev_saved_doc_string[to++] = c;
3599 else if (c == '0')
3600 prev_saved_doc_string[to++] = 0;
3601 else if (c == '_')
3602 prev_saved_doc_string[to++] = 037;
3603 }
3604 else
3605 prev_saved_doc_string[to++] = c;
3606 }
3607
3608 return make_unibyte_string (prev_saved_doc_string
3609 + start,
3610 to - start);
3611 }
3612 else
3613 return get_doc_string (val, 1, 0);
3614 }
3615
3616 return val;
3617 }
3618 invalid_syntax (". in wrong context");
3619 }
3620 invalid_syntax ("] in a list");
3621 }
3622 tem = Fcons (elt, Qnil);
3623 if (!NILP (tail))
3624 XSETCDR (tail, tem);
3625 else
3626 val = tem;
3627 tail = tem;
3628 }
3629 }
3630 \f
3631 static Lisp_Object initial_obarray;
3632
3633 /* `oblookup' stores the bucket number here, for the sake of Funintern. */
3634
3635 static size_t oblookup_last_bucket_number;
3636
3637 /* Get an error if OBARRAY is not an obarray.
3638 If it is one, return it. */
3639
3640 Lisp_Object
3641 check_obarray (Lisp_Object obarray)
3642 {
3643 if (!VECTORP (obarray) || ASIZE (obarray) == 0)
3644 {
3645 /* If Vobarray is now invalid, force it to be valid. */
3646 if (EQ (Vobarray, obarray)) Vobarray = initial_obarray;
3647 wrong_type_argument (Qvectorp, obarray);
3648 }
3649 return obarray;
3650 }
3651
3652 /* Intern the C string STR: return a symbol with that name,
3653 interned in the current obarray. */
3654
3655 Lisp_Object
3656 intern (const char *str)
3657 {
3658 Lisp_Object tem;
3659 ptrdiff_t len = strlen (str);
3660 Lisp_Object obarray;
3661
3662 obarray = Vobarray;
3663 if (!VECTORP (obarray) || ASIZE (obarray) == 0)
3664 obarray = check_obarray (obarray);
3665 tem = oblookup (obarray, str, len, len);
3666 if (SYMBOLP (tem))
3667 return tem;
3668 return Fintern (make_string (str, len), obarray);
3669 }
3670
3671 Lisp_Object
3672 intern_c_string (const char *str)
3673 {
3674 Lisp_Object tem;
3675 ptrdiff_t len = strlen (str);
3676 Lisp_Object obarray;
3677
3678 obarray = Vobarray;
3679 if (!VECTORP (obarray) || ASIZE (obarray) == 0)
3680 obarray = check_obarray (obarray);
3681 tem = oblookup (obarray, str, len, len);
3682 if (SYMBOLP (tem))
3683 return tem;
3684
3685 if (NILP (Vpurify_flag))
3686 /* Creating a non-pure string from a string literal not
3687 implemented yet. We could just use make_string here and live
3688 with the extra copy. */
3689 abort ();
3690
3691 return Fintern (make_pure_c_string (str, len), obarray);
3692 }
3693 \f
3694 DEFUN ("intern", Fintern, Sintern, 1, 2, 0,
3695 doc: /* Return the canonical symbol whose name is STRING.
3696 If there is none, one is created by this function and returned.
3697 A second optional argument specifies the obarray to use;
3698 it defaults to the value of `obarray'. */)
3699 (Lisp_Object string, Lisp_Object obarray)
3700 {
3701 register Lisp_Object tem, sym, *ptr;
3702
3703 if (NILP (obarray)) obarray = Vobarray;
3704 obarray = check_obarray (obarray);
3705
3706 CHECK_STRING (string);
3707
3708 tem = oblookup (obarray, SSDATA (string),
3709 SCHARS (string),
3710 SBYTES (string));
3711 if (!INTEGERP (tem))
3712 return tem;
3713
3714 if (!NILP (Vpurify_flag))
3715 string = Fpurecopy (string);
3716 sym = Fmake_symbol (string);
3717
3718 if (EQ (obarray, initial_obarray))
3719 XSYMBOL (sym)->interned = SYMBOL_INTERNED_IN_INITIAL_OBARRAY;
3720 else
3721 XSYMBOL (sym)->interned = SYMBOL_INTERNED;
3722
3723 if ((SREF (string, 0) == ':')
3724 && EQ (obarray, initial_obarray))
3725 {
3726 XSYMBOL (sym)->constant = 1;
3727 XSYMBOL (sym)->redirect = SYMBOL_PLAINVAL;
3728 SET_SYMBOL_VAL (XSYMBOL (sym), sym);
3729 }
3730
3731 ptr = &AREF (obarray, XINT(tem));
3732 if (SYMBOLP (*ptr))
3733 XSYMBOL (sym)->next = XSYMBOL (*ptr);
3734 else
3735 XSYMBOL (sym)->next = 0;
3736 *ptr = sym;
3737 return sym;
3738 }
3739
3740 DEFUN ("intern-soft", Fintern_soft, Sintern_soft, 1, 2, 0,
3741 doc: /* Return the canonical symbol named NAME, or nil if none exists.
3742 NAME may be a string or a symbol. If it is a symbol, that exact
3743 symbol is searched for.
3744 A second optional argument specifies the obarray to use;
3745 it defaults to the value of `obarray'. */)
3746 (Lisp_Object name, Lisp_Object obarray)
3747 {
3748 register Lisp_Object tem, string;
3749
3750 if (NILP (obarray)) obarray = Vobarray;
3751 obarray = check_obarray (obarray);
3752
3753 if (!SYMBOLP (name))
3754 {
3755 CHECK_STRING (name);
3756 string = name;
3757 }
3758 else
3759 string = SYMBOL_NAME (name);
3760
3761 tem = oblookup (obarray, SSDATA (string), SCHARS (string), SBYTES (string));
3762 if (INTEGERP (tem) || (SYMBOLP (name) && !EQ (name, tem)))
3763 return Qnil;
3764 else
3765 return tem;
3766 }
3767 \f
3768 DEFUN ("unintern", Funintern, Sunintern, 1, 2, 0,
3769 doc: /* Delete the symbol named NAME, if any, from OBARRAY.
3770 The value is t if a symbol was found and deleted, nil otherwise.
3771 NAME may be a string or a symbol. If it is a symbol, that symbol
3772 is deleted, if it belongs to OBARRAY--no other symbol is deleted.
3773 OBARRAY defaults to the value of the variable `obarray'. */)
3774 (Lisp_Object name, Lisp_Object obarray)
3775 {
3776 register Lisp_Object string, tem;
3777 size_t hash;
3778
3779 if (NILP (obarray)) obarray = Vobarray;
3780 obarray = check_obarray (obarray);
3781
3782 if (SYMBOLP (name))
3783 string = SYMBOL_NAME (name);
3784 else
3785 {
3786 CHECK_STRING (name);
3787 string = name;
3788 }
3789
3790 tem = oblookup (obarray, SSDATA (string),
3791 SCHARS (string),
3792 SBYTES (string));
3793 if (INTEGERP (tem))
3794 return Qnil;
3795 /* If arg was a symbol, don't delete anything but that symbol itself. */
3796 if (SYMBOLP (name) && !EQ (name, tem))
3797 return Qnil;
3798
3799 /* There are plenty of other symbols which will screw up the Emacs
3800 session if we unintern them, as well as even more ways to use
3801 `setq' or `fset' or whatnot to make the Emacs session
3802 unusable. Let's not go down this silly road. --Stef */
3803 /* if (EQ (tem, Qnil) || EQ (tem, Qt))
3804 error ("Attempt to unintern t or nil"); */
3805
3806 XSYMBOL (tem)->interned = SYMBOL_UNINTERNED;
3807
3808 hash = oblookup_last_bucket_number;
3809
3810 if (EQ (AREF (obarray, hash), tem))
3811 {
3812 if (XSYMBOL (tem)->next)
3813 XSETSYMBOL (AREF (obarray, hash), XSYMBOL (tem)->next);
3814 else
3815 XSETINT (AREF (obarray, hash), 0);
3816 }
3817 else
3818 {
3819 Lisp_Object tail, following;
3820
3821 for (tail = AREF (obarray, hash);
3822 XSYMBOL (tail)->next;
3823 tail = following)
3824 {
3825 XSETSYMBOL (following, XSYMBOL (tail)->next);
3826 if (EQ (following, tem))
3827 {
3828 XSYMBOL (tail)->next = XSYMBOL (following)->next;
3829 break;
3830 }
3831 }
3832 }
3833
3834 return Qt;
3835 }
3836 \f
3837 /* Return the symbol in OBARRAY whose names matches the string
3838 of SIZE characters (SIZE_BYTE bytes) at PTR.
3839 If there is no such symbol in OBARRAY, return nil.
3840
3841 Also store the bucket number in oblookup_last_bucket_number. */
3842
3843 Lisp_Object
3844 oblookup (Lisp_Object obarray, register const char *ptr, ptrdiff_t size, ptrdiff_t size_byte)
3845 {
3846 size_t hash;
3847 size_t obsize;
3848 register Lisp_Object tail;
3849 Lisp_Object bucket, tem;
3850
3851 if (!VECTORP (obarray)
3852 || (obsize = ASIZE (obarray)) == 0)
3853 {
3854 obarray = check_obarray (obarray);
3855 obsize = ASIZE (obarray);
3856 }
3857 /* This is sometimes needed in the middle of GC. */
3858 obsize &= ~ARRAY_MARK_FLAG;
3859 hash = hash_string (ptr, size_byte) % obsize;
3860 bucket = AREF (obarray, hash);
3861 oblookup_last_bucket_number = hash;
3862 if (EQ (bucket, make_number (0)))
3863 ;
3864 else if (!SYMBOLP (bucket))
3865 error ("Bad data in guts of obarray"); /* Like CADR error message. */
3866 else
3867 for (tail = bucket; ; XSETSYMBOL (tail, XSYMBOL (tail)->next))
3868 {
3869 if (SBYTES (SYMBOL_NAME (tail)) == size_byte
3870 && SCHARS (SYMBOL_NAME (tail)) == size
3871 && !memcmp (SDATA (SYMBOL_NAME (tail)), ptr, size_byte))
3872 return tail;
3873 else if (XSYMBOL (tail)->next == 0)
3874 break;
3875 }
3876 XSETINT (tem, hash);
3877 return tem;
3878 }
3879 \f
3880 void
3881 map_obarray (Lisp_Object obarray, void (*fn) (Lisp_Object, Lisp_Object), Lisp_Object arg)
3882 {
3883 ptrdiff_t i;
3884 register Lisp_Object tail;
3885 CHECK_VECTOR (obarray);
3886 for (i = ASIZE (obarray) - 1; i >= 0; i--)
3887 {
3888 tail = AREF (obarray, i);
3889 if (SYMBOLP (tail))
3890 while (1)
3891 {
3892 (*fn) (tail, arg);
3893 if (XSYMBOL (tail)->next == 0)
3894 break;
3895 XSETSYMBOL (tail, XSYMBOL (tail)->next);
3896 }
3897 }
3898 }
3899
3900 static void
3901 mapatoms_1 (Lisp_Object sym, Lisp_Object function)
3902 {
3903 call1 (function, sym);
3904 }
3905
3906 DEFUN ("mapatoms", Fmapatoms, Smapatoms, 1, 2, 0,
3907 doc: /* Call FUNCTION on every symbol in OBARRAY.
3908 OBARRAY defaults to the value of `obarray'. */)
3909 (Lisp_Object function, Lisp_Object obarray)
3910 {
3911 if (NILP (obarray)) obarray = Vobarray;
3912 obarray = check_obarray (obarray);
3913
3914 map_obarray (obarray, mapatoms_1, function);
3915 return Qnil;
3916 }
3917
3918 #define OBARRAY_SIZE 1511
3919
3920 void
3921 init_obarray (void)
3922 {
3923 Lisp_Object oblength;
3924 ptrdiff_t size = 100 + MAX_MULTIBYTE_LENGTH;
3925
3926 XSETFASTINT (oblength, OBARRAY_SIZE);
3927
3928 Vobarray = Fmake_vector (oblength, make_number (0));
3929 initial_obarray = Vobarray;
3930 staticpro (&initial_obarray);
3931
3932 Qunbound = Fmake_symbol (build_pure_c_string ("unbound"));
3933 /* Set temporary dummy values to Qnil and Vpurify_flag to satisfy the
3934 NILP (Vpurify_flag) check in intern_c_string. */
3935 Qnil = make_number (-1); Vpurify_flag = make_number (1);
3936 Qnil = intern_c_string ("nil");
3937
3938 /* Fmake_symbol inits fields of new symbols with Qunbound and Qnil,
3939 so those two need to be fixed manually. */
3940 SET_SYMBOL_VAL (XSYMBOL (Qunbound), Qunbound);
3941 XSYMBOL (Qunbound)->function = Qunbound;
3942 XSYMBOL (Qunbound)->plist = Qnil;
3943 /* XSYMBOL (Qnil)->function = Qunbound; */
3944 SET_SYMBOL_VAL (XSYMBOL (Qnil), Qnil);
3945 XSYMBOL (Qnil)->constant = 1;
3946 XSYMBOL (Qnil)->declared_special = 1;
3947 XSYMBOL (Qnil)->plist = Qnil;
3948
3949 Qt = intern_c_string ("t");
3950 SET_SYMBOL_VAL (XSYMBOL (Qt), Qt);
3951 XSYMBOL (Qnil)->declared_special = 1;
3952 XSYMBOL (Qt)->constant = 1;
3953
3954 /* Qt is correct even if CANNOT_DUMP. loadup.el will set to nil at end. */
3955 Vpurify_flag = Qt;
3956
3957 DEFSYM (Qvariable_documentation, "variable-documentation");
3958
3959 read_buffer = xmalloc (size);
3960 read_buffer_size = size;
3961 }
3962 \f
3963 void
3964 defsubr (struct Lisp_Subr *sname)
3965 {
3966 Lisp_Object sym;
3967 sym = intern_c_string (sname->symbol_name);
3968 XSETTYPED_PVECTYPE (sname, size, PVEC_SUBR);
3969 XSETSUBR (XSYMBOL (sym)->function, sname);
3970 }
3971
3972 #ifdef NOTDEF /* Use fset in subr.el now! */
3973 void
3974 defalias (struct Lisp_Subr *sname, char *string)
3975 {
3976 Lisp_Object sym;
3977 sym = intern (string);
3978 XSETSUBR (XSYMBOL (sym)->function, sname);
3979 }
3980 #endif /* NOTDEF */
3981
3982 /* Define an "integer variable"; a symbol whose value is forwarded to a
3983 C variable of type EMACS_INT. Sample call (with "xx" to fool make-docfile):
3984 DEFxxVAR_INT ("emacs-priority", &emacs_priority, "Documentation"); */
3985 void
3986 defvar_int (struct Lisp_Intfwd *i_fwd,
3987 const char *namestring, EMACS_INT *address)
3988 {
3989 Lisp_Object sym;
3990 sym = intern_c_string (namestring);
3991 i_fwd->type = Lisp_Fwd_Int;
3992 i_fwd->intvar = address;
3993 XSYMBOL (sym)->declared_special = 1;
3994 XSYMBOL (sym)->redirect = SYMBOL_FORWARDED;
3995 SET_SYMBOL_FWD (XSYMBOL (sym), (union Lisp_Fwd *)i_fwd);
3996 }
3997
3998 /* Similar but define a variable whose value is t if address contains 1,
3999 nil if address contains 0. */
4000 void
4001 defvar_bool (struct Lisp_Boolfwd *b_fwd,
4002 const char *namestring, int *address)
4003 {
4004 Lisp_Object sym;
4005 sym = intern_c_string (namestring);
4006 b_fwd->type = Lisp_Fwd_Bool;
4007 b_fwd->boolvar = address;
4008 XSYMBOL (sym)->declared_special = 1;
4009 XSYMBOL (sym)->redirect = SYMBOL_FORWARDED;
4010 SET_SYMBOL_FWD (XSYMBOL (sym), (union Lisp_Fwd *)b_fwd);
4011 Vbyte_boolean_vars = Fcons (sym, Vbyte_boolean_vars);
4012 }
4013
4014 /* Similar but define a variable whose value is the Lisp Object stored
4015 at address. Two versions: with and without gc-marking of the C
4016 variable. The nopro version is used when that variable will be
4017 gc-marked for some other reason, since marking the same slot twice
4018 can cause trouble with strings. */
4019 void
4020 defvar_lisp_nopro (struct Lisp_Objfwd *o_fwd,
4021 const char *namestring, Lisp_Object *address)
4022 {
4023 Lisp_Object sym;
4024 sym = intern_c_string (namestring);
4025 o_fwd->type = Lisp_Fwd_Obj;
4026 o_fwd->objvar = address;
4027 XSYMBOL (sym)->declared_special = 1;
4028 XSYMBOL (sym)->redirect = SYMBOL_FORWARDED;
4029 SET_SYMBOL_FWD (XSYMBOL (sym), (union Lisp_Fwd *)o_fwd);
4030 }
4031
4032 void
4033 defvar_lisp (struct Lisp_Objfwd *o_fwd,
4034 const char *namestring, Lisp_Object *address)
4035 {
4036 defvar_lisp_nopro (o_fwd, namestring, address);
4037 staticpro (address);
4038 }
4039
4040 /* Similar but define a variable whose value is the Lisp Object stored
4041 at a particular offset in the current kboard object. */
4042
4043 void
4044 defvar_kboard (struct Lisp_Kboard_Objfwd *ko_fwd,
4045 const char *namestring, int offset)
4046 {
4047 Lisp_Object sym;
4048 sym = intern_c_string (namestring);
4049 ko_fwd->type = Lisp_Fwd_Kboard_Obj;
4050 ko_fwd->offset = offset;
4051 XSYMBOL (sym)->declared_special = 1;
4052 XSYMBOL (sym)->redirect = SYMBOL_FORWARDED;
4053 SET_SYMBOL_FWD (XSYMBOL (sym), (union Lisp_Fwd *)ko_fwd);
4054 }
4055 \f
4056 /* Check that the elements of Vload_path exist. */
4057
4058 static void
4059 load_path_check (void)
4060 {
4061 Lisp_Object path_tail;
4062
4063 /* The only elements that might not exist are those from
4064 PATH_LOADSEARCH, EMACSLOADPATH. Anything else is only added if
4065 it exists. */
4066 for (path_tail = Vload_path; !NILP (path_tail); path_tail = XCDR (path_tail))
4067 {
4068 Lisp_Object dirfile;
4069 dirfile = Fcar (path_tail);
4070 if (STRINGP (dirfile))
4071 {
4072 dirfile = Fdirectory_file_name (dirfile);
4073 if (access (SSDATA (dirfile), 0) < 0)
4074 dir_warning ("Warning: Lisp directory `%s' does not exist.\n",
4075 XCAR (path_tail));
4076 }
4077 }
4078 }
4079
4080 /* Record the value of load-path used at the start of dumping
4081 so we can see if the site changed it later during dumping. */
4082 static Lisp_Object dump_path;
4083
4084 /* Compute the default Vload_path, with the following logic:
4085 If CANNOT_DUMP:
4086 use EMACSLOADPATH env-var if set; otherwise use PATH_LOADSEARCH,
4087 prepending PATH_SITELOADSEARCH unless --no-site-lisp.
4088 The remainder is what happens when dumping works:
4089 If purify-flag (ie dumping) just use PATH_DUMPLOADSEARCH.
4090 Otherwise use EMACSLOADPATH if set, else PATH_LOADSEARCH.
4091
4092 If !initialized, then just set both Vload_path and dump_path.
4093 If initialized, then if Vload_path != dump_path, do nothing.
4094 (Presumably the load-path has already been changed by something.
4095 This can only be from a site-load file during dumping,
4096 or because EMACSLOADPATH is set.)
4097 If Vinstallation_directory is not nil (ie, running uninstalled):
4098 If installation-dir/lisp exists and not already a member,
4099 we must be running uninstalled. Reset the load-path
4100 to just installation-dir/lisp. (The default PATH_LOADSEARCH
4101 refers to the eventual installation directories. Since we
4102 are not yet installed, we should not use them, even if they exist.)
4103 If installation-dir/lisp does not exist, just add dump_path at the
4104 end instead.
4105 Add installation-dir/leim (if exists and not already a member) at the front.
4106 Add installation-dir/site-lisp (if !no_site_lisp, and exists
4107 and not already a member) at the front.
4108 If installation-dir != source-dir (ie running an uninstalled,
4109 out-of-tree build) AND install-dir/src/Makefile exists BUT
4110 install-dir/src/Makefile.in does NOT exist (this is a sanity
4111 check), then repeat the above steps for source-dir/lisp,
4112 leim and site-lisp.
4113 Finally, add the site-lisp directories at the front (if !no_site_lisp).
4114 */
4115
4116 void
4117 init_lread (void)
4118 {
4119 const char *normal;
4120
4121 #ifdef CANNOT_DUMP
4122 #ifdef HAVE_NS
4123 const char *loadpath = ns_load_path ();
4124 #endif
4125
4126 normal = PATH_LOADSEARCH;
4127 #ifdef HAVE_NS
4128 Vload_path = decode_env_path ("EMACSLOADPATH", loadpath ? loadpath : normal);
4129 #else
4130 Vload_path = decode_env_path ("EMACSLOADPATH", normal);
4131 #endif
4132
4133 load_path_check ();
4134
4135 /* FIXME CANNOT_DUMP platforms should get source-dir/lisp etc added
4136 to their load-path too, AFAICS. I don't think we can tell the
4137 difference between initialized and !initialized in this case,
4138 so we'll have to do it unconditionally when Vinstallation_directory
4139 is non-nil. */
4140 #ifdef HAVE_NS
4141 /* loadpath already includes the app-bundle's site-lisp. */
4142 if (!no_site_lisp && !egetenv ("EMACSLOADPATH") && !loadpath)
4143 #else
4144 if (!no_site_lisp && !egetenv ("EMACSLOADPATH"))
4145 #endif
4146 {
4147 Lisp_Object sitelisp;
4148 sitelisp = decode_env_path (0, PATH_SITELOADSEARCH);
4149 if (! NILP (sitelisp)) Vload_path = nconc2 (sitelisp, Vload_path);
4150 }
4151 #else
4152 if (NILP (Vpurify_flag))
4153 {
4154 normal = PATH_LOADSEARCH;
4155 /* If the EMACSLOADPATH environment variable is set, use its value.
4156 This doesn't apply if we're dumping. */
4157 if (egetenv ("EMACSLOADPATH"))
4158 Vload_path = decode_env_path ("EMACSLOADPATH", normal);
4159 }
4160 else
4161 normal = PATH_DUMPLOADSEARCH;
4162
4163 /* In a dumped Emacs, we normally reset the value of Vload_path using
4164 PATH_LOADSEARCH, since the value that was dumped uses lisp/ in
4165 the source directory, instead of the path of the installed elisp
4166 libraries. However, if it appears that Vload_path has already been
4167 changed from the default that was saved before dumping, don't
4168 change it further. Changes can only be due to EMACSLOADPATH, or
4169 site-lisp files that were processed during dumping. */
4170 if (initialized)
4171 {
4172 if (NILP (Fequal (dump_path, Vload_path)))
4173 {
4174 /* Do not make any changes, just check the elements exist. */
4175 /* Note: --no-site-lisp is ignored.
4176 I don't know what to do about this. */
4177 load_path_check ();
4178 }
4179 else
4180 {
4181 #ifdef HAVE_NS
4182 const char *loadpath = ns_load_path ();
4183 Vload_path = decode_env_path (0, loadpath ? loadpath : normal);
4184 #else
4185 Vload_path = decode_env_path (0, normal);
4186 #endif
4187 if (!NILP (Vinstallation_directory))
4188 {
4189 Lisp_Object tem, tem1;
4190
4191 /* Add to the path the lisp subdir of the installation
4192 dir, if it exists. Note: in out-of-tree builds,
4193 this directory is empty save for Makefile. */
4194 tem = Fexpand_file_name (build_string ("lisp"),
4195 Vinstallation_directory);
4196 tem1 = Ffile_exists_p (tem);
4197 if (!NILP (tem1))
4198 {
4199 if (NILP (Fmember (tem, Vload_path)))
4200 {
4201 /* We are running uninstalled. The default load-path
4202 points to the eventual installed lisp, leim
4203 directories. We should not use those now, even
4204 if they exist, so start over from a clean slate. */
4205 Vload_path = Fcons (tem, Qnil);
4206 }
4207 }
4208 else
4209 /* That dir doesn't exist, so add the build-time
4210 Lisp dirs instead. */
4211 Vload_path = nconc2 (Vload_path, dump_path);
4212
4213 /* Add leim under the installation dir, if it exists. */
4214 tem = Fexpand_file_name (build_string ("leim"),
4215 Vinstallation_directory);
4216 tem1 = Ffile_exists_p (tem);
4217 if (!NILP (tem1))
4218 {
4219 if (NILP (Fmember (tem, Vload_path)))
4220 Vload_path = Fcons (tem, Vload_path);
4221 }
4222
4223 /* Add site-lisp under the installation dir, if it exists. */
4224 if (!no_site_lisp)
4225 {
4226 tem = Fexpand_file_name (build_string ("site-lisp"),
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
4236 /* If Emacs was not built in the source directory,
4237 and it is run from where it was built, add to load-path
4238 the lisp, leim and site-lisp dirs under that directory. */
4239
4240 if (NILP (Fequal (Vinstallation_directory, Vsource_directory)))
4241 {
4242 Lisp_Object tem2;
4243
4244 tem = Fexpand_file_name (build_string ("src/Makefile"),
4245 Vinstallation_directory);
4246 tem1 = Ffile_exists_p (tem);
4247
4248 /* Don't be fooled if they moved the entire source tree
4249 AFTER dumping Emacs. If the build directory is indeed
4250 different from the source dir, src/Makefile.in and
4251 src/Makefile will not be found together. */
4252 tem = Fexpand_file_name (build_string ("src/Makefile.in"),
4253 Vinstallation_directory);
4254 tem2 = Ffile_exists_p (tem);
4255 if (!NILP (tem1) && NILP (tem2))
4256 {
4257 tem = Fexpand_file_name (build_string ("lisp"),
4258 Vsource_directory);
4259
4260 if (NILP (Fmember (tem, Vload_path)))
4261 Vload_path = Fcons (tem, Vload_path);
4262
4263 tem = Fexpand_file_name (build_string ("leim"),
4264 Vsource_directory);
4265
4266 if (NILP (Fmember (tem, Vload_path)))
4267 Vload_path = Fcons (tem, Vload_path);
4268
4269 if (!no_site_lisp)
4270 {
4271 tem = Fexpand_file_name (build_string ("site-lisp"),
4272 Vsource_directory);
4273
4274 if (NILP (Fmember (tem, Vload_path)))
4275 Vload_path = Fcons (tem, Vload_path);
4276 }
4277 }
4278 } /* Vinstallation_directory != Vsource_directory */
4279
4280 } /* if Vinstallation_directory */
4281
4282 /* Check before adding the site-lisp directories.
4283 The install should have created them, but they are not
4284 required, so no need to warn if they are absent.
4285 Or we might be running before installation. */
4286 load_path_check ();
4287
4288 /* Add the site-lisp directories at the front. */
4289 #ifdef HAVE_NS
4290 /* loadpath already includes the app-bundle's site-lisp. */
4291 if (!no_site_lisp && !loadpath)
4292 #else
4293 if (!no_site_lisp)
4294 #endif
4295 {
4296 Lisp_Object sitelisp;
4297 sitelisp = decode_env_path (0, PATH_SITELOADSEARCH);
4298 if (! NILP (sitelisp)) Vload_path = nconc2 (sitelisp, Vload_path);
4299 }
4300 } /* if dump_path == Vload_path */
4301 }
4302 else /* !initialized */
4303 {
4304 /* NORMAL refers to PATH_DUMPLOADSEARCH, ie the lisp dir in the
4305 source directory. We used to add ../lisp (ie the lisp dir in
4306 the build directory) at the front here, but that caused trouble
4307 because it was copied from dump_path into Vload_path, above,
4308 when Vinstallation_directory was non-nil. It should not be
4309 necessary, since in out of tree builds lisp/ is empty, save
4310 for Makefile. */
4311 Vload_path = decode_env_path (0, normal);
4312 dump_path = Vload_path;
4313 /* No point calling load_path_check; load-path only contains essential
4314 elements from the source directory at this point. They cannot
4315 be missing unless something went extremely (and improbably)
4316 wrong, in which case the build will fail in obvious ways. */
4317 }
4318 #endif /* CANNOT_DUMP */
4319
4320 Vvalues = Qnil;
4321
4322 load_in_progress = 0;
4323 Vload_file_name = Qnil;
4324
4325 load_descriptor_list = Qnil;
4326
4327 Vstandard_input = Qt;
4328 Vloads_in_progress = Qnil;
4329 }
4330
4331 /* Print a warning, using format string FORMAT, that directory DIRNAME
4332 does not exist. Print it on stderr and put it in *Messages*. */
4333
4334 void
4335 dir_warning (const char *format, Lisp_Object dirname)
4336 {
4337 fprintf (stderr, format, SDATA (dirname));
4338
4339 /* Don't log the warning before we've initialized!! */
4340 if (initialized)
4341 {
4342 char *buffer;
4343 ptrdiff_t message_len;
4344 USE_SAFE_ALLOCA;
4345 SAFE_ALLOCA (buffer, char *,
4346 SBYTES (dirname) + strlen (format) - (sizeof "%s" - 1) + 1);
4347 message_len = esprintf (buffer, format, SDATA (dirname));
4348 message_dolog (buffer, message_len, 0, STRING_MULTIBYTE (dirname));
4349 SAFE_FREE ();
4350 }
4351 }
4352
4353 void
4354 syms_of_lread (void)
4355 {
4356 defsubr (&Sread);
4357 defsubr (&Sread_from_string);
4358 defsubr (&Sintern);
4359 defsubr (&Sintern_soft);
4360 defsubr (&Sunintern);
4361 defsubr (&Sget_load_suffixes);
4362 defsubr (&Sload);
4363 defsubr (&Seval_buffer);
4364 defsubr (&Seval_region);
4365 defsubr (&Sread_char);
4366 defsubr (&Sread_char_exclusive);
4367 defsubr (&Sread_event);
4368 defsubr (&Sget_file_char);
4369 defsubr (&Smapatoms);
4370 defsubr (&Slocate_file_internal);
4371
4372 DEFVAR_LISP ("obarray", Vobarray,
4373 doc: /* Symbol table for use by `intern' and `read'.
4374 It is a vector whose length ought to be prime for best results.
4375 The vector's contents don't make sense if examined from Lisp programs;
4376 to find all the symbols in an obarray, use `mapatoms'. */);
4377
4378 DEFVAR_LISP ("values", Vvalues,
4379 doc: /* List of values of all expressions which were read, evaluated and printed.
4380 Order is reverse chronological. */);
4381 XSYMBOL (intern ("values"))->declared_special = 0;
4382
4383 DEFVAR_LISP ("standard-input", Vstandard_input,
4384 doc: /* Stream for read to get input from.
4385 See documentation of `read' for possible values. */);
4386 Vstandard_input = Qt;
4387
4388 DEFVAR_LISP ("read-with-symbol-positions", Vread_with_symbol_positions,
4389 doc: /* If non-nil, add position of read symbols to `read-symbol-positions-list'.
4390
4391 If this variable is a buffer, then only forms read from that buffer
4392 will be added to `read-symbol-positions-list'.
4393 If this variable is t, then all read forms will be added.
4394 The effect of all other values other than nil are not currently
4395 defined, although they may be in the future.
4396
4397 The positions are relative to the last call to `read' or
4398 `read-from-string'. It is probably a bad idea to set this variable at
4399 the toplevel; bind it instead. */);
4400 Vread_with_symbol_positions = Qnil;
4401
4402 DEFVAR_LISP ("read-symbol-positions-list", Vread_symbol_positions_list,
4403 doc: /* A list mapping read symbols to their positions.
4404 This variable is modified during calls to `read' or
4405 `read-from-string', but only when `read-with-symbol-positions' is
4406 non-nil.
4407
4408 Each element of the list looks like (SYMBOL . CHAR-POSITION), where
4409 CHAR-POSITION is an integer giving the offset of that occurrence of the
4410 symbol from the position where `read' or `read-from-string' started.
4411
4412 Note that a symbol will appear multiple times in this list, if it was
4413 read multiple times. The list is in the same order as the symbols
4414 were read in. */);
4415 Vread_symbol_positions_list = Qnil;
4416
4417 DEFVAR_LISP ("read-circle", Vread_circle,
4418 doc: /* Non-nil means read recursive structures using #N= and #N# syntax. */);
4419 Vread_circle = Qt;
4420
4421 DEFVAR_LISP ("load-path", Vload_path,
4422 doc: /* List of directories to search for files to load.
4423 Each element is a string (directory name) or nil (try default directory).
4424 Initialized based on EMACSLOADPATH environment variable, if any,
4425 otherwise to default specified by file `epaths.h' when Emacs was built. */);
4426
4427 DEFVAR_LISP ("load-suffixes", Vload_suffixes,
4428 doc: /* List of suffixes for (compiled or source) Emacs Lisp files.
4429 This list should not include the empty string.
4430 `load' and related functions try to append these suffixes, in order,
4431 to the specified file name if a Lisp suffix is allowed or required. */);
4432 Vload_suffixes = Fcons (build_pure_c_string (".elc"),
4433 Fcons (build_pure_c_string (".el"), Qnil));
4434 DEFVAR_LISP ("load-file-rep-suffixes", Vload_file_rep_suffixes,
4435 doc: /* List of suffixes that indicate representations of \
4436 the same file.
4437 This list should normally start with the empty string.
4438
4439 Enabling Auto Compression mode appends the suffixes in
4440 `jka-compr-load-suffixes' to this list and disabling Auto Compression
4441 mode removes them again. `load' and related functions use this list to
4442 determine whether they should look for compressed versions of a file
4443 and, if so, which suffixes they should try to append to the file name
4444 in order to do so. However, if you want to customize which suffixes
4445 the loading functions recognize as compression suffixes, you should
4446 customize `jka-compr-load-suffixes' rather than the present variable. */);
4447 Vload_file_rep_suffixes = Fcons (empty_unibyte_string, Qnil);
4448
4449 DEFVAR_BOOL ("load-in-progress", load_in_progress,
4450 doc: /* Non-nil if inside of `load'. */);
4451 DEFSYM (Qload_in_progress, "load-in-progress");
4452
4453 DEFVAR_LISP ("after-load-alist", Vafter_load_alist,
4454 doc: /* An alist of expressions to be evalled when particular files are loaded.
4455 Each element looks like (REGEXP-OR-FEATURE FORMS...).
4456
4457 REGEXP-OR-FEATURE is either a regular expression to match file names, or
4458 a symbol \(a feature name).
4459
4460 When `load' is run and the file-name argument matches an element's
4461 REGEXP-OR-FEATURE, or when `provide' is run and provides the symbol
4462 REGEXP-OR-FEATURE, the FORMS in the element are executed.
4463
4464 An error in FORMS does not undo the load, but does prevent execution of
4465 the rest of the FORMS. */);
4466 Vafter_load_alist = Qnil;
4467
4468 DEFVAR_LISP ("load-history", Vload_history,
4469 doc: /* Alist mapping loaded file names to symbols and features.
4470 Each alist element should be a list (FILE-NAME ENTRIES...), where
4471 FILE-NAME is the name of a file that has been loaded into Emacs.
4472 The file name is absolute and true (i.e. it doesn't contain symlinks).
4473 As an exception, one of the alist elements may have FILE-NAME nil,
4474 for symbols and features not associated with any file.
4475
4476 The remaining ENTRIES in the alist element describe the functions and
4477 variables defined in that file, the features provided, and the
4478 features required. Each entry has the form `(provide . FEATURE)',
4479 `(require . FEATURE)', `(defun . FUNCTION)', `(autoload . SYMBOL)',
4480 `(defface . SYMBOL)', or `(t . SYMBOL)'. Entries like `(t . SYMBOL)'
4481 may precede a `(defun . FUNCTION)' entry, and means that SYMBOL was an
4482 autoload before this file redefined it as a function. In addition,
4483 entries may also be single symbols, which means that SYMBOL was
4484 defined by `defvar' or `defconst'.
4485
4486 During preloading, the file name recorded is relative to the main Lisp
4487 directory. These file names are converted to absolute at startup. */);
4488 Vload_history = Qnil;
4489
4490 DEFVAR_LISP ("load-file-name", Vload_file_name,
4491 doc: /* Full name of file being loaded by `load'. */);
4492 Vload_file_name = Qnil;
4493
4494 DEFVAR_LISP ("user-init-file", Vuser_init_file,
4495 doc: /* File name, including directory, of user's initialization file.
4496 If the file loaded had extension `.elc', and the corresponding source file
4497 exists, this variable contains the name of source file, suitable for use
4498 by functions like `custom-save-all' which edit the init file.
4499 While Emacs loads and evaluates the init file, value is the real name
4500 of the file, regardless of whether or not it has the `.elc' extension. */);
4501 Vuser_init_file = Qnil;
4502
4503 DEFVAR_LISP ("current-load-list", Vcurrent_load_list,
4504 doc: /* Used for internal purposes by `load'. */);
4505 Vcurrent_load_list = Qnil;
4506
4507 DEFVAR_LISP ("load-read-function", Vload_read_function,
4508 doc: /* Function used by `load' and `eval-region' for reading expressions.
4509 The default is nil, which means use the function `read'. */);
4510 Vload_read_function = Qnil;
4511
4512 DEFVAR_LISP ("load-source-file-function", Vload_source_file_function,
4513 doc: /* Function called in `load' for loading an Emacs Lisp source file.
4514 This function is for doing code conversion before reading the source file.
4515 If nil, loading is done without any code conversion.
4516 Arguments are FULLNAME, FILE, NOERROR, NOMESSAGE, where
4517 FULLNAME is the full name of FILE.
4518 See `load' for the meaning of the remaining arguments. */);
4519 Vload_source_file_function = Qnil;
4520
4521 DEFVAR_BOOL ("load-force-doc-strings", load_force_doc_strings,
4522 doc: /* Non-nil means `load' should force-load all dynamic doc strings.
4523 This is useful when the file being loaded is a temporary copy. */);
4524 load_force_doc_strings = 0;
4525
4526 DEFVAR_BOOL ("load-convert-to-unibyte", load_convert_to_unibyte,
4527 doc: /* Non-nil means `read' converts strings to unibyte whenever possible.
4528 This is normally bound by `load' and `eval-buffer' to control `read',
4529 and is not meant for users to change. */);
4530 load_convert_to_unibyte = 0;
4531
4532 DEFVAR_LISP ("source-directory", Vsource_directory,
4533 doc: /* Directory in which Emacs sources were found when Emacs was built.
4534 You cannot count on them to still be there! */);
4535 Vsource_directory
4536 = Fexpand_file_name (build_string ("../"),
4537 Fcar (decode_env_path (0, PATH_DUMPLOADSEARCH)));
4538
4539 DEFVAR_LISP ("preloaded-file-list", Vpreloaded_file_list,
4540 doc: /* List of files that were preloaded (when dumping Emacs). */);
4541 Vpreloaded_file_list = Qnil;
4542
4543 DEFVAR_LISP ("byte-boolean-vars", Vbyte_boolean_vars,
4544 doc: /* List of all DEFVAR_BOOL variables, used by the byte code optimizer. */);
4545 Vbyte_boolean_vars = Qnil;
4546
4547 DEFVAR_BOOL ("load-dangerous-libraries", load_dangerous_libraries,
4548 doc: /* Non-nil means load dangerous compiled Lisp files.
4549 Some versions of XEmacs use different byte codes than Emacs. These
4550 incompatible byte codes can make Emacs crash when it tries to execute
4551 them. */);
4552 load_dangerous_libraries = 0;
4553
4554 DEFVAR_BOOL ("force-load-messages", force_load_messages,
4555 doc: /* Non-nil means force printing messages when loading Lisp files.
4556 This overrides the value of the NOMESSAGE argument to `load'. */);
4557 force_load_messages = 0;
4558
4559 DEFVAR_LISP ("bytecomp-version-regexp", Vbytecomp_version_regexp,
4560 doc: /* Regular expression matching safe to load compiled Lisp files.
4561 When Emacs loads a compiled Lisp file, it reads the first 512 bytes
4562 from the file, and matches them against this regular expression.
4563 When the regular expression matches, the file is considered to be safe
4564 to load. See also `load-dangerous-libraries'. */);
4565 Vbytecomp_version_regexp
4566 = build_pure_c_string ("^;;;.\\(in Emacs version\\|bytecomp version FSF\\)");
4567
4568 Qlexical_binding = intern ("lexical-binding");
4569 staticpro (&Qlexical_binding);
4570 DEFVAR_LISP ("lexical-binding", Vlexical_binding,
4571 doc: /* Whether to use lexical binding when evaluating code.
4572 Non-nil means that the code in the current buffer should be evaluated
4573 with lexical binding.
4574 This variable is automatically set from the file variables of an
4575 interpreted Lisp file read using `load'. Unlike other file local
4576 variables, this must be set in the first line of a file. */);
4577 Fmake_variable_buffer_local (Qlexical_binding);
4578
4579 DEFVAR_LISP ("eval-buffer-list", Veval_buffer_list,
4580 doc: /* List of buffers being read from by calls to `eval-buffer' and `eval-region'. */);
4581 Veval_buffer_list = Qnil;
4582
4583 DEFVAR_LISP ("old-style-backquotes", Vold_style_backquotes,
4584 doc: /* Set to non-nil when `read' encounters an old-style backquote. */);
4585 Vold_style_backquotes = Qnil;
4586 DEFSYM (Qold_style_backquotes, "old-style-backquotes");
4587
4588 /* Vsource_directory was initialized in init_lread. */
4589
4590 load_descriptor_list = Qnil;
4591 staticpro (&load_descriptor_list);
4592
4593 DEFSYM (Qcurrent_load_list, "current-load-list");
4594 DEFSYM (Qstandard_input, "standard-input");
4595 DEFSYM (Qread_char, "read-char");
4596 DEFSYM (Qget_file_char, "get-file-char");
4597 DEFSYM (Qget_emacs_mule_file_char, "get-emacs-mule-file-char");
4598 DEFSYM (Qload_force_doc_strings, "load-force-doc-strings");
4599
4600 DEFSYM (Qbackquote, "`");
4601 DEFSYM (Qcomma, ",");
4602 DEFSYM (Qcomma_at, ",@");
4603 DEFSYM (Qcomma_dot, ",.");
4604
4605 DEFSYM (Qinhibit_file_name_operation, "inhibit-file-name-operation");
4606 DEFSYM (Qascii_character, "ascii-character");
4607 DEFSYM (Qfunction, "function");
4608 DEFSYM (Qload, "load");
4609 DEFSYM (Qload_file_name, "load-file-name");
4610 DEFSYM (Qeval_buffer_list, "eval-buffer-list");
4611 DEFSYM (Qfile_truename, "file-truename");
4612 DEFSYM (Qdir_ok, "dir-ok");
4613 DEFSYM (Qdo_after_load_evaluation, "do-after-load-evaluation");
4614
4615 staticpro (&dump_path);
4616
4617 staticpro (&read_objects);
4618 read_objects = Qnil;
4619 staticpro (&seen_list);
4620 seen_list = Qnil;
4621
4622 Vloads_in_progress = Qnil;
4623 staticpro (&Vloads_in_progress);
4624
4625 DEFSYM (Qhash_table, "hash-table");
4626 DEFSYM (Qdata, "data");
4627 DEFSYM (Qtest, "test");
4628 DEFSYM (Qsize, "size");
4629 DEFSYM (Qweakness, "weakness");
4630 DEFSYM (Qrehash_size, "rehash-size");
4631 DEFSYM (Qrehash_threshold, "rehash-threshold");
4632 }