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