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