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