]> code.delx.au - gnu-emacs/blob - src/lread.c
Fix previous change (oops).
[gnu-emacs] / src / lread.c
1 /* Lisp parsing and input streams.
2 Copyright (C) 1985, 86, 87, 88, 89, 93, 94, 95, 97, 98, 99, 2000, 2001
3 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 2, or (at your option)
10 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; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22
23 #include <config.h>
24 #include <stdio.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <sys/file.h>
28 #include <errno.h>
29 #include "lisp.h"
30 #include "intervals.h"
31 #include "buffer.h"
32 #include "charset.h"
33 #include <epaths.h>
34 #include "commands.h"
35 #include "keyboard.h"
36 #include "termhooks.h"
37 #include "coding.h"
38
39 #ifdef lint
40 #include <sys/inode.h>
41 #endif /* lint */
42
43 #ifdef MSDOS
44 #if __DJGPP__ < 2
45 #include <unistd.h> /* to get X_OK */
46 #endif
47 #include "msdos.h"
48 #endif
49
50 #ifdef HAVE_UNISTD_H
51 #include <unistd.h>
52 #endif
53
54 #ifndef X_OK
55 #define X_OK 01
56 #endif
57
58 #include <math.h>
59
60 #ifdef HAVE_SETLOCALE
61 #include <locale.h>
62 #endif /* HAVE_SETLOCALE */
63
64 #ifndef O_RDONLY
65 #define O_RDONLY 0
66 #endif
67
68 #ifdef HAVE_FSEEKO
69 #define file_offset off_t
70 #define file_tell ftello
71 #else
72 #define file_offset long
73 #define file_tell ftell
74 #endif
75
76 #ifndef USE_CRT_DLL
77 extern int errno;
78 #endif
79
80 Lisp_Object Qread_char, Qget_file_char, Qstandard_input, Qcurrent_load_list;
81 Lisp_Object Qvariable_documentation, Vvalues, Vstandard_input, Vafter_load_alist;
82 Lisp_Object Qascii_character, Qload, Qload_file_name;
83 Lisp_Object Qbackquote, Qcomma, Qcomma_at, Qcomma_dot, Qfunction;
84 Lisp_Object Qinhibit_file_name_operation;
85
86 extern Lisp_Object Qevent_symbol_element_mask;
87 extern Lisp_Object Qfile_exists_p;
88
89 /* non-zero if inside `load' */
90 int load_in_progress;
91
92 /* Directory in which the sources were found. */
93 Lisp_Object Vsource_directory;
94
95 /* Search path and suffixes for files to be loaded. */
96 Lisp_Object Vload_path, Vload_suffixes, default_suffixes;
97
98 /* File name of user's init file. */
99 Lisp_Object Vuser_init_file;
100
101 /* This is the user-visible association list that maps features to
102 lists of defs in their load files. */
103 Lisp_Object Vload_history;
104
105 /* This is used to build the load history. */
106 Lisp_Object Vcurrent_load_list;
107
108 /* List of files that were preloaded. */
109 Lisp_Object Vpreloaded_file_list;
110
111 /* Name of file actually being read by `load'. */
112 Lisp_Object Vload_file_name;
113
114 /* Function to use for reading, in `load' and friends. */
115 Lisp_Object Vload_read_function;
116
117 /* The association list of objects read with the #n=object form.
118 Each member of the list has the form (n . object), and is used to
119 look up the object for the corresponding #n# construct.
120 It must be set to nil before all top-level calls to read0. */
121 Lisp_Object read_objects;
122
123 /* Nonzero means load should forcibly load all dynamic doc strings. */
124 static int load_force_doc_strings;
125
126 /* Nonzero means read should convert strings to unibyte. */
127 static int load_convert_to_unibyte;
128
129 /* Function to use for loading an Emacs lisp source file (not
130 compiled) instead of readevalloop. */
131 Lisp_Object Vload_source_file_function;
132
133 /* List of all DEFVAR_BOOL variables. Used by the byte optimizer. */
134 Lisp_Object Vbyte_boolean_vars;
135
136 /* Whether or not to add a `read-positions' property to symbols
137 read. */
138 Lisp_Object Vread_with_symbol_positions;
139
140 /* List of (SYMBOL . POSITION) accumulated so far. */
141 Lisp_Object Vread_symbol_positions_list;
142
143 /* List of descriptors now open for Fload. */
144 static Lisp_Object load_descriptor_list;
145
146 /* File for get_file_char to read from. Use by load. */
147 static FILE *instream;
148
149 /* When nonzero, read conses in pure space */
150 static int read_pure;
151
152 /* For use within read-from-string (this reader is non-reentrant!!) */
153 static int read_from_string_index;
154 static int read_from_string_index_byte;
155 static int read_from_string_limit;
156
157 /* Number of bytes left to read in the buffer character
158 that `readchar' has already advanced over. */
159 static int readchar_backlog;
160 /* Number of characters read in the current call to Fread or
161 Fread_from_string. */
162 static int readchar_count;
163
164 /* This contains the last string skipped with #@. */
165 static char *saved_doc_string;
166 /* Length of buffer allocated in saved_doc_string. */
167 static int saved_doc_string_size;
168 /* Length of actual data in saved_doc_string. */
169 static int saved_doc_string_length;
170 /* This is the file position that string came from. */
171 static file_offset saved_doc_string_position;
172
173 /* This contains the previous string skipped with #@.
174 We copy it from saved_doc_string when a new string
175 is put in saved_doc_string. */
176 static char *prev_saved_doc_string;
177 /* Length of buffer allocated in prev_saved_doc_string. */
178 static int prev_saved_doc_string_size;
179 /* Length of actual data in prev_saved_doc_string. */
180 static int prev_saved_doc_string_length;
181 /* This is the file position that string came from. */
182 static file_offset prev_saved_doc_string_position;
183
184 /* Nonzero means inside a new-style backquote
185 with no surrounding parentheses.
186 Fread initializes this to zero, so we need not specbind it
187 or worry about what happens to it when there is an error. */
188 static int new_backquote_flag;
189
190 /* A list of file names for files being loaded in Fload. Used to
191 check for recursive loads. */
192
193 static Lisp_Object Vloads_in_progress;
194
195 /* Non-zero means load dangerous compiled Lisp files. */
196
197 int load_dangerous_libraries;
198
199 /* A regular expression used to detect files compiled with Emacs. */
200
201 static Lisp_Object Vbytecomp_version_regexp;
202
203 static void to_multibyte P_ ((char **, char **, int *));
204 static void readevalloop P_ ((Lisp_Object, FILE*, Lisp_Object,
205 Lisp_Object (*) (), int,
206 Lisp_Object, Lisp_Object));
207 static Lisp_Object load_unwind P_ ((Lisp_Object));
208 static Lisp_Object load_descriptor_unwind P_ ((Lisp_Object));
209
210 \f
211 /* Handle unreading and rereading of characters.
212 Write READCHAR to read a character,
213 UNREAD(c) to unread c to be read again.
214
215 The READCHAR and UNREAD macros are meant for reading/unreading a
216 byte code; they do not handle multibyte characters. The caller
217 should manage them if necessary.
218
219 [ Actually that seems to be a lie; READCHAR will definitely read
220 multibyte characters from buffer sources, at least. Is the
221 comment just out of date?
222 -- Colin Walters <walters@gnu.org>, 22 May 2002 16:36:50 -0400 ]
223 */
224
225 #define READCHAR readchar (readcharfun)
226 #define UNREAD(c) unreadchar (readcharfun, c)
227
228 static int
229 readchar (readcharfun)
230 Lisp_Object readcharfun;
231 {
232 Lisp_Object tem;
233 register int c;
234
235 readchar_count++;
236
237 if (BUFFERP (readcharfun))
238 {
239 register struct buffer *inbuffer = XBUFFER (readcharfun);
240
241 int pt_byte = BUF_PT_BYTE (inbuffer);
242 int orig_pt_byte = pt_byte;
243
244 if (readchar_backlog > 0)
245 /* We get the address of the byte just passed,
246 which is the last byte of the character.
247 The other bytes in this character are consecutive with it,
248 because the gap can't be in the middle of a character. */
249 return *(BUF_BYTE_ADDRESS (inbuffer, BUF_PT_BYTE (inbuffer) - 1)
250 - --readchar_backlog);
251
252 if (pt_byte >= BUF_ZV_BYTE (inbuffer))
253 return -1;
254
255 readchar_backlog = -1;
256
257 if (! NILP (inbuffer->enable_multibyte_characters))
258 {
259 /* Fetch the character code from the buffer. */
260 unsigned char *p = BUF_BYTE_ADDRESS (inbuffer, pt_byte);
261 BUF_INC_POS (inbuffer, pt_byte);
262 c = STRING_CHAR (p, pt_byte - orig_pt_byte);
263 }
264 else
265 {
266 c = BUF_FETCH_BYTE (inbuffer, pt_byte);
267 pt_byte++;
268 }
269 SET_BUF_PT_BOTH (inbuffer, BUF_PT (inbuffer) + 1, pt_byte);
270
271 return c;
272 }
273 if (MARKERP (readcharfun))
274 {
275 register struct buffer *inbuffer = XMARKER (readcharfun)->buffer;
276
277 int bytepos = marker_byte_position (readcharfun);
278 int orig_bytepos = bytepos;
279
280 if (readchar_backlog > 0)
281 /* We get the address of the byte just passed,
282 which is the last byte of the character.
283 The other bytes in this character are consecutive with it,
284 because the gap can't be in the middle of a character. */
285 return *(BUF_BYTE_ADDRESS (inbuffer, XMARKER (readcharfun)->bytepos - 1)
286 - --readchar_backlog);
287
288 if (bytepos >= BUF_ZV_BYTE (inbuffer))
289 return -1;
290
291 readchar_backlog = -1;
292
293 if (! NILP (inbuffer->enable_multibyte_characters))
294 {
295 /* Fetch the character code from the buffer. */
296 unsigned char *p = BUF_BYTE_ADDRESS (inbuffer, bytepos);
297 BUF_INC_POS (inbuffer, bytepos);
298 c = STRING_CHAR (p, bytepos - orig_bytepos);
299 }
300 else
301 {
302 c = BUF_FETCH_BYTE (inbuffer, bytepos);
303 bytepos++;
304 }
305
306 XMARKER (readcharfun)->bytepos = bytepos;
307 XMARKER (readcharfun)->charpos++;
308
309 return c;
310 }
311
312 if (EQ (readcharfun, Qlambda))
313 return read_bytecode_char (0);
314
315 if (EQ (readcharfun, Qget_file_char))
316 {
317 c = getc (instream);
318 #ifdef EINTR
319 /* Interrupted reads have been observed while reading over the network */
320 while (c == EOF && ferror (instream) && errno == EINTR)
321 {
322 clearerr (instream);
323 c = getc (instream);
324 }
325 #endif
326 return c;
327 }
328
329 if (STRINGP (readcharfun))
330 {
331 if (read_from_string_index >= read_from_string_limit)
332 c = -1;
333 else
334 FETCH_STRING_CHAR_ADVANCE (c, readcharfun,
335 read_from_string_index,
336 read_from_string_index_byte);
337
338 return c;
339 }
340
341 tem = call0 (readcharfun);
342
343 if (NILP (tem))
344 return -1;
345 return XINT (tem);
346 }
347
348 /* Unread the character C in the way appropriate for the stream READCHARFUN.
349 If the stream is a user function, call it with the char as argument. */
350
351 static void
352 unreadchar (readcharfun, c)
353 Lisp_Object readcharfun;
354 int c;
355 {
356 readchar_count--;
357 if (c == -1)
358 /* Don't back up the pointer if we're unreading the end-of-input mark,
359 since readchar didn't advance it when we read it. */
360 ;
361 else if (BUFFERP (readcharfun))
362 {
363 struct buffer *b = XBUFFER (readcharfun);
364 int bytepos = BUF_PT_BYTE (b);
365
366 if (readchar_backlog >= 0)
367 readchar_backlog++;
368 else
369 {
370 BUF_PT (b)--;
371 if (! NILP (b->enable_multibyte_characters))
372 BUF_DEC_POS (b, bytepos);
373 else
374 bytepos--;
375
376 BUF_PT_BYTE (b) = bytepos;
377 }
378 }
379 else if (MARKERP (readcharfun))
380 {
381 struct buffer *b = XMARKER (readcharfun)->buffer;
382 int bytepos = XMARKER (readcharfun)->bytepos;
383
384 if (readchar_backlog >= 0)
385 readchar_backlog++;
386 else
387 {
388 XMARKER (readcharfun)->charpos--;
389 if (! NILP (b->enable_multibyte_characters))
390 BUF_DEC_POS (b, bytepos);
391 else
392 bytepos--;
393
394 XMARKER (readcharfun)->bytepos = bytepos;
395 }
396 }
397 else if (STRINGP (readcharfun))
398 {
399 read_from_string_index--;
400 read_from_string_index_byte
401 = string_char_to_byte (readcharfun, read_from_string_index);
402 }
403 else if (EQ (readcharfun, Qlambda))
404 read_bytecode_char (1);
405 else if (EQ (readcharfun, Qget_file_char))
406 ungetc (c, instream);
407 else
408 call1 (readcharfun, make_number (c));
409 }
410
411 static Lisp_Object read_internal_start P_ ((Lisp_Object, Lisp_Object,
412 Lisp_Object));
413 static Lisp_Object read0 P_ ((Lisp_Object));
414 static Lisp_Object read1 P_ ((Lisp_Object, int *, int));
415
416 static Lisp_Object read_list P_ ((int, Lisp_Object));
417 static Lisp_Object read_vector P_ ((Lisp_Object, int));
418 static int read_multibyte P_ ((int, Lisp_Object));
419
420 static Lisp_Object substitute_object_recurse P_ ((Lisp_Object, Lisp_Object,
421 Lisp_Object));
422 static void substitute_object_in_subtree P_ ((Lisp_Object,
423 Lisp_Object));
424 static void substitute_in_interval P_ ((INTERVAL, Lisp_Object));
425
426 \f
427 /* Get a character from the tty. */
428
429 extern Lisp_Object read_char ();
430
431 /* Read input events until we get one that's acceptable for our purposes.
432
433 If NO_SWITCH_FRAME is non-zero, switch-frame events are stashed
434 until we get a character we like, and then stuffed into
435 unread_switch_frame.
436
437 If ASCII_REQUIRED is non-zero, we check function key events to see
438 if the unmodified version of the symbol has a Qascii_character
439 property, and use that character, if present.
440
441 If ERROR_NONASCII is non-zero, we signal an error if the input we
442 get isn't an ASCII character with modifiers. If it's zero but
443 ASCII_REQUIRED is non-zero, we just re-read until we get an ASCII
444 character.
445
446 If INPUT_METHOD is nonzero, we invoke the current input method
447 if the character warrants that. */
448
449 Lisp_Object
450 read_filtered_event (no_switch_frame, ascii_required, error_nonascii,
451 input_method)
452 int no_switch_frame, ascii_required, error_nonascii, input_method;
453 {
454 register Lisp_Object val, delayed_switch_frame;
455
456 #ifdef HAVE_WINDOW_SYSTEM
457 if (display_hourglass_p)
458 cancel_hourglass ();
459 #endif
460
461 delayed_switch_frame = Qnil;
462
463 /* Read until we get an acceptable event. */
464 retry:
465 val = read_char (0, 0, 0,
466 (input_method ? Qnil : Qt),
467 0);
468
469 if (BUFFERP (val))
470 goto retry;
471
472 /* switch-frame events are put off until after the next ASCII
473 character. This is better than signaling an error just because
474 the last characters were typed to a separate minibuffer frame,
475 for example. Eventually, some code which can deal with
476 switch-frame events will read it and process it. */
477 if (no_switch_frame
478 && EVENT_HAS_PARAMETERS (val)
479 && EQ (EVENT_HEAD (val), Qswitch_frame))
480 {
481 delayed_switch_frame = val;
482 goto retry;
483 }
484
485 if (ascii_required)
486 {
487 /* Convert certain symbols to their ASCII equivalents. */
488 if (SYMBOLP (val))
489 {
490 Lisp_Object tem, tem1;
491 tem = Fget (val, Qevent_symbol_element_mask);
492 if (!NILP (tem))
493 {
494 tem1 = Fget (Fcar (tem), Qascii_character);
495 /* Merge this symbol's modifier bits
496 with the ASCII equivalent of its basic code. */
497 if (!NILP (tem1))
498 XSETFASTINT (val, XINT (tem1) | XINT (Fcar (Fcdr (tem))));
499 }
500 }
501
502 /* If we don't have a character now, deal with it appropriately. */
503 if (!INTEGERP (val))
504 {
505 if (error_nonascii)
506 {
507 Vunread_command_events = Fcons (val, Qnil);
508 error ("Non-character input-event");
509 }
510 else
511 goto retry;
512 }
513 }
514
515 if (! NILP (delayed_switch_frame))
516 unread_switch_frame = delayed_switch_frame;
517
518 #if 0
519
520 #ifdef HAVE_WINDOW_SYSTEM
521 if (display_hourglass_p)
522 start_hourglass ();
523 #endif
524
525 #endif
526
527 return val;
528 }
529
530 DEFUN ("read-char", Fread_char, Sread_char, 0, 2, 0,
531 doc: /* Read a character from the command input (keyboard or macro).
532 It is returned as a number.
533 If the user generates an event which is not a character (i.e. a mouse
534 click or function key event), `read-char' signals an error. As an
535 exception, switch-frame events are put off until non-ASCII events can
536 be read.
537 If you want to read non-character events, or ignore them, call
538 `read-event' or `read-char-exclusive' instead.
539
540 If the optional argument PROMPT is non-nil, display that as a prompt.
541 If the optional argument INHERIT-INPUT-METHOD is non-nil and some
542 input method is turned on in the current buffer, that input method
543 is used for reading a character. */)
544 (prompt, inherit_input_method)
545 Lisp_Object prompt, inherit_input_method;
546 {
547 if (! NILP (prompt))
548 message_with_string ("%s", prompt, 0);
549 return read_filtered_event (1, 1, 1, ! NILP (inherit_input_method));
550 }
551
552 DEFUN ("read-event", Fread_event, Sread_event, 0, 2, 0,
553 doc: /* Read an event object from the input stream.
554 If the optional argument PROMPT is non-nil, display that as a prompt.
555 If the optional argument INHERIT-INPUT-METHOD is non-nil and some
556 input method is turned on in the current buffer, that input method
557 is used for reading a character. */)
558 (prompt, inherit_input_method)
559 Lisp_Object prompt, inherit_input_method;
560 {
561 if (! NILP (prompt))
562 message_with_string ("%s", prompt, 0);
563 return read_filtered_event (0, 0, 0, ! NILP (inherit_input_method));
564 }
565
566 DEFUN ("read-char-exclusive", Fread_char_exclusive, Sread_char_exclusive, 0, 2, 0,
567 doc: /* Read a character from the command input (keyboard or macro).
568 It is returned as a number. Non-character events are ignored.
569
570 If the optional argument PROMPT is non-nil, display that as a prompt.
571 If the optional argument INHERIT-INPUT-METHOD is non-nil and some
572 input method is turned on in the current buffer, that input method
573 is used for reading a character. */)
574 (prompt, inherit_input_method)
575 Lisp_Object prompt, inherit_input_method;
576 {
577 if (! NILP (prompt))
578 message_with_string ("%s", prompt, 0);
579 return read_filtered_event (1, 1, 0, ! NILP (inherit_input_method));
580 }
581
582 DEFUN ("get-file-char", Fget_file_char, Sget_file_char, 0, 0, 0,
583 doc: /* Don't use this yourself. */)
584 ()
585 {
586 register Lisp_Object val;
587 XSETINT (val, getc (instream));
588 return val;
589 }
590
591
592 \f
593 /* Value is non-zero if the file asswociated with file descriptor FD
594 is a compiled Lisp file that's safe to load. Only files compiled
595 with Emacs are safe to load. Files compiled with XEmacs can lead
596 to a crash in Fbyte_code because of an incompatible change in the
597 byte compiler. */
598
599 static int
600 safe_to_load_p (fd)
601 int fd;
602 {
603 char buf[512];
604 int nbytes, i;
605 int safe_p = 1;
606
607 /* Read the first few bytes from the file, and look for a line
608 specifying the byte compiler version used. */
609 nbytes = emacs_read (fd, buf, sizeof buf - 1);
610 if (nbytes > 0)
611 {
612 buf[nbytes] = '\0';
613
614 /* Skip to the next newline, skipping over the initial `ELC'
615 with NUL bytes following it. */
616 for (i = 0; i < nbytes && buf[i] != '\n'; ++i)
617 ;
618
619 if (i < nbytes
620 && fast_c_string_match_ignore_case (Vbytecomp_version_regexp,
621 buf + i) < 0)
622 safe_p = 0;
623 }
624
625 lseek (fd, 0, SEEK_SET);
626 return safe_p;
627 }
628
629
630 /* Callback for record_unwind_protect. Restore the old load list OLD,
631 after loading a file successfully. */
632
633 static Lisp_Object
634 record_load_unwind (old)
635 Lisp_Object old;
636 {
637 return Vloads_in_progress = old;
638 }
639
640
641 DEFUN ("load", Fload, Sload, 1, 5, 0,
642 doc: /* Execute a file of Lisp code named FILE.
643 First try FILE with `.elc' appended, then try with `.el',
644 then try FILE unmodified. Environment variable references in FILE
645 are replaced with their values by calling `substitute-in-file-name'.
646 This function searches the directories in `load-path'.
647 If optional second arg NOERROR is non-nil,
648 report no error if FILE doesn't exist.
649 Print messages at start and end of loading unless
650 optional third arg NOMESSAGE is non-nil.
651 If optional fourth arg NOSUFFIX is non-nil, don't try adding
652 suffixes `.elc' or `.el' to the specified name FILE.
653 If optional fifth arg MUST-SUFFIX is non-nil, insist on
654 the suffix `.elc' or `.el'; don't accept just FILE unless
655 it ends in one of those suffixes or includes a directory name.
656 Return t if file exists. */)
657 (file, noerror, nomessage, nosuffix, must_suffix)
658 Lisp_Object file, noerror, nomessage, nosuffix, must_suffix;
659 {
660 register FILE *stream;
661 register int fd = -1;
662 register Lisp_Object lispstream;
663 int count = specpdl_ptr - specpdl;
664 Lisp_Object temp;
665 struct gcpro gcpro1;
666 Lisp_Object found, efound;
667 /* 1 means we printed the ".el is newer" message. */
668 int newer = 0;
669 /* 1 means we are loading a compiled file. */
670 int compiled = 0;
671 Lisp_Object handler;
672 int safe_p = 1;
673 char *fmode = "r";
674 #ifdef DOS_NT
675 fmode = "rt";
676 #endif /* DOS_NT */
677
678 CHECK_STRING (file);
679
680 /* If file name is magic, call the handler. */
681 /* This shouldn't be necessary any more now that `openp' handles it right.
682 handler = Ffind_file_name_handler (file, Qload);
683 if (!NILP (handler))
684 return call5 (handler, Qload, file, noerror, nomessage, nosuffix); */
685
686 /* Do this after the handler to avoid
687 the need to gcpro noerror, nomessage and nosuffix.
688 (Below here, we care only whether they are nil or not.)
689 The presence of this call is the result of a historical accident:
690 it used to be in every file-operations and when it got removed
691 everywhere, it accidentally stayed here. Since then, enough people
692 supposedly have things like (load "$PROJECT/foo.el") in their .emacs
693 that it seemed risky to remove. */
694 file = Fsubstitute_in_file_name (file);
695
696 /* Avoid weird lossage with null string as arg,
697 since it would try to load a directory as a Lisp file */
698 if (XSTRING (file)->size > 0)
699 {
700 int size = STRING_BYTES (XSTRING (file));
701 Lisp_Object tmp[2];
702
703 GCPRO1 (file);
704
705 if (! NILP (must_suffix))
706 {
707 /* Don't insist on adding a suffix if FILE already ends with one. */
708 if (size > 3
709 && !strcmp (XSTRING (file)->data + size - 3, ".el"))
710 must_suffix = Qnil;
711 else if (size > 4
712 && !strcmp (XSTRING (file)->data + size - 4, ".elc"))
713 must_suffix = Qnil;
714 /* Don't insist on adding a suffix
715 if the argument includes a directory name. */
716 else if (! NILP (Ffile_name_directory (file)))
717 must_suffix = Qnil;
718 }
719
720 fd = openp (Vload_path, file,
721 (!NILP (nosuffix) ? Qnil
722 : !NILP (must_suffix) ? Vload_suffixes
723 : Fappend (2, (tmp[0] = Vload_suffixes,
724 tmp[1] = default_suffixes,
725 tmp))),
726 &found, Qnil);
727 UNGCPRO;
728 }
729
730 if (fd == -1)
731 {
732 if (NILP (noerror))
733 while (1)
734 Fsignal (Qfile_error, Fcons (build_string ("Cannot open load file"),
735 Fcons (file, Qnil)));
736 else
737 return Qnil;
738 }
739
740 /* Tell startup.el whether or not we found the user's init file. */
741 if (EQ (Qt, Vuser_init_file))
742 Vuser_init_file = found;
743
744 /* If FD is -2, that means openp found a magic file. */
745 if (fd == -2)
746 {
747 if (NILP (Fequal (found, file)))
748 /* If FOUND is a different file name from FILE,
749 find its handler even if we have already inhibited
750 the `load' operation on FILE. */
751 handler = Ffind_file_name_handler (found, Qt);
752 else
753 handler = Ffind_file_name_handler (found, Qload);
754 if (! NILP (handler))
755 return call5 (handler, Qload, found, noerror, nomessage, Qt);
756 }
757
758 /* Check if we're stuck in a recursive load cycle.
759
760 2000-09-21: It's not possible to just check for the file loaded
761 being a member of Vloads_in_progress. This fails because of the
762 way the byte compiler currently works; `provide's are not
763 evaluted, see font-lock.el/jit-lock.el as an example. This
764 leads to a certain amount of ``normal'' recursion.
765
766 Also, just loading a file recursively is not always an error in
767 the general case; the second load may do something different. */
768 {
769 int count = 0;
770 Lisp_Object tem;
771 for (tem = Vloads_in_progress; CONSP (tem); tem = XCDR (tem))
772 if (!NILP (Fequal (found, XCAR (tem))))
773 count++;
774 if (count > 3)
775 Fsignal (Qerror, Fcons (build_string ("Recursive load"),
776 Fcons (found, Vloads_in_progress)));
777 record_unwind_protect (record_load_unwind, Vloads_in_progress);
778 Vloads_in_progress = Fcons (found, Vloads_in_progress);
779 }
780
781 if (!bcmp (&(XSTRING (found)->data[STRING_BYTES (XSTRING (found)) - 4]),
782 ".elc", 4))
783 /* Load .elc files directly, but not when they are
784 remote and have no handler! */
785 {
786 if (fd != -2)
787 {
788 struct stat s1, s2;
789 int result;
790
791 if (!safe_to_load_p (fd))
792 {
793 safe_p = 0;
794 if (!load_dangerous_libraries)
795 error ("File `%s' was not compiled in Emacs",
796 XSTRING (found)->data);
797 else if (!NILP (nomessage))
798 message_with_string ("File `%s' not compiled in Emacs", found, 1);
799 }
800
801 compiled = 1;
802
803 GCPRO1 (efound);
804 efound = ENCODE_FILE (found);
805
806 #ifdef DOS_NT
807 fmode = "rb";
808 #endif /* DOS_NT */
809 stat ((char *)XSTRING (efound)->data, &s1);
810 XSTRING (efound)->data[STRING_BYTES (XSTRING (efound)) - 1] = 0;
811 result = stat ((char *)XSTRING (efound)->data, &s2);
812 XSTRING (efound)->data[STRING_BYTES (XSTRING (efound)) - 1] = 'c';
813 UNGCPRO;
814
815 if (result >= 0 && (unsigned) s1.st_mtime < (unsigned) s2.st_mtime)
816 {
817 /* Make the progress messages mention that source is newer. */
818 newer = 1;
819
820 /* If we won't print another message, mention this anyway. */
821 if (!NILP (nomessage))
822 {
823 Lisp_Object file;
824 file = Fsubstring (found, make_number (0), make_number (-1));
825 message_with_string ("Source file `%s' newer than byte-compiled file",
826 file, SMBP (file));
827 }
828 }
829 }
830 }
831 else
832 {
833 /* We are loading a source file (*.el). */
834 if (!NILP (Vload_source_file_function))
835 {
836 Lisp_Object val;
837
838 if (fd >= 0)
839 emacs_close (fd);
840 val = call4 (Vload_source_file_function, found, file,
841 NILP (noerror) ? Qnil : Qt,
842 NILP (nomessage) ? Qnil : Qt);
843 return unbind_to (count, val);
844 }
845 }
846
847 #ifdef WINDOWSNT
848 emacs_close (fd);
849 GCPRO1 (efound);
850 efound = ENCODE_FILE (found);
851 stream = fopen ((char *) XSTRING (efound)->data, fmode);
852 UNGCPRO;
853 #else /* not WINDOWSNT */
854 stream = fdopen (fd, fmode);
855 #endif /* not WINDOWSNT */
856 if (stream == 0)
857 {
858 emacs_close (fd);
859 error ("Failure to create stdio stream for %s", XSTRING (file)->data);
860 }
861
862 if (! NILP (Vpurify_flag))
863 Vpreloaded_file_list = Fcons (file, Vpreloaded_file_list);
864
865 if (NILP (nomessage))
866 {
867 if (!safe_p)
868 message_with_string ("Loading %s (compiled; note unsafe, not compiled in Emacs)...",
869 file, 1);
870 else if (!compiled)
871 message_with_string ("Loading %s (source)...", file, 1);
872 else if (newer)
873 message_with_string ("Loading %s (compiled; note, source file is newer)...",
874 file, 1);
875 else /* The typical case; compiled file newer than source file. */
876 message_with_string ("Loading %s...", file, 1);
877 }
878
879 GCPRO1 (file);
880 lispstream = Fcons (Qnil, Qnil);
881 XSETCARFASTINT (lispstream, (EMACS_UINT)stream >> 16);
882 XSETCDRFASTINT (lispstream, (EMACS_UINT)stream & 0xffff);
883 record_unwind_protect (load_unwind, lispstream);
884 record_unwind_protect (load_descriptor_unwind, load_descriptor_list);
885 specbind (Qload_file_name, found);
886 specbind (Qinhibit_file_name_operation, Qnil);
887 load_descriptor_list
888 = Fcons (make_number (fileno (stream)), load_descriptor_list);
889 load_in_progress++;
890 readevalloop (Qget_file_char, stream, file, Feval, 0, Qnil, Qnil);
891 unbind_to (count, Qnil);
892
893 /* Run any load-hooks for this file. */
894 temp = Fassoc (file, Vafter_load_alist);
895 if (!NILP (temp))
896 Fprogn (Fcdr (temp));
897 UNGCPRO;
898
899 if (saved_doc_string)
900 free (saved_doc_string);
901 saved_doc_string = 0;
902 saved_doc_string_size = 0;
903
904 if (prev_saved_doc_string)
905 xfree (prev_saved_doc_string);
906 prev_saved_doc_string = 0;
907 prev_saved_doc_string_size = 0;
908
909 if (!noninteractive && NILP (nomessage))
910 {
911 if (!safe_p)
912 message_with_string ("Loading %s (compiled; note unsafe, not compiled in Emacs)...done",
913 file, 1);
914 else if (!compiled)
915 message_with_string ("Loading %s (source)...done", file, 1);
916 else if (newer)
917 message_with_string ("Loading %s (compiled; note, source file is newer)...done",
918 file, 1);
919 else /* The typical case; compiled file newer than source file. */
920 message_with_string ("Loading %s...done", file, 1);
921 }
922
923 return Qt;
924 }
925
926 static Lisp_Object
927 load_unwind (stream) /* used as unwind-protect function in load */
928 Lisp_Object stream;
929 {
930 fclose ((FILE *) (XFASTINT (XCAR (stream)) << 16
931 | XFASTINT (XCDR (stream))));
932 if (--load_in_progress < 0) load_in_progress = 0;
933 return Qnil;
934 }
935
936 static Lisp_Object
937 load_descriptor_unwind (oldlist)
938 Lisp_Object oldlist;
939 {
940 load_descriptor_list = oldlist;
941 return Qnil;
942 }
943
944 /* Close all descriptors in use for Floads.
945 This is used when starting a subprocess. */
946
947 void
948 close_load_descs ()
949 {
950 #ifndef WINDOWSNT
951 Lisp_Object tail;
952 for (tail = load_descriptor_list; !NILP (tail); tail = XCDR (tail))
953 emacs_close (XFASTINT (XCAR (tail)));
954 #endif
955 }
956 \f
957 static int
958 complete_filename_p (pathname)
959 Lisp_Object pathname;
960 {
961 register unsigned char *s = XSTRING (pathname)->data;
962 return (IS_DIRECTORY_SEP (s[0])
963 || (XSTRING (pathname)->size > 2
964 && IS_DEVICE_SEP (s[1]) && IS_DIRECTORY_SEP (s[2]))
965 #ifdef ALTOS
966 || *s == '@'
967 #endif
968 #ifdef VMS
969 || index (s, ':')
970 #endif /* VMS */
971 );
972 }
973
974 DEFUN ("locate-file-internal", Flocate_file_internal, Slocate_file_internal, 2, 4, 0,
975 doc: /* Search for FILENAME through PATH.
976 If SUFFIXES is non-nil, it should be a list of suffixes to append to
977 file name when searching.
978 If non-nil, PREDICATE is used instead of `file-readable-p'.
979 PREDICATE can also be an integer to pass to the access(2) function,
980 in which case file-name-handlers are ignored. */)
981 (filename, path, suffixes, predicate)
982 Lisp_Object filename, path, suffixes, predicate;
983 {
984 Lisp_Object file;
985 int fd = openp (path, filename, suffixes, &file, predicate);
986 if (NILP (predicate) && fd > 0)
987 close (fd);
988 return file;
989 }
990
991
992 /* Search for a file whose name is STR, looking in directories
993 in the Lisp list PATH, and trying suffixes from SUFFIX.
994 On success, returns a file descriptor. On failure, returns -1.
995
996 SUFFIXES is a list of strings containing possible suffixes.
997 The empty suffix is automatically added iff the list is empty.
998
999 PREDICATE non-nil means don't open the files,
1000 just look for one that satisfies the predicate. In this case,
1001 returns 1 on success. The predicate can be a lisp function or
1002 an integer to pass to `access' (in which case file-name-handlers
1003 are ignored).
1004
1005 If STOREPTR is nonzero, it points to a slot where the name of
1006 the file actually found should be stored as a Lisp string.
1007 nil is stored there on failure.
1008
1009 If the file we find is remote, return -2
1010 but store the found remote file name in *STOREPTR. */
1011
1012 int
1013 openp (path, str, suffixes, storeptr, predicate)
1014 Lisp_Object path, str;
1015 Lisp_Object suffixes;
1016 Lisp_Object *storeptr;
1017 Lisp_Object predicate;
1018 {
1019 register int fd;
1020 int fn_size = 100;
1021 char buf[100];
1022 register char *fn = buf;
1023 int absolute = 0;
1024 int want_size;
1025 Lisp_Object filename;
1026 struct stat st;
1027 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5, gcpro6;
1028 Lisp_Object string, tail, encoded_fn;
1029 int max_suffix_len = 0;
1030
1031 for (tail = suffixes; CONSP (tail); tail = XCDR (tail))
1032 {
1033 CHECK_STRING_CAR (tail);
1034 max_suffix_len = max (max_suffix_len,
1035 STRING_BYTES (XSTRING (XCAR (tail))));
1036 }
1037
1038 string = filename = Qnil;
1039 GCPRO6 (str, string, filename, path, suffixes, encoded_fn);
1040
1041 if (storeptr)
1042 *storeptr = Qnil;
1043
1044 if (complete_filename_p (str))
1045 absolute = 1;
1046
1047 for (; CONSP (path); path = XCDR (path))
1048 {
1049 filename = Fexpand_file_name (str, XCAR (path));
1050 if (!complete_filename_p (filename))
1051 /* If there are non-absolute elts in PATH (eg ".") */
1052 /* Of course, this could conceivably lose if luser sets
1053 default-directory to be something non-absolute... */
1054 {
1055 filename = Fexpand_file_name (filename, current_buffer->directory);
1056 if (!complete_filename_p (filename))
1057 /* Give up on this path element! */
1058 continue;
1059 }
1060
1061 /* Calculate maximum size of any filename made from
1062 this path element/specified file name and any possible suffix. */
1063 want_size = max_suffix_len + STRING_BYTES (XSTRING (filename)) + 1;
1064 if (fn_size < want_size)
1065 fn = (char *) alloca (fn_size = 100 + want_size);
1066
1067 /* Loop over suffixes. */
1068 for (tail = NILP (suffixes) ? default_suffixes : suffixes;
1069 CONSP (tail); tail = XCDR (tail))
1070 {
1071 int lsuffix = STRING_BYTES (XSTRING (XCAR (tail)));
1072 Lisp_Object handler;
1073 int exists;
1074
1075 /* Concatenate path element/specified name with the suffix.
1076 If the directory starts with /:, remove that. */
1077 if (XSTRING (filename)->size > 2
1078 && XSTRING (filename)->data[0] == '/'
1079 && XSTRING (filename)->data[1] == ':')
1080 {
1081 strncpy (fn, XSTRING (filename)->data + 2,
1082 STRING_BYTES (XSTRING (filename)) - 2);
1083 fn[STRING_BYTES (XSTRING (filename)) - 2] = 0;
1084 }
1085 else
1086 {
1087 strncpy (fn, XSTRING (filename)->data,
1088 STRING_BYTES (XSTRING (filename)));
1089 fn[STRING_BYTES (XSTRING (filename))] = 0;
1090 }
1091
1092 if (lsuffix != 0) /* Bug happens on CCI if lsuffix is 0. */
1093 strncat (fn, XSTRING (XCAR (tail))->data, lsuffix);
1094
1095 /* Check that the file exists and is not a directory. */
1096 /* We used to only check for handlers on non-absolute file names:
1097 if (absolute)
1098 handler = Qnil;
1099 else
1100 handler = Ffind_file_name_handler (filename, Qfile_exists_p);
1101 It's not clear why that was the case and it breaks things like
1102 (load "/bar.el") where the file is actually "/bar.el.gz". */
1103 handler = Ffind_file_name_handler (filename, Qfile_exists_p);
1104 string = build_string (fn);
1105 if ((!NILP (handler) || !NILP (predicate)) && !NATNUMP (predicate))
1106 {
1107 if (NILP (predicate))
1108 exists = !NILP (Ffile_readable_p (string));
1109 else
1110 exists = !NILP (call1 (predicate, string));
1111 if (exists && !NILP (Ffile_directory_p (string)))
1112 exists = 0;
1113
1114 if (exists)
1115 {
1116 /* We succeeded; return this descriptor and filename. */
1117 if (storeptr)
1118 *storeptr = string;
1119 UNGCPRO;
1120 return -2;
1121 }
1122 }
1123 else
1124 {
1125 char *pfn;
1126
1127 encoded_fn = ENCODE_FILE (string);
1128 pfn = XSTRING (encoded_fn)->data;
1129 exists = (stat (pfn, &st) >= 0
1130 && (st.st_mode & S_IFMT) != S_IFDIR);
1131 if (exists)
1132 {
1133 /* Check that we can access or open it. */
1134 if (NATNUMP (predicate))
1135 fd = (access (pfn, XFASTINT (predicate)) == 0) ? 1 : -1;
1136 else
1137 fd = emacs_open (pfn, O_RDONLY, 0);
1138
1139 if (fd >= 0)
1140 {
1141 /* We succeeded; return this descriptor and filename. */
1142 if (storeptr)
1143 *storeptr = string;
1144 UNGCPRO;
1145 return fd;
1146 }
1147 }
1148 }
1149 }
1150 if (absolute)
1151 break;
1152 }
1153
1154 UNGCPRO;
1155 return -1;
1156 }
1157
1158 \f
1159 /* Merge the list we've accumulated of globals from the current input source
1160 into the load_history variable. The details depend on whether
1161 the source has an associated file name or not. */
1162
1163 static void
1164 build_load_history (stream, source)
1165 FILE *stream;
1166 Lisp_Object source;
1167 {
1168 register Lisp_Object tail, prev, newelt;
1169 register Lisp_Object tem, tem2;
1170 register int foundit, loading;
1171
1172 loading = stream || !NARROWED;
1173
1174 tail = Vload_history;
1175 prev = Qnil;
1176 foundit = 0;
1177 while (CONSP (tail))
1178 {
1179 tem = XCAR (tail);
1180
1181 /* Find the feature's previous assoc list... */
1182 if (!NILP (Fequal (source, Fcar (tem))))
1183 {
1184 foundit = 1;
1185
1186 /* If we're loading, remove it. */
1187 if (loading)
1188 {
1189 if (NILP (prev))
1190 Vload_history = XCDR (tail);
1191 else
1192 Fsetcdr (prev, XCDR (tail));
1193 }
1194
1195 /* Otherwise, cons on new symbols that are not already members. */
1196 else
1197 {
1198 tem2 = Vcurrent_load_list;
1199
1200 while (CONSP (tem2))
1201 {
1202 newelt = XCAR (tem2);
1203
1204 if (NILP (Fmemq (newelt, tem)))
1205 Fsetcar (tail, Fcons (XCAR (tem),
1206 Fcons (newelt, XCDR (tem))));
1207
1208 tem2 = XCDR (tem2);
1209 QUIT;
1210 }
1211 }
1212 }
1213 else
1214 prev = tail;
1215 tail = XCDR (tail);
1216 QUIT;
1217 }
1218
1219 /* If we're loading, cons the new assoc onto the front of load-history,
1220 the most-recently-loaded position. Also do this if we didn't find
1221 an existing member for the current source. */
1222 if (loading || !foundit)
1223 Vload_history = Fcons (Fnreverse (Vcurrent_load_list),
1224 Vload_history);
1225 }
1226
1227 Lisp_Object
1228 unreadpure (junk) /* Used as unwind-protect function in readevalloop */
1229 Lisp_Object junk;
1230 {
1231 read_pure = 0;
1232 return Qnil;
1233 }
1234
1235 static Lisp_Object
1236 readevalloop_1 (old)
1237 Lisp_Object old;
1238 {
1239 load_convert_to_unibyte = ! NILP (old);
1240 return Qnil;
1241 }
1242
1243 /* Signal an `end-of-file' error, if possible with file name
1244 information. */
1245
1246 static void
1247 end_of_file_error ()
1248 {
1249 Lisp_Object data;
1250
1251 if (STRINGP (Vload_file_name))
1252 data = Fcons (Vload_file_name, Qnil);
1253 else
1254 data = Qnil;
1255
1256 Fsignal (Qend_of_file, data);
1257 }
1258
1259 /* UNIBYTE specifies how to set load_convert_to_unibyte
1260 for this invocation.
1261 READFUN, if non-nil, is used instead of `read'. */
1262
1263 static void
1264 readevalloop (readcharfun, stream, sourcename, evalfun, printflag, unibyte, readfun)
1265 Lisp_Object readcharfun;
1266 FILE *stream;
1267 Lisp_Object sourcename;
1268 Lisp_Object (*evalfun) ();
1269 int printflag;
1270 Lisp_Object unibyte, readfun;
1271 {
1272 register int c;
1273 register Lisp_Object val;
1274 int count = specpdl_ptr - specpdl;
1275 struct gcpro gcpro1;
1276 struct buffer *b = 0;
1277 int continue_reading_p;
1278
1279 if (BUFFERP (readcharfun))
1280 b = XBUFFER (readcharfun);
1281 else if (MARKERP (readcharfun))
1282 b = XMARKER (readcharfun)->buffer;
1283
1284 specbind (Qstandard_input, readcharfun);
1285 specbind (Qcurrent_load_list, Qnil);
1286 record_unwind_protect (readevalloop_1, load_convert_to_unibyte ? Qt : Qnil);
1287 load_convert_to_unibyte = !NILP (unibyte);
1288
1289 readchar_backlog = -1;
1290
1291 GCPRO1 (sourcename);
1292
1293 LOADHIST_ATTACH (sourcename);
1294
1295 continue_reading_p = 1;
1296 while (continue_reading_p)
1297 {
1298 if (b != 0 && NILP (b->name))
1299 error ("Reading from killed buffer");
1300
1301 instream = stream;
1302 c = READCHAR;
1303 if (c == ';')
1304 {
1305 while ((c = READCHAR) != '\n' && c != -1);
1306 continue;
1307 }
1308 if (c < 0) break;
1309
1310 /* Ignore whitespace here, so we can detect eof. */
1311 if (c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r')
1312 continue;
1313
1314 if (!NILP (Vpurify_flag) && c == '(')
1315 {
1316 int count1 = specpdl_ptr - specpdl;
1317 record_unwind_protect (unreadpure, Qnil);
1318 val = read_list (-1, readcharfun);
1319 unbind_to (count1, Qnil);
1320 }
1321 else
1322 {
1323 UNREAD (c);
1324 read_objects = Qnil;
1325 if (!NILP (readfun))
1326 {
1327 val = call1 (readfun, readcharfun);
1328
1329 /* If READCHARFUN has set point to ZV, we should
1330 stop reading, even if the form read sets point
1331 to a different value when evaluated. */
1332 if (BUFFERP (readcharfun))
1333 {
1334 struct buffer *b = XBUFFER (readcharfun);
1335 if (BUF_PT (b) == BUF_ZV (b))
1336 continue_reading_p = 0;
1337 }
1338 }
1339 else if (! NILP (Vload_read_function))
1340 val = call1 (Vload_read_function, readcharfun);
1341 else
1342 val = read_internal_start (readcharfun, Qnil, Qnil);
1343 }
1344
1345 val = (*evalfun) (val);
1346
1347 if (printflag)
1348 {
1349 Vvalues = Fcons (val, Vvalues);
1350 if (EQ (Vstandard_output, Qt))
1351 Fprin1 (val, Qnil);
1352 else
1353 Fprint (val, Qnil);
1354 }
1355 }
1356
1357 build_load_history (stream, sourcename);
1358 UNGCPRO;
1359
1360 unbind_to (count, Qnil);
1361 }
1362
1363 DEFUN ("eval-buffer", Feval_buffer, Seval_buffer, 0, 5, "",
1364 doc: /* Execute the current buffer as Lisp code.
1365 Programs can pass two arguments, BUFFER and PRINTFLAG.
1366 BUFFER is the buffer to evaluate (nil means use current buffer).
1367 PRINTFLAG controls printing of output:
1368 nil means discard it; anything else is stream for print.
1369
1370 If the optional third argument FILENAME is non-nil,
1371 it specifies the file name to use for `load-history'.
1372 The optional fourth argument UNIBYTE specifies `load-convert-to-unibyte'
1373 for this invocation.
1374
1375 The optional fifth argument DO-ALLOW-PRINT, if not-nil, specifies that
1376 `print' and related functions should work normally even if PRINTFLAG is nil.
1377
1378 This function preserves the position of point. */)
1379 (buffer, printflag, filename, unibyte, do_allow_print)
1380 Lisp_Object buffer, printflag, filename, unibyte, do_allow_print;
1381 {
1382 int count = specpdl_ptr - specpdl;
1383 Lisp_Object tem, buf;
1384
1385 if (NILP (buffer))
1386 buf = Fcurrent_buffer ();
1387 else
1388 buf = Fget_buffer (buffer);
1389 if (NILP (buf))
1390 error ("No such buffer");
1391
1392 if (NILP (printflag) && NILP (do_allow_print))
1393 tem = Qsymbolp;
1394 else
1395 tem = printflag;
1396
1397 if (NILP (filename))
1398 filename = XBUFFER (buf)->filename;
1399
1400 specbind (Qstandard_output, tem);
1401 record_unwind_protect (save_excursion_restore, save_excursion_save ());
1402 BUF_SET_PT (XBUFFER (buf), BUF_BEGV (XBUFFER (buf)));
1403 readevalloop (buf, 0, filename, Feval, !NILP (printflag), unibyte, Qnil);
1404 unbind_to (count, Qnil);
1405
1406 return Qnil;
1407 }
1408
1409 DEFUN ("eval-region", Feval_region, Seval_region, 2, 4, "r",
1410 doc: /* Execute the region as Lisp code.
1411 When called from programs, expects two arguments,
1412 giving starting and ending indices in the current buffer
1413 of the text to be executed.
1414 Programs can pass third argument PRINTFLAG which controls output:
1415 nil means discard it; anything else is stream for printing it.
1416 Also the fourth argument READ-FUNCTION, if non-nil, is used
1417 instead of `read' to read each expression. It gets one argument
1418 which is the input stream for reading characters.
1419
1420 This function does not move point. */)
1421 (start, end, printflag, read_function)
1422 Lisp_Object start, end, printflag, read_function;
1423 {
1424 int count = specpdl_ptr - specpdl;
1425 Lisp_Object tem, cbuf;
1426
1427 cbuf = Fcurrent_buffer ();
1428
1429 if (NILP (printflag))
1430 tem = Qsymbolp;
1431 else
1432 tem = printflag;
1433 specbind (Qstandard_output, tem);
1434
1435 if (NILP (printflag))
1436 record_unwind_protect (save_excursion_restore, save_excursion_save ());
1437 record_unwind_protect (save_restriction_restore, save_restriction_save ());
1438
1439 /* This both uses start and checks its type. */
1440 Fgoto_char (start);
1441 Fnarrow_to_region (make_number (BEGV), end);
1442 readevalloop (cbuf, 0, XBUFFER (cbuf)->filename, Feval,
1443 !NILP (printflag), Qnil, read_function);
1444
1445 return unbind_to (count, Qnil);
1446 }
1447
1448 \f
1449 DEFUN ("read", Fread, Sread, 0, 1, 0,
1450 doc: /* Read one Lisp expression as text from STREAM, return as Lisp object.
1451 If STREAM is nil, use the value of `standard-input' (which see).
1452 STREAM or the value of `standard-input' may be:
1453 a buffer (read from point and advance it)
1454 a marker (read from where it points and advance it)
1455 a function (call it with no arguments for each character,
1456 call it with a char as argument to push a char back)
1457 a string (takes text from string, starting at the beginning)
1458 t (read text line using minibuffer and use it, or read from
1459 standard input in batch mode). */)
1460 (stream)
1461 Lisp_Object stream;
1462 {
1463 extern Lisp_Object Fread_minibuffer ();
1464 Lisp_Object tem;
1465 if (NILP (stream))
1466 stream = Vstandard_input;
1467 if (EQ (stream, Qt))
1468 stream = Qread_char;
1469 if (EQ (stream, Qread_char))
1470 return Fread_minibuffer (build_string ("Lisp expression: "), Qnil);
1471
1472 return read_internal_start (stream, Qnil, Qnil);
1473 }
1474
1475 DEFUN ("read-from-string", Fread_from_string, Sread_from_string, 1, 3, 0,
1476 doc: /* Read one Lisp expression which is represented as text by STRING.
1477 Returns a cons: (OBJECT-READ . FINAL-STRING-INDEX).
1478 START and END optionally delimit a substring of STRING from which to read;
1479 they default to 0 and (length STRING) respectively. */)
1480 (string, start, end)
1481 Lisp_Object string, start, end;
1482 {
1483 Lisp_Object ret;
1484 CHECK_STRING (string);
1485 /* read_internal_start sets read_from_string_index. */
1486 ret = read_internal_start (string, start, end);
1487 return Fcons (ret, make_number (read_from_string_index));
1488 }
1489
1490 /* Function to set up the global context we need in toplevel read
1491 calls. */
1492 static Lisp_Object
1493 read_internal_start (stream, start, end)
1494 Lisp_Object stream;
1495 Lisp_Object start; /* Only used when stream is a string. */
1496 Lisp_Object end; /* Only used when stream is a string. */
1497 {
1498 Lisp_Object retval;
1499
1500 readchar_backlog = -1;
1501 readchar_count = 0;
1502 new_backquote_flag = 0;
1503 read_objects = Qnil;
1504 if (EQ (Vread_with_symbol_positions, Qt)
1505 || EQ (Vread_with_symbol_positions, stream))
1506 Vread_symbol_positions_list = Qnil;
1507
1508 if (STRINGP (stream))
1509 {
1510 int startval, endval;
1511 if (NILP (end))
1512 endval = XSTRING (stream)->size;
1513 else
1514 {
1515 CHECK_NUMBER (end);
1516 endval = XINT (end);
1517 if (endval < 0 || endval > XSTRING (stream)->size)
1518 args_out_of_range (stream, end);
1519 }
1520
1521 if (NILP (start))
1522 startval = 0;
1523 else
1524 {
1525 CHECK_NUMBER (start);
1526 startval = XINT (start);
1527 if (startval < 0 || startval > endval)
1528 args_out_of_range (stream, start);
1529 }
1530 read_from_string_index = startval;
1531 read_from_string_index_byte = string_char_to_byte (stream, startval);
1532 read_from_string_limit = endval;
1533 }
1534
1535 retval = read0 (stream);
1536 if (EQ (Vread_with_symbol_positions, Qt)
1537 || EQ (Vread_with_symbol_positions, stream))
1538 Vread_symbol_positions_list = Fnreverse (Vread_symbol_positions_list);
1539 return retval;
1540 }
1541 \f
1542 /* Use this for recursive reads, in contexts where internal tokens
1543 are not allowed. */
1544
1545 static Lisp_Object
1546 read0 (readcharfun)
1547 Lisp_Object readcharfun;
1548 {
1549 register Lisp_Object val;
1550 int c;
1551
1552 val = read1 (readcharfun, &c, 0);
1553 if (c)
1554 Fsignal (Qinvalid_read_syntax, Fcons (Fmake_string (make_number (1),
1555 make_number (c)),
1556 Qnil));
1557
1558 return val;
1559 }
1560 \f
1561 static int read_buffer_size;
1562 static char *read_buffer;
1563
1564 /* Read multibyte form and return it as a character. C is a first
1565 byte of multibyte form, and rest of them are read from
1566 READCHARFUN. */
1567
1568 static int
1569 read_multibyte (c, readcharfun)
1570 register int c;
1571 Lisp_Object readcharfun;
1572 {
1573 /* We need the actual character code of this multibyte
1574 characters. */
1575 unsigned char str[MAX_MULTIBYTE_LENGTH];
1576 int len = 0;
1577 int bytes;
1578
1579 if (c < 0)
1580 return c;
1581
1582 str[len++] = c;
1583 while ((c = READCHAR) >= 0xA0
1584 && len < MAX_MULTIBYTE_LENGTH)
1585 {
1586 str[len++] = c;
1587 readchar_count--;
1588 }
1589 UNREAD (c);
1590 if (UNIBYTE_STR_AS_MULTIBYTE_P (str, len, bytes))
1591 return STRING_CHAR (str, len);
1592 /* The byte sequence is not valid as multibyte. Unread all bytes
1593 but the first one, and return the first byte. */
1594 while (--len > 0)
1595 UNREAD (str[len]);
1596 return str[0];
1597 }
1598
1599 /* Read a \-escape sequence, assuming we already read the `\'.
1600 If the escape sequence forces unibyte, store 1 into *BYTEREP.
1601 If the escape sequence forces multibyte, store 2 into *BYTEREP.
1602 Otherwise store 0 into *BYTEREP. */
1603
1604 static int
1605 read_escape (readcharfun, stringp, byterep)
1606 Lisp_Object readcharfun;
1607 int stringp;
1608 int *byterep;
1609 {
1610 register int c = READCHAR;
1611
1612 *byterep = 0;
1613
1614 switch (c)
1615 {
1616 case -1:
1617 end_of_file_error ();
1618
1619 case 'a':
1620 return '\007';
1621 case 'b':
1622 return '\b';
1623 case 'd':
1624 return 0177;
1625 case 'e':
1626 return 033;
1627 case 'f':
1628 return '\f';
1629 case 'n':
1630 return '\n';
1631 case 'r':
1632 return '\r';
1633 case 't':
1634 return '\t';
1635 case 'v':
1636 return '\v';
1637 case '\n':
1638 return -1;
1639 case ' ':
1640 if (stringp)
1641 return -1;
1642 return ' ';
1643
1644 case 'M':
1645 c = READCHAR;
1646 if (c != '-')
1647 error ("Invalid escape character syntax");
1648 c = READCHAR;
1649 if (c == '\\')
1650 c = read_escape (readcharfun, 0, byterep);
1651 return c | meta_modifier;
1652
1653 case 'S':
1654 c = READCHAR;
1655 if (c != '-')
1656 error ("Invalid escape character syntax");
1657 c = READCHAR;
1658 if (c == '\\')
1659 c = read_escape (readcharfun, 0, byterep);
1660 return c | shift_modifier;
1661
1662 case 'H':
1663 c = READCHAR;
1664 if (c != '-')
1665 error ("Invalid escape character syntax");
1666 c = READCHAR;
1667 if (c == '\\')
1668 c = read_escape (readcharfun, 0, byterep);
1669 return c | hyper_modifier;
1670
1671 case 'A':
1672 c = READCHAR;
1673 if (c != '-')
1674 error ("Invalid escape character syntax");
1675 c = READCHAR;
1676 if (c == '\\')
1677 c = read_escape (readcharfun, 0, byterep);
1678 return c | alt_modifier;
1679
1680 case 's':
1681 c = READCHAR;
1682 if (c != '-')
1683 error ("Invalid escape character syntax");
1684 c = READCHAR;
1685 if (c == '\\')
1686 c = read_escape (readcharfun, 0, byterep);
1687 return c | super_modifier;
1688
1689 case 'C':
1690 c = READCHAR;
1691 if (c != '-')
1692 error ("Invalid escape character syntax");
1693 case '^':
1694 c = READCHAR;
1695 if (c == '\\')
1696 c = read_escape (readcharfun, 0, byterep);
1697 if ((c & ~CHAR_MODIFIER_MASK) == '?')
1698 return 0177 | (c & CHAR_MODIFIER_MASK);
1699 else if (! SINGLE_BYTE_CHAR_P ((c & ~CHAR_MODIFIER_MASK)))
1700 return c | ctrl_modifier;
1701 /* ASCII control chars are made from letters (both cases),
1702 as well as the non-letters within 0100...0137. */
1703 else if ((c & 0137) >= 0101 && (c & 0137) <= 0132)
1704 return (c & (037 | ~0177));
1705 else if ((c & 0177) >= 0100 && (c & 0177) <= 0137)
1706 return (c & (037 | ~0177));
1707 else
1708 return c | ctrl_modifier;
1709
1710 case '0':
1711 case '1':
1712 case '2':
1713 case '3':
1714 case '4':
1715 case '5':
1716 case '6':
1717 case '7':
1718 /* An octal escape, as in ANSI C. */
1719 {
1720 register int i = c - '0';
1721 register int count = 0;
1722 while (++count < 3)
1723 {
1724 if ((c = READCHAR) >= '0' && c <= '7')
1725 {
1726 i *= 8;
1727 i += c - '0';
1728 }
1729 else
1730 {
1731 UNREAD (c);
1732 break;
1733 }
1734 }
1735
1736 *byterep = 1;
1737 return i;
1738 }
1739
1740 case 'x':
1741 /* A hex escape, as in ANSI C. */
1742 {
1743 int i = 0;
1744 while (1)
1745 {
1746 c = READCHAR;
1747 if (c >= '0' && c <= '9')
1748 {
1749 i *= 16;
1750 i += c - '0';
1751 }
1752 else if ((c >= 'a' && c <= 'f')
1753 || (c >= 'A' && c <= 'F'))
1754 {
1755 i *= 16;
1756 if (c >= 'a' && c <= 'f')
1757 i += c - 'a' + 10;
1758 else
1759 i += c - 'A' + 10;
1760 }
1761 else
1762 {
1763 UNREAD (c);
1764 break;
1765 }
1766 }
1767
1768 *byterep = 2;
1769 return i;
1770 }
1771
1772 default:
1773 if (BASE_LEADING_CODE_P (c))
1774 c = read_multibyte (c, readcharfun);
1775 return c;
1776 }
1777 }
1778
1779
1780 /* Read an integer in radix RADIX using READCHARFUN to read
1781 characters. RADIX must be in the interval [2..36]; if it isn't, a
1782 read error is signaled . Value is the integer read. Signals an
1783 error if encountering invalid read syntax or if RADIX is out of
1784 range. */
1785
1786 static Lisp_Object
1787 read_integer (readcharfun, radix)
1788 Lisp_Object readcharfun;
1789 int radix;
1790 {
1791 int ndigits = 0, invalid_p, c, sign = 0;
1792 EMACS_INT number = 0;
1793
1794 if (radix < 2 || radix > 36)
1795 invalid_p = 1;
1796 else
1797 {
1798 number = ndigits = invalid_p = 0;
1799 sign = 1;
1800
1801 c = READCHAR;
1802 if (c == '-')
1803 {
1804 c = READCHAR;
1805 sign = -1;
1806 }
1807 else if (c == '+')
1808 c = READCHAR;
1809
1810 while (c >= 0)
1811 {
1812 int digit;
1813
1814 if (c >= '0' && c <= '9')
1815 digit = c - '0';
1816 else if (c >= 'a' && c <= 'z')
1817 digit = c - 'a' + 10;
1818 else if (c >= 'A' && c <= 'Z')
1819 digit = c - 'A' + 10;
1820 else
1821 {
1822 UNREAD (c);
1823 break;
1824 }
1825
1826 if (digit < 0 || digit >= radix)
1827 invalid_p = 1;
1828
1829 number = radix * number + digit;
1830 ++ndigits;
1831 c = READCHAR;
1832 }
1833 }
1834
1835 if (ndigits == 0 || invalid_p)
1836 {
1837 char buf[50];
1838 sprintf (buf, "integer, radix %d", radix);
1839 Fsignal (Qinvalid_read_syntax, Fcons (build_string (buf), Qnil));
1840 }
1841
1842 return make_number (sign * number);
1843 }
1844
1845
1846 /* Convert unibyte text in read_buffer to multibyte.
1847
1848 Initially, *P is a pointer after the end of the unibyte text, and
1849 the pointer *END points after the end of read_buffer.
1850
1851 If read_buffer doesn't have enough room to hold the result
1852 of the conversion, reallocate it and adjust *P and *END.
1853
1854 At the end, make *P point after the result of the conversion, and
1855 return in *NCHARS the number of characters in the converted
1856 text. */
1857
1858 static void
1859 to_multibyte (p, end, nchars)
1860 char **p, **end;
1861 int *nchars;
1862 {
1863 int nbytes;
1864
1865 parse_str_as_multibyte (read_buffer, *p - read_buffer, &nbytes, nchars);
1866 if (read_buffer_size < 2 * nbytes)
1867 {
1868 int offset = *p - read_buffer;
1869 read_buffer_size = 2 * max (read_buffer_size, nbytes);
1870 read_buffer = (char *) xrealloc (read_buffer, read_buffer_size);
1871 *p = read_buffer + offset;
1872 *end = read_buffer + read_buffer_size;
1873 }
1874
1875 if (nbytes != *nchars)
1876 nbytes = str_as_multibyte (read_buffer, read_buffer_size,
1877 *p - read_buffer, nchars);
1878
1879 *p = read_buffer + nbytes;
1880 }
1881
1882
1883 /* If the next token is ')' or ']' or '.', we store that character
1884 in *PCH and the return value is not interesting. Else, we store
1885 zero in *PCH and we read and return one lisp object.
1886
1887 FIRST_IN_LIST is nonzero if this is the first element of a list. */
1888
1889 static Lisp_Object
1890 read1 (readcharfun, pch, first_in_list)
1891 register Lisp_Object readcharfun;
1892 int *pch;
1893 int first_in_list;
1894 {
1895 register int c;
1896 int uninterned_symbol = 0;
1897
1898 *pch = 0;
1899
1900 retry:
1901
1902 c = READCHAR;
1903 if (c < 0)
1904 end_of_file_error ();
1905
1906 switch (c)
1907 {
1908 case '(':
1909 return read_list (0, readcharfun);
1910
1911 case '[':
1912 return read_vector (readcharfun, 0);
1913
1914 case ')':
1915 case ']':
1916 {
1917 *pch = c;
1918 return Qnil;
1919 }
1920
1921 case '#':
1922 c = READCHAR;
1923 if (c == '^')
1924 {
1925 c = READCHAR;
1926 if (c == '[')
1927 {
1928 Lisp_Object tmp;
1929 tmp = read_vector (readcharfun, 0);
1930 if (XVECTOR (tmp)->size < CHAR_TABLE_STANDARD_SLOTS
1931 || XVECTOR (tmp)->size > CHAR_TABLE_STANDARD_SLOTS + 10)
1932 error ("Invalid size char-table");
1933 XSETCHAR_TABLE (tmp, XCHAR_TABLE (tmp));
1934 XCHAR_TABLE (tmp)->top = Qt;
1935 return tmp;
1936 }
1937 else if (c == '^')
1938 {
1939 c = READCHAR;
1940 if (c == '[')
1941 {
1942 Lisp_Object tmp;
1943 tmp = read_vector (readcharfun, 0);
1944 if (XVECTOR (tmp)->size != SUB_CHAR_TABLE_STANDARD_SLOTS)
1945 error ("Invalid size char-table");
1946 XSETCHAR_TABLE (tmp, XCHAR_TABLE (tmp));
1947 XCHAR_TABLE (tmp)->top = Qnil;
1948 return tmp;
1949 }
1950 Fsignal (Qinvalid_read_syntax,
1951 Fcons (make_string ("#^^", 3), Qnil));
1952 }
1953 Fsignal (Qinvalid_read_syntax, Fcons (make_string ("#^", 2), Qnil));
1954 }
1955 if (c == '&')
1956 {
1957 Lisp_Object length;
1958 length = read1 (readcharfun, pch, first_in_list);
1959 c = READCHAR;
1960 if (c == '"')
1961 {
1962 Lisp_Object tmp, val;
1963 int size_in_chars = ((XFASTINT (length) + BITS_PER_CHAR - 1)
1964 / BITS_PER_CHAR);
1965
1966 UNREAD (c);
1967 tmp = read1 (readcharfun, pch, first_in_list);
1968 if (size_in_chars != XSTRING (tmp)->size
1969 /* We used to print 1 char too many
1970 when the number of bits was a multiple of 8.
1971 Accept such input in case it came from an old version. */
1972 && ! (XFASTINT (length)
1973 == (XSTRING (tmp)->size - 1) * BITS_PER_CHAR))
1974 Fsignal (Qinvalid_read_syntax,
1975 Fcons (make_string ("#&...", 5), Qnil));
1976
1977 val = Fmake_bool_vector (length, Qnil);
1978 bcopy (XSTRING (tmp)->data, XBOOL_VECTOR (val)->data,
1979 size_in_chars);
1980 /* Clear the extraneous bits in the last byte. */
1981 if (XINT (length) != size_in_chars * BITS_PER_CHAR)
1982 XBOOL_VECTOR (val)->data[size_in_chars - 1]
1983 &= (1 << (XINT (length) % BITS_PER_CHAR)) - 1;
1984 return val;
1985 }
1986 Fsignal (Qinvalid_read_syntax, Fcons (make_string ("#&...", 5),
1987 Qnil));
1988 }
1989 if (c == '[')
1990 {
1991 /* Accept compiled functions at read-time so that we don't have to
1992 build them using function calls. */
1993 Lisp_Object tmp;
1994 tmp = read_vector (readcharfun, 1);
1995 return Fmake_byte_code (XVECTOR (tmp)->size,
1996 XVECTOR (tmp)->contents);
1997 }
1998 if (c == '(')
1999 {
2000 Lisp_Object tmp;
2001 struct gcpro gcpro1;
2002 int ch;
2003
2004 /* Read the string itself. */
2005 tmp = read1 (readcharfun, &ch, 0);
2006 if (ch != 0 || !STRINGP (tmp))
2007 Fsignal (Qinvalid_read_syntax, Fcons (make_string ("#", 1), Qnil));
2008 GCPRO1 (tmp);
2009 /* Read the intervals and their properties. */
2010 while (1)
2011 {
2012 Lisp_Object beg, end, plist;
2013
2014 beg = read1 (readcharfun, &ch, 0);
2015 end = plist = Qnil;
2016 if (ch == ')')
2017 break;
2018 if (ch == 0)
2019 end = read1 (readcharfun, &ch, 0);
2020 if (ch == 0)
2021 plist = read1 (readcharfun, &ch, 0);
2022 if (ch)
2023 Fsignal (Qinvalid_read_syntax,
2024 Fcons (build_string ("invalid string property list"),
2025 Qnil));
2026 Fset_text_properties (beg, end, plist, tmp);
2027 }
2028 UNGCPRO;
2029 return tmp;
2030 }
2031
2032 /* #@NUMBER is used to skip NUMBER following characters.
2033 That's used in .elc files to skip over doc strings
2034 and function definitions. */
2035 if (c == '@')
2036 {
2037 int i, nskip = 0;
2038
2039 /* Read a decimal integer. */
2040 while ((c = READCHAR) >= 0
2041 && c >= '0' && c <= '9')
2042 {
2043 nskip *= 10;
2044 nskip += c - '0';
2045 }
2046 if (c >= 0)
2047 UNREAD (c);
2048
2049 if (load_force_doc_strings && EQ (readcharfun, Qget_file_char))
2050 {
2051 /* If we are supposed to force doc strings into core right now,
2052 record the last string that we skipped,
2053 and record where in the file it comes from. */
2054
2055 /* But first exchange saved_doc_string
2056 with prev_saved_doc_string, so we save two strings. */
2057 {
2058 char *temp = saved_doc_string;
2059 int temp_size = saved_doc_string_size;
2060 file_offset temp_pos = saved_doc_string_position;
2061 int temp_len = saved_doc_string_length;
2062
2063 saved_doc_string = prev_saved_doc_string;
2064 saved_doc_string_size = prev_saved_doc_string_size;
2065 saved_doc_string_position = prev_saved_doc_string_position;
2066 saved_doc_string_length = prev_saved_doc_string_length;
2067
2068 prev_saved_doc_string = temp;
2069 prev_saved_doc_string_size = temp_size;
2070 prev_saved_doc_string_position = temp_pos;
2071 prev_saved_doc_string_length = temp_len;
2072 }
2073
2074 if (saved_doc_string_size == 0)
2075 {
2076 saved_doc_string_size = nskip + 100;
2077 saved_doc_string = (char *) xmalloc (saved_doc_string_size);
2078 }
2079 if (nskip > saved_doc_string_size)
2080 {
2081 saved_doc_string_size = nskip + 100;
2082 saved_doc_string = (char *) xrealloc (saved_doc_string,
2083 saved_doc_string_size);
2084 }
2085
2086 saved_doc_string_position = file_tell (instream);
2087
2088 /* Copy that many characters into saved_doc_string. */
2089 for (i = 0; i < nskip && c >= 0; i++)
2090 saved_doc_string[i] = c = READCHAR;
2091
2092 saved_doc_string_length = i;
2093 }
2094 else
2095 {
2096 /* Skip that many characters. */
2097 for (i = 0; i < nskip && c >= 0; i++)
2098 c = READCHAR;
2099 }
2100
2101 goto retry;
2102 }
2103 if (c == '$')
2104 return Vload_file_name;
2105 if (c == '\'')
2106 return Fcons (Qfunction, Fcons (read0 (readcharfun), Qnil));
2107 /* #:foo is the uninterned symbol named foo. */
2108 if (c == ':')
2109 {
2110 uninterned_symbol = 1;
2111 c = READCHAR;
2112 goto default_label;
2113 }
2114 /* Reader forms that can reuse previously read objects. */
2115 if (c >= '0' && c <= '9')
2116 {
2117 int n = 0;
2118 Lisp_Object tem;
2119
2120 /* Read a non-negative integer. */
2121 while (c >= '0' && c <= '9')
2122 {
2123 n *= 10;
2124 n += c - '0';
2125 c = READCHAR;
2126 }
2127 /* #n=object returns object, but associates it with n for #n#. */
2128 if (c == '=')
2129 {
2130 /* Make a placeholder for #n# to use temporarily */
2131 Lisp_Object placeholder;
2132 Lisp_Object cell;
2133
2134 placeholder = Fcons(Qnil, Qnil);
2135 cell = Fcons (make_number (n), placeholder);
2136 read_objects = Fcons (cell, read_objects);
2137
2138 /* Read the object itself. */
2139 tem = read0 (readcharfun);
2140
2141 /* Now put it everywhere the placeholder was... */
2142 substitute_object_in_subtree (tem, placeholder);
2143
2144 /* ...and #n# will use the real value from now on. */
2145 Fsetcdr (cell, tem);
2146
2147 return tem;
2148 }
2149 /* #n# returns a previously read object. */
2150 if (c == '#')
2151 {
2152 tem = Fassq (make_number (n), read_objects);
2153 if (CONSP (tem))
2154 return XCDR (tem);
2155 /* Fall through to error message. */
2156 }
2157 else if (c == 'r' || c == 'R')
2158 return read_integer (readcharfun, n);
2159
2160 /* Fall through to error message. */
2161 }
2162 else if (c == 'x' || c == 'X')
2163 return read_integer (readcharfun, 16);
2164 else if (c == 'o' || c == 'O')
2165 return read_integer (readcharfun, 8);
2166 else if (c == 'b' || c == 'B')
2167 return read_integer (readcharfun, 2);
2168
2169 UNREAD (c);
2170 Fsignal (Qinvalid_read_syntax, Fcons (make_string ("#", 1), Qnil));
2171
2172 case ';':
2173 while ((c = READCHAR) >= 0 && c != '\n');
2174 goto retry;
2175
2176 case '\'':
2177 {
2178 return Fcons (Qquote, Fcons (read0 (readcharfun), Qnil));
2179 }
2180
2181 case '`':
2182 if (first_in_list)
2183 goto default_label;
2184 else
2185 {
2186 Lisp_Object value;
2187
2188 new_backquote_flag++;
2189 value = read0 (readcharfun);
2190 new_backquote_flag--;
2191
2192 return Fcons (Qbackquote, Fcons (value, Qnil));
2193 }
2194
2195 case ',':
2196 if (new_backquote_flag)
2197 {
2198 Lisp_Object comma_type = Qnil;
2199 Lisp_Object value;
2200 int ch = READCHAR;
2201
2202 if (ch == '@')
2203 comma_type = Qcomma_at;
2204 else if (ch == '.')
2205 comma_type = Qcomma_dot;
2206 else
2207 {
2208 if (ch >= 0) UNREAD (ch);
2209 comma_type = Qcomma;
2210 }
2211
2212 new_backquote_flag--;
2213 value = read0 (readcharfun);
2214 new_backquote_flag++;
2215 return Fcons (comma_type, Fcons (value, Qnil));
2216 }
2217 else
2218 goto default_label;
2219
2220 case '?':
2221 {
2222 int discard;
2223
2224 c = READCHAR;
2225 if (c < 0)
2226 end_of_file_error ();
2227
2228 if (c == '\\')
2229 c = read_escape (readcharfun, 0, &discard);
2230 else if (BASE_LEADING_CODE_P (c))
2231 c = read_multibyte (c, readcharfun);
2232
2233 return make_number (c);
2234 }
2235
2236 case '"':
2237 {
2238 char *p = read_buffer;
2239 char *end = read_buffer + read_buffer_size;
2240 register int c;
2241 /* 1 if we saw an escape sequence specifying
2242 a multibyte character, or a multibyte character. */
2243 int force_multibyte = 0;
2244 /* 1 if we saw an escape sequence specifying
2245 a single-byte character. */
2246 int force_singlebyte = 0;
2247 /* 1 if read_buffer contains multibyte text now. */
2248 int is_multibyte = 0;
2249 int cancel = 0;
2250 int nchars = 0;
2251
2252 while ((c = READCHAR) >= 0
2253 && c != '\"')
2254 {
2255 if (end - p < MAX_MULTIBYTE_LENGTH)
2256 {
2257 int offset = p - read_buffer;
2258 read_buffer = (char *) xrealloc (read_buffer,
2259 read_buffer_size *= 2);
2260 p = read_buffer + offset;
2261 end = read_buffer + read_buffer_size;
2262 }
2263
2264 if (c == '\\')
2265 {
2266 int byterep;
2267
2268 c = read_escape (readcharfun, 1, &byterep);
2269
2270 /* C is -1 if \ newline has just been seen */
2271 if (c == -1)
2272 {
2273 if (p == read_buffer)
2274 cancel = 1;
2275 continue;
2276 }
2277
2278 if (byterep == 1)
2279 force_singlebyte = 1;
2280 else if (byterep == 2)
2281 force_multibyte = 1;
2282 }
2283
2284 /* A character that must be multibyte forces multibyte. */
2285 if (! SINGLE_BYTE_CHAR_P (c & ~CHAR_MODIFIER_MASK))
2286 force_multibyte = 1;
2287
2288 /* If we just discovered the need to be multibyte,
2289 convert the text accumulated thus far. */
2290 if (force_multibyte && ! is_multibyte)
2291 {
2292 is_multibyte = 1;
2293 to_multibyte (&p, &end, &nchars);
2294 }
2295
2296 /* Allow `\C- ' and `\C-?'. */
2297 if (c == (CHAR_CTL | ' '))
2298 c = 0;
2299 else if (c == (CHAR_CTL | '?'))
2300 c = 127;
2301
2302 if (c & CHAR_SHIFT)
2303 {
2304 /* Shift modifier is valid only with [A-Za-z]. */
2305 if ((c & 0377) >= 'A' && (c & 0377) <= 'Z')
2306 c &= ~CHAR_SHIFT;
2307 else if ((c & 0377) >= 'a' && (c & 0377) <= 'z')
2308 c = (c & ~CHAR_SHIFT) - ('a' - 'A');
2309 }
2310
2311 if (c & CHAR_META)
2312 /* Move the meta bit to the right place for a string. */
2313 c = (c & ~CHAR_META) | 0x80;
2314 if (c & CHAR_MODIFIER_MASK)
2315 error ("Invalid modifier in string");
2316
2317 if (is_multibyte)
2318 p += CHAR_STRING (c, p);
2319 else
2320 *p++ = c;
2321
2322 nchars++;
2323 }
2324
2325 if (c < 0)
2326 end_of_file_error ();
2327
2328 /* If purifying, and string starts with \ newline,
2329 return zero instead. This is for doc strings
2330 that we are really going to find in etc/DOC.nn.nn */
2331 if (!NILP (Vpurify_flag) && NILP (Vdoc_file_name) && cancel)
2332 return make_number (0);
2333
2334 if (is_multibyte || force_singlebyte)
2335 ;
2336 else if (load_convert_to_unibyte)
2337 {
2338 Lisp_Object string;
2339 to_multibyte (&p, &end, &nchars);
2340 if (p - read_buffer != nchars)
2341 {
2342 string = make_multibyte_string (read_buffer, nchars,
2343 p - read_buffer);
2344 return Fstring_make_unibyte (string);
2345 }
2346 /* We can make a unibyte string directly. */
2347 is_multibyte = 0;
2348 }
2349 else if (EQ (readcharfun, Qget_file_char)
2350 || EQ (readcharfun, Qlambda))
2351 {
2352 /* Nowadays, reading directly from a file is used only for
2353 compiled Emacs Lisp files, and those always use the
2354 Emacs internal encoding. Meanwhile, Qlambda is used
2355 for reading dynamic byte code (compiled with
2356 byte-compile-dynamic = t). So make the string multibyte
2357 if the string contains any multibyte sequences.
2358 (to_multibyte is a no-op if not.) */
2359 to_multibyte (&p, &end, &nchars);
2360 is_multibyte = (p - read_buffer) != nchars;
2361 }
2362 else
2363 /* In all other cases, if we read these bytes as
2364 separate characters, treat them as separate characters now. */
2365 ;
2366
2367 /* We want readchar_count to be the number of characters, not
2368 bytes. Hence we adjust for multibyte characters in the
2369 string. ... But it doesn't seem to be necessary, because
2370 READCHAR *does* read multibyte characters from buffers. */
2371 /* readchar_count -= (p - read_buffer) - nchars; */
2372 if (read_pure)
2373 return make_pure_string (read_buffer, nchars, p - read_buffer,
2374 is_multibyte);
2375 return make_specified_string (read_buffer, nchars, p - read_buffer,
2376 is_multibyte);
2377 }
2378
2379 case '.':
2380 {
2381 int next_char = READCHAR;
2382 UNREAD (next_char);
2383
2384 if (next_char <= 040
2385 || index ("\"'`,(", next_char))
2386 {
2387 *pch = c;
2388 return Qnil;
2389 }
2390
2391 /* Otherwise, we fall through! Note that the atom-reading loop
2392 below will now loop at least once, assuring that we will not
2393 try to UNREAD two characters in a row. */
2394 }
2395 default:
2396 default_label:
2397 if (c <= 040) goto retry;
2398 {
2399 char *p = read_buffer;
2400 int quoted = 0;
2401
2402 {
2403 char *end = read_buffer + read_buffer_size;
2404
2405 while (c > 040
2406 && !(c == '\"' || c == '\'' || c == ';'
2407 || c == '(' || c == ')'
2408 || c == '[' || c == ']' || c == '#'))
2409 {
2410 if (end - p < MAX_MULTIBYTE_LENGTH)
2411 {
2412 int offset = p - read_buffer;
2413 read_buffer = (char *) xrealloc (read_buffer,
2414 read_buffer_size *= 2);
2415 p = read_buffer + offset;
2416 end = read_buffer + read_buffer_size;
2417 }
2418
2419 if (c == '\\')
2420 {
2421 c = READCHAR;
2422 if (c == -1)
2423 end_of_file_error ();
2424 quoted = 1;
2425 }
2426
2427 if (! SINGLE_BYTE_CHAR_P (c))
2428 p += CHAR_STRING (c, p);
2429 else
2430 *p++ = c;
2431
2432 c = READCHAR;
2433 }
2434
2435 if (p == end)
2436 {
2437 int offset = p - read_buffer;
2438 read_buffer = (char *) xrealloc (read_buffer,
2439 read_buffer_size *= 2);
2440 p = read_buffer + offset;
2441 end = read_buffer + read_buffer_size;
2442 }
2443 *p = 0;
2444 if (c >= 0)
2445 UNREAD (c);
2446 }
2447
2448 if (!quoted && !uninterned_symbol)
2449 {
2450 register char *p1;
2451 register Lisp_Object val;
2452 p1 = read_buffer;
2453 if (*p1 == '+' || *p1 == '-') p1++;
2454 /* Is it an integer? */
2455 if (p1 != p)
2456 {
2457 while (p1 != p && (c = *p1) >= '0' && c <= '9') p1++;
2458 /* Integers can have trailing decimal points. */
2459 if (p1 > read_buffer && p1 < p && *p1 == '.') p1++;
2460 if (p1 == p)
2461 /* It is an integer. */
2462 {
2463 if (p1[-1] == '.')
2464 p1[-1] = '\0';
2465 if (sizeof (int) == sizeof (EMACS_INT))
2466 XSETINT (val, atoi (read_buffer));
2467 else if (sizeof (long) == sizeof (EMACS_INT))
2468 XSETINT (val, atol (read_buffer));
2469 else
2470 abort ();
2471 return val;
2472 }
2473 }
2474 if (isfloat_string (read_buffer))
2475 {
2476 /* Compute NaN and infinities using 0.0 in a variable,
2477 to cope with compilers that think they are smarter
2478 than we are. */
2479 double zero = 0.0;
2480
2481 double value;
2482
2483 /* Negate the value ourselves. This treats 0, NaNs,
2484 and infinity properly on IEEE floating point hosts,
2485 and works around a common bug where atof ("-0.0")
2486 drops the sign. */
2487 int negative = read_buffer[0] == '-';
2488
2489 /* The only way p[-1] can be 'F' or 'N', after isfloat_string
2490 returns 1, is if the input ends in e+INF or e+NaN. */
2491 switch (p[-1])
2492 {
2493 case 'F':
2494 value = 1.0 / zero;
2495 break;
2496 case 'N':
2497 value = zero / zero;
2498 break;
2499 default:
2500 value = atof (read_buffer + negative);
2501 break;
2502 }
2503
2504 return make_float (negative ? - value : value);
2505 }
2506 }
2507 {
2508 Lisp_Object result = uninterned_symbol ? make_symbol (read_buffer)
2509 : intern (read_buffer);
2510 if (EQ (Vread_with_symbol_positions, Qt)
2511 || EQ (Vread_with_symbol_positions, readcharfun))
2512 Vread_symbol_positions_list =
2513 /* Kind of a hack; this will probably fail if characters
2514 in the symbol name were escaped. Not really a big
2515 deal, though. */
2516 Fcons (Fcons (result, readchar_count - Flength (Fsymbol_name (result))),
2517 Vread_symbol_positions_list);
2518 return result;
2519 }
2520 }
2521 }
2522 }
2523 \f
2524
2525 /* List of nodes we've seen during substitute_object_in_subtree. */
2526 static Lisp_Object seen_list;
2527
2528 static void
2529 substitute_object_in_subtree (object, placeholder)
2530 Lisp_Object object;
2531 Lisp_Object placeholder;
2532 {
2533 Lisp_Object check_object;
2534
2535 /* We haven't seen any objects when we start. */
2536 seen_list = Qnil;
2537
2538 /* Make all the substitutions. */
2539 check_object
2540 = substitute_object_recurse (object, placeholder, object);
2541
2542 /* Clear seen_list because we're done with it. */
2543 seen_list = Qnil;
2544
2545 /* The returned object here is expected to always eq the
2546 original. */
2547 if (!EQ (check_object, object))
2548 error ("Unexpected mutation error in reader");
2549 }
2550
2551 /* Feval doesn't get called from here, so no gc protection is needed. */
2552 #define SUBSTITUTE(get_val, set_val) \
2553 { \
2554 Lisp_Object old_value = get_val; \
2555 Lisp_Object true_value \
2556 = substitute_object_recurse (object, placeholder,\
2557 old_value); \
2558 \
2559 if (!EQ (old_value, true_value)) \
2560 { \
2561 set_val; \
2562 } \
2563 }
2564
2565 static Lisp_Object
2566 substitute_object_recurse (object, placeholder, subtree)
2567 Lisp_Object object;
2568 Lisp_Object placeholder;
2569 Lisp_Object subtree;
2570 {
2571 /* If we find the placeholder, return the target object. */
2572 if (EQ (placeholder, subtree))
2573 return object;
2574
2575 /* If we've been to this node before, don't explore it again. */
2576 if (!EQ (Qnil, Fmemq (subtree, seen_list)))
2577 return subtree;
2578
2579 /* If this node can be the entry point to a cycle, remember that
2580 we've seen it. It can only be such an entry point if it was made
2581 by #n=, which means that we can find it as a value in
2582 read_objects. */
2583 if (!EQ (Qnil, Frassq (subtree, read_objects)))
2584 seen_list = Fcons (subtree, seen_list);
2585
2586 /* Recurse according to subtree's type.
2587 Every branch must return a Lisp_Object. */
2588 switch (XTYPE (subtree))
2589 {
2590 case Lisp_Vectorlike:
2591 {
2592 int i;
2593 int length = XINT (Flength(subtree));
2594 for (i = 0; i < length; i++)
2595 {
2596 Lisp_Object idx = make_number (i);
2597 SUBSTITUTE (Faref (subtree, idx),
2598 Faset (subtree, idx, true_value));
2599 }
2600 return subtree;
2601 }
2602
2603 case Lisp_Cons:
2604 {
2605 SUBSTITUTE (Fcar_safe (subtree),
2606 Fsetcar (subtree, true_value));
2607 SUBSTITUTE (Fcdr_safe (subtree),
2608 Fsetcdr (subtree, true_value));
2609 return subtree;
2610 }
2611
2612 case Lisp_String:
2613 {
2614 /* Check for text properties in each interval.
2615 substitute_in_interval contains part of the logic. */
2616
2617 INTERVAL root_interval = XSTRING (subtree)->intervals;
2618 Lisp_Object arg = Fcons (object, placeholder);
2619
2620 traverse_intervals_noorder (root_interval,
2621 &substitute_in_interval, arg);
2622
2623 return subtree;
2624 }
2625
2626 /* Other types don't recurse any further. */
2627 default:
2628 return subtree;
2629 }
2630 }
2631
2632 /* Helper function for substitute_object_recurse. */
2633 static void
2634 substitute_in_interval (interval, arg)
2635 INTERVAL interval;
2636 Lisp_Object arg;
2637 {
2638 Lisp_Object object = Fcar (arg);
2639 Lisp_Object placeholder = Fcdr (arg);
2640
2641 SUBSTITUTE(interval->plist, interval->plist = true_value);
2642 }
2643
2644 \f
2645 #define LEAD_INT 1
2646 #define DOT_CHAR 2
2647 #define TRAIL_INT 4
2648 #define E_CHAR 8
2649 #define EXP_INT 16
2650
2651 int
2652 isfloat_string (cp)
2653 register char *cp;
2654 {
2655 register int state;
2656
2657 char *start = cp;
2658
2659 state = 0;
2660 if (*cp == '+' || *cp == '-')
2661 cp++;
2662
2663 if (*cp >= '0' && *cp <= '9')
2664 {
2665 state |= LEAD_INT;
2666 while (*cp >= '0' && *cp <= '9')
2667 cp++;
2668 }
2669 if (*cp == '.')
2670 {
2671 state |= DOT_CHAR;
2672 cp++;
2673 }
2674 if (*cp >= '0' && *cp <= '9')
2675 {
2676 state |= TRAIL_INT;
2677 while (*cp >= '0' && *cp <= '9')
2678 cp++;
2679 }
2680 if (*cp == 'e' || *cp == 'E')
2681 {
2682 state |= E_CHAR;
2683 cp++;
2684 if (*cp == '+' || *cp == '-')
2685 cp++;
2686 }
2687
2688 if (*cp >= '0' && *cp <= '9')
2689 {
2690 state |= EXP_INT;
2691 while (*cp >= '0' && *cp <= '9')
2692 cp++;
2693 }
2694 else if (cp == start)
2695 ;
2696 else if (cp[-1] == '+' && cp[0] == 'I' && cp[1] == 'N' && cp[2] == 'F')
2697 {
2698 state |= EXP_INT;
2699 cp += 3;
2700 }
2701 else if (cp[-1] == '+' && cp[0] == 'N' && cp[1] == 'a' && cp[2] == 'N')
2702 {
2703 state |= EXP_INT;
2704 cp += 3;
2705 }
2706
2707 return (((*cp == 0) || (*cp == ' ') || (*cp == '\t') || (*cp == '\n') || (*cp == '\r') || (*cp == '\f'))
2708 && (state == (LEAD_INT|DOT_CHAR|TRAIL_INT)
2709 || state == (DOT_CHAR|TRAIL_INT)
2710 || state == (LEAD_INT|E_CHAR|EXP_INT)
2711 || state == (LEAD_INT|DOT_CHAR|TRAIL_INT|E_CHAR|EXP_INT)
2712 || state == (DOT_CHAR|TRAIL_INT|E_CHAR|EXP_INT)));
2713 }
2714
2715 \f
2716 static Lisp_Object
2717 read_vector (readcharfun, bytecodeflag)
2718 Lisp_Object readcharfun;
2719 int bytecodeflag;
2720 {
2721 register int i;
2722 register int size;
2723 register Lisp_Object *ptr;
2724 register Lisp_Object tem, item, vector;
2725 register struct Lisp_Cons *otem;
2726 Lisp_Object len;
2727
2728 tem = read_list (1, readcharfun);
2729 len = Flength (tem);
2730 vector = (read_pure ? make_pure_vector (XINT (len)) : Fmake_vector (len, Qnil));
2731
2732 size = XVECTOR (vector)->size;
2733 ptr = XVECTOR (vector)->contents;
2734 for (i = 0; i < size; i++)
2735 {
2736 item = Fcar (tem);
2737 /* If `load-force-doc-strings' is t when reading a lazily-loaded
2738 bytecode object, the docstring containing the bytecode and
2739 constants values must be treated as unibyte and passed to
2740 Fread, to get the actual bytecode string and constants vector. */
2741 if (bytecodeflag && load_force_doc_strings)
2742 {
2743 if (i == COMPILED_BYTECODE)
2744 {
2745 if (!STRINGP (item))
2746 error ("invalid byte code");
2747
2748 /* Delay handling the bytecode slot until we know whether
2749 it is lazily-loaded (we can tell by whether the
2750 constants slot is nil). */
2751 ptr[COMPILED_CONSTANTS] = item;
2752 item = Qnil;
2753 }
2754 else if (i == COMPILED_CONSTANTS)
2755 {
2756 Lisp_Object bytestr = ptr[COMPILED_CONSTANTS];
2757
2758 if (NILP (item))
2759 {
2760 /* Coerce string to unibyte (like string-as-unibyte,
2761 but without generating extra garbage and
2762 guaranteeing no change in the contents). */
2763 XSTRING (bytestr)->size = STRING_BYTES (XSTRING (bytestr));
2764 SET_STRING_BYTES (XSTRING (bytestr), -1);
2765
2766 item = Fread (bytestr);
2767 if (!CONSP (item))
2768 error ("invalid byte code");
2769
2770 otem = XCONS (item);
2771 bytestr = XCAR (item);
2772 item = XCDR (item);
2773 free_cons (otem);
2774 }
2775
2776 /* Now handle the bytecode slot. */
2777 ptr[COMPILED_BYTECODE] = read_pure ? Fpurecopy (bytestr) : bytestr;
2778 }
2779 }
2780 ptr[i] = read_pure ? Fpurecopy (item) : item;
2781 otem = XCONS (tem);
2782 tem = Fcdr (tem);
2783 free_cons (otem);
2784 }
2785 return vector;
2786 }
2787
2788 /* FLAG = 1 means check for ] to terminate rather than ) and .
2789 FLAG = -1 means check for starting with defun
2790 and make structure pure. */
2791
2792 static Lisp_Object
2793 read_list (flag, readcharfun)
2794 int flag;
2795 register Lisp_Object readcharfun;
2796 {
2797 /* -1 means check next element for defun,
2798 0 means don't check,
2799 1 means already checked and found defun. */
2800 int defunflag = flag < 0 ? -1 : 0;
2801 Lisp_Object val, tail;
2802 register Lisp_Object elt, tem;
2803 struct gcpro gcpro1, gcpro2;
2804 /* 0 is the normal case.
2805 1 means this list is a doc reference; replace it with the number 0.
2806 2 means this list is a doc reference; replace it with the doc string. */
2807 int doc_reference = 0;
2808
2809 /* Initialize this to 1 if we are reading a list. */
2810 int first_in_list = flag <= 0;
2811
2812 val = Qnil;
2813 tail = Qnil;
2814
2815 while (1)
2816 {
2817 int ch;
2818 GCPRO2 (val, tail);
2819 elt = read1 (readcharfun, &ch, first_in_list);
2820 UNGCPRO;
2821
2822 first_in_list = 0;
2823
2824 /* While building, if the list starts with #$, treat it specially. */
2825 if (EQ (elt, Vload_file_name)
2826 && ! NILP (elt)
2827 && !NILP (Vpurify_flag))
2828 {
2829 if (NILP (Vdoc_file_name))
2830 /* We have not yet called Snarf-documentation, so assume
2831 this file is described in the DOC-MM.NN file
2832 and Snarf-documentation will fill in the right value later.
2833 For now, replace the whole list with 0. */
2834 doc_reference = 1;
2835 else
2836 /* We have already called Snarf-documentation, so make a relative
2837 file name for this file, so it can be found properly
2838 in the installed Lisp directory.
2839 We don't use Fexpand_file_name because that would make
2840 the directory absolute now. */
2841 elt = concat2 (build_string ("../lisp/"),
2842 Ffile_name_nondirectory (elt));
2843 }
2844 else if (EQ (elt, Vload_file_name)
2845 && ! NILP (elt)
2846 && load_force_doc_strings)
2847 doc_reference = 2;
2848
2849 if (ch)
2850 {
2851 if (flag > 0)
2852 {
2853 if (ch == ']')
2854 return val;
2855 Fsignal (Qinvalid_read_syntax,
2856 Fcons (make_string (") or . in a vector", 18), Qnil));
2857 }
2858 if (ch == ')')
2859 return val;
2860 if (ch == '.')
2861 {
2862 GCPRO2 (val, tail);
2863 if (!NILP (tail))
2864 XSETCDR (tail, read0 (readcharfun));
2865 else
2866 val = read0 (readcharfun);
2867 read1 (readcharfun, &ch, 0);
2868 UNGCPRO;
2869 if (ch == ')')
2870 {
2871 if (doc_reference == 1)
2872 return make_number (0);
2873 if (doc_reference == 2)
2874 {
2875 /* Get a doc string from the file we are loading.
2876 If it's in saved_doc_string, get it from there. */
2877 int pos = XINT (XCDR (val));
2878 /* Position is negative for user variables. */
2879 if (pos < 0) pos = -pos;
2880 if (pos >= saved_doc_string_position
2881 && pos < (saved_doc_string_position
2882 + saved_doc_string_length))
2883 {
2884 int start = pos - saved_doc_string_position;
2885 int from, to;
2886
2887 /* Process quoting with ^A,
2888 and find the end of the string,
2889 which is marked with ^_ (037). */
2890 for (from = start, to = start;
2891 saved_doc_string[from] != 037;)
2892 {
2893 int c = saved_doc_string[from++];
2894 if (c == 1)
2895 {
2896 c = saved_doc_string[from++];
2897 if (c == 1)
2898 saved_doc_string[to++] = c;
2899 else if (c == '0')
2900 saved_doc_string[to++] = 0;
2901 else if (c == '_')
2902 saved_doc_string[to++] = 037;
2903 }
2904 else
2905 saved_doc_string[to++] = c;
2906 }
2907
2908 return make_string (saved_doc_string + start,
2909 to - start);
2910 }
2911 /* Look in prev_saved_doc_string the same way. */
2912 else if (pos >= prev_saved_doc_string_position
2913 && pos < (prev_saved_doc_string_position
2914 + prev_saved_doc_string_length))
2915 {
2916 int start = pos - prev_saved_doc_string_position;
2917 int from, to;
2918
2919 /* Process quoting with ^A,
2920 and find the end of the string,
2921 which is marked with ^_ (037). */
2922 for (from = start, to = start;
2923 prev_saved_doc_string[from] != 037;)
2924 {
2925 int c = prev_saved_doc_string[from++];
2926 if (c == 1)
2927 {
2928 c = prev_saved_doc_string[from++];
2929 if (c == 1)
2930 prev_saved_doc_string[to++] = c;
2931 else if (c == '0')
2932 prev_saved_doc_string[to++] = 0;
2933 else if (c == '_')
2934 prev_saved_doc_string[to++] = 037;
2935 }
2936 else
2937 prev_saved_doc_string[to++] = c;
2938 }
2939
2940 return make_string (prev_saved_doc_string + start,
2941 to - start);
2942 }
2943 else
2944 return get_doc_string (val, 0, 0);
2945 }
2946
2947 return val;
2948 }
2949 return Fsignal (Qinvalid_read_syntax, Fcons (make_string (". in wrong context", 18), Qnil));
2950 }
2951 return Fsignal (Qinvalid_read_syntax, Fcons (make_string ("] in a list", 11), Qnil));
2952 }
2953 tem = (read_pure && flag <= 0
2954 ? pure_cons (elt, Qnil)
2955 : Fcons (elt, Qnil));
2956 if (!NILP (tail))
2957 XSETCDR (tail, tem);
2958 else
2959 val = tem;
2960 tail = tem;
2961 if (defunflag < 0)
2962 defunflag = EQ (elt, Qdefun);
2963 else if (defunflag > 0)
2964 read_pure = 1;
2965 }
2966 }
2967 \f
2968 Lisp_Object Vobarray;
2969 Lisp_Object initial_obarray;
2970
2971 /* oblookup stores the bucket number here, for the sake of Funintern. */
2972
2973 int oblookup_last_bucket_number;
2974
2975 static int hash_string ();
2976 Lisp_Object oblookup ();
2977
2978 /* Get an error if OBARRAY is not an obarray.
2979 If it is one, return it. */
2980
2981 Lisp_Object
2982 check_obarray (obarray)
2983 Lisp_Object obarray;
2984 {
2985 while (!VECTORP (obarray) || XVECTOR (obarray)->size == 0)
2986 {
2987 /* If Vobarray is now invalid, force it to be valid. */
2988 if (EQ (Vobarray, obarray)) Vobarray = initial_obarray;
2989
2990 obarray = wrong_type_argument (Qvectorp, obarray);
2991 }
2992 return obarray;
2993 }
2994
2995 /* Intern the C string STR: return a symbol with that name,
2996 interned in the current obarray. */
2997
2998 Lisp_Object
2999 intern (str)
3000 char *str;
3001 {
3002 Lisp_Object tem;
3003 int len = strlen (str);
3004 Lisp_Object obarray;
3005
3006 obarray = Vobarray;
3007 if (!VECTORP (obarray) || XVECTOR (obarray)->size == 0)
3008 obarray = check_obarray (obarray);
3009 tem = oblookup (obarray, str, len, len);
3010 if (SYMBOLP (tem))
3011 return tem;
3012 return Fintern (make_string (str, len), obarray);
3013 }
3014
3015 /* Create an uninterned symbol with name STR. */
3016
3017 Lisp_Object
3018 make_symbol (str)
3019 char *str;
3020 {
3021 int len = strlen (str);
3022
3023 return Fmake_symbol ((!NILP (Vpurify_flag)
3024 ? make_pure_string (str, len, len, 0)
3025 : make_string (str, len)));
3026 }
3027 \f
3028 DEFUN ("intern", Fintern, Sintern, 1, 2, 0,
3029 doc: /* Return the canonical symbol whose name is STRING.
3030 If there is none, one is created by this function and returned.
3031 A second optional argument specifies the obarray to use;
3032 it defaults to the value of `obarray'. */)
3033 (string, obarray)
3034 Lisp_Object string, obarray;
3035 {
3036 register Lisp_Object tem, sym, *ptr;
3037
3038 if (NILP (obarray)) obarray = Vobarray;
3039 obarray = check_obarray (obarray);
3040
3041 CHECK_STRING (string);
3042
3043 tem = oblookup (obarray, XSTRING (string)->data,
3044 XSTRING (string)->size,
3045 STRING_BYTES (XSTRING (string)));
3046 if (!INTEGERP (tem))
3047 return tem;
3048
3049 if (!NILP (Vpurify_flag))
3050 string = Fpurecopy (string);
3051 sym = Fmake_symbol (string);
3052
3053 if (EQ (obarray, initial_obarray))
3054 XSYMBOL (sym)->interned = SYMBOL_INTERNED_IN_INITIAL_OBARRAY;
3055 else
3056 XSYMBOL (sym)->interned = SYMBOL_INTERNED;
3057
3058 if ((XSTRING (string)->data[0] == ':')
3059 && EQ (obarray, initial_obarray))
3060 {
3061 XSYMBOL (sym)->constant = 1;
3062 XSYMBOL (sym)->value = sym;
3063 }
3064
3065 ptr = &XVECTOR (obarray)->contents[XINT (tem)];
3066 if (SYMBOLP (*ptr))
3067 XSYMBOL (sym)->next = XSYMBOL (*ptr);
3068 else
3069 XSYMBOL (sym)->next = 0;
3070 *ptr = sym;
3071 return sym;
3072 }
3073
3074 DEFUN ("intern-soft", Fintern_soft, Sintern_soft, 1, 2, 0,
3075 doc: /* Return the canonical symbol named NAME, or nil if none exists.
3076 NAME may be a string or a symbol. If it is a symbol, that exact
3077 symbol is searched for.
3078 A second optional argument specifies the obarray to use;
3079 it defaults to the value of `obarray'. */)
3080 (name, obarray)
3081 Lisp_Object name, obarray;
3082 {
3083 register Lisp_Object tem;
3084 struct Lisp_String *string;
3085
3086 if (NILP (obarray)) obarray = Vobarray;
3087 obarray = check_obarray (obarray);
3088
3089 if (!SYMBOLP (name))
3090 {
3091 CHECK_STRING (name);
3092 string = XSTRING (name);
3093 }
3094 else
3095 string = XSTRING (SYMBOL_NAME (name));
3096
3097 tem = oblookup (obarray, string->data, string->size, STRING_BYTES (string));
3098 if (INTEGERP (tem) || (SYMBOLP (name) && !EQ (name, tem)))
3099 return Qnil;
3100 else
3101 return tem;
3102 }
3103 \f
3104 DEFUN ("unintern", Funintern, Sunintern, 1, 2, 0,
3105 doc: /* Delete the symbol named NAME, if any, from OBARRAY.
3106 The value is t if a symbol was found and deleted, nil otherwise.
3107 NAME may be a string or a symbol. If it is a symbol, that symbol
3108 is deleted, if it belongs to OBARRAY--no other symbol is deleted.
3109 OBARRAY defaults to the value of the variable `obarray'. */)
3110 (name, obarray)
3111 Lisp_Object name, obarray;
3112 {
3113 register Lisp_Object string, tem;
3114 int hash;
3115
3116 if (NILP (obarray)) obarray = Vobarray;
3117 obarray = check_obarray (obarray);
3118
3119 if (SYMBOLP (name))
3120 string = SYMBOL_NAME (name);
3121 else
3122 {
3123 CHECK_STRING (name);
3124 string = name;
3125 }
3126
3127 tem = oblookup (obarray, XSTRING (string)->data,
3128 XSTRING (string)->size,
3129 STRING_BYTES (XSTRING (string)));
3130 if (INTEGERP (tem))
3131 return Qnil;
3132 /* If arg was a symbol, don't delete anything but that symbol itself. */
3133 if (SYMBOLP (name) && !EQ (name, tem))
3134 return Qnil;
3135
3136 XSYMBOL (tem)->interned = SYMBOL_UNINTERNED;
3137 XSYMBOL (tem)->constant = 0;
3138 XSYMBOL (tem)->indirect_variable = 0;
3139
3140 hash = oblookup_last_bucket_number;
3141
3142 if (EQ (XVECTOR (obarray)->contents[hash], tem))
3143 {
3144 if (XSYMBOL (tem)->next)
3145 XSETSYMBOL (XVECTOR (obarray)->contents[hash], XSYMBOL (tem)->next);
3146 else
3147 XSETINT (XVECTOR (obarray)->contents[hash], 0);
3148 }
3149 else
3150 {
3151 Lisp_Object tail, following;
3152
3153 for (tail = XVECTOR (obarray)->contents[hash];
3154 XSYMBOL (tail)->next;
3155 tail = following)
3156 {
3157 XSETSYMBOL (following, XSYMBOL (tail)->next);
3158 if (EQ (following, tem))
3159 {
3160 XSYMBOL (tail)->next = XSYMBOL (following)->next;
3161 break;
3162 }
3163 }
3164 }
3165
3166 return Qt;
3167 }
3168 \f
3169 /* Return the symbol in OBARRAY whose names matches the string
3170 of SIZE characters (SIZE_BYTE bytes) at PTR.
3171 If there is no such symbol in OBARRAY, return nil.
3172
3173 Also store the bucket number in oblookup_last_bucket_number. */
3174
3175 Lisp_Object
3176 oblookup (obarray, ptr, size, size_byte)
3177 Lisp_Object obarray;
3178 register char *ptr;
3179 int size, size_byte;
3180 {
3181 int hash;
3182 int obsize;
3183 register Lisp_Object tail;
3184 Lisp_Object bucket, tem;
3185
3186 if (!VECTORP (obarray)
3187 || (obsize = XVECTOR (obarray)->size) == 0)
3188 {
3189 obarray = check_obarray (obarray);
3190 obsize = XVECTOR (obarray)->size;
3191 }
3192 /* This is sometimes needed in the middle of GC. */
3193 obsize &= ~ARRAY_MARK_FLAG;
3194 /* Combining next two lines breaks VMS C 2.3. */
3195 hash = hash_string (ptr, size_byte);
3196 hash %= obsize;
3197 bucket = XVECTOR (obarray)->contents[hash];
3198 oblookup_last_bucket_number = hash;
3199 if (XFASTINT (bucket) == 0)
3200 ;
3201 else if (!SYMBOLP (bucket))
3202 error ("Bad data in guts of obarray"); /* Like CADR error message */
3203 else
3204 for (tail = bucket; ; XSETSYMBOL (tail, XSYMBOL (tail)->next))
3205 {
3206 if (STRING_BYTES (XSTRING (SYMBOL_NAME (tail))) == size_byte
3207 && XSTRING (SYMBOL_NAME (tail))->size == size
3208 && !bcmp (XSTRING (SYMBOL_NAME (tail))->data, ptr, size_byte))
3209 return tail;
3210 else if (XSYMBOL (tail)->next == 0)
3211 break;
3212 }
3213 XSETINT (tem, hash);
3214 return tem;
3215 }
3216
3217 static int
3218 hash_string (ptr, len)
3219 unsigned char *ptr;
3220 int len;
3221 {
3222 register unsigned char *p = ptr;
3223 register unsigned char *end = p + len;
3224 register unsigned char c;
3225 register int hash = 0;
3226
3227 while (p != end)
3228 {
3229 c = *p++;
3230 if (c >= 0140) c -= 40;
3231 hash = ((hash<<3) + (hash>>28) + c);
3232 }
3233 return hash & 07777777777;
3234 }
3235 \f
3236 void
3237 map_obarray (obarray, fn, arg)
3238 Lisp_Object obarray;
3239 void (*fn) P_ ((Lisp_Object, Lisp_Object));
3240 Lisp_Object arg;
3241 {
3242 register int i;
3243 register Lisp_Object tail;
3244 CHECK_VECTOR (obarray);
3245 for (i = XVECTOR (obarray)->size - 1; i >= 0; i--)
3246 {
3247 tail = XVECTOR (obarray)->contents[i];
3248 if (SYMBOLP (tail))
3249 while (1)
3250 {
3251 (*fn) (tail, arg);
3252 if (XSYMBOL (tail)->next == 0)
3253 break;
3254 XSETSYMBOL (tail, XSYMBOL (tail)->next);
3255 }
3256 }
3257 }
3258
3259 void
3260 mapatoms_1 (sym, function)
3261 Lisp_Object sym, function;
3262 {
3263 call1 (function, sym);
3264 }
3265
3266 DEFUN ("mapatoms", Fmapatoms, Smapatoms, 1, 2, 0,
3267 doc: /* Call FUNCTION on every symbol in OBARRAY.
3268 OBARRAY defaults to the value of `obarray'. */)
3269 (function, obarray)
3270 Lisp_Object function, obarray;
3271 {
3272 if (NILP (obarray)) obarray = Vobarray;
3273 obarray = check_obarray (obarray);
3274
3275 map_obarray (obarray, mapatoms_1, function);
3276 return Qnil;
3277 }
3278
3279 #define OBARRAY_SIZE 1511
3280
3281 void
3282 init_obarray ()
3283 {
3284 Lisp_Object oblength;
3285 int hash;
3286 Lisp_Object *tem;
3287
3288 XSETFASTINT (oblength, OBARRAY_SIZE);
3289
3290 Qnil = Fmake_symbol (make_pure_string ("nil", 3, 3, 0));
3291 Vobarray = Fmake_vector (oblength, make_number (0));
3292 initial_obarray = Vobarray;
3293 staticpro (&initial_obarray);
3294 /* Intern nil in the obarray */
3295 XSYMBOL (Qnil)->interned = SYMBOL_INTERNED_IN_INITIAL_OBARRAY;
3296 XSYMBOL (Qnil)->constant = 1;
3297
3298 /* These locals are to kludge around a pyramid compiler bug. */
3299 hash = hash_string ("nil", 3);
3300 /* Separate statement here to avoid VAXC bug. */
3301 hash %= OBARRAY_SIZE;
3302 tem = &XVECTOR (Vobarray)->contents[hash];
3303 *tem = Qnil;
3304
3305 Qunbound = Fmake_symbol (make_pure_string ("unbound", 7, 7, 0));
3306 XSYMBOL (Qnil)->function = Qunbound;
3307 XSYMBOL (Qunbound)->value = Qunbound;
3308 XSYMBOL (Qunbound)->function = Qunbound;
3309
3310 Qt = intern ("t");
3311 XSYMBOL (Qnil)->value = Qnil;
3312 XSYMBOL (Qnil)->plist = Qnil;
3313 XSYMBOL (Qt)->value = Qt;
3314 XSYMBOL (Qt)->constant = 1;
3315
3316 /* Qt is correct even if CANNOT_DUMP. loadup.el will set to nil at end. */
3317 Vpurify_flag = Qt;
3318
3319 Qvariable_documentation = intern ("variable-documentation");
3320 staticpro (&Qvariable_documentation);
3321
3322 read_buffer_size = 100 + MAX_MULTIBYTE_LENGTH;
3323 read_buffer = (char *) xmalloc (read_buffer_size);
3324 }
3325 \f
3326 void
3327 defsubr (sname)
3328 struct Lisp_Subr *sname;
3329 {
3330 Lisp_Object sym;
3331 sym = intern (sname->symbol_name);
3332 XSETSUBR (XSYMBOL (sym)->function, sname);
3333 }
3334
3335 #ifdef NOTDEF /* use fset in subr.el now */
3336 void
3337 defalias (sname, string)
3338 struct Lisp_Subr *sname;
3339 char *string;
3340 {
3341 Lisp_Object sym;
3342 sym = intern (string);
3343 XSETSUBR (XSYMBOL (sym)->function, sname);
3344 }
3345 #endif /* NOTDEF */
3346
3347 /* Define an "integer variable"; a symbol whose value is forwarded
3348 to a C variable of type int. Sample call: */
3349 /* DEFVAR_INT ("indent-tabs-mode", &indent_tabs_mode, "Documentation"); */
3350 void
3351 defvar_int (namestring, address)
3352 char *namestring;
3353 EMACS_INT *address;
3354 {
3355 Lisp_Object sym, val;
3356 sym = intern (namestring);
3357 val = allocate_misc ();
3358 XMISCTYPE (val) = Lisp_Misc_Intfwd;
3359 XINTFWD (val)->intvar = address;
3360 SET_SYMBOL_VALUE (sym, val);
3361 }
3362
3363 /* Similar but define a variable whose value is t if address contains 1,
3364 nil if address contains 0 */
3365 void
3366 defvar_bool (namestring, address)
3367 char *namestring;
3368 int *address;
3369 {
3370 Lisp_Object sym, val;
3371 sym = intern (namestring);
3372 val = allocate_misc ();
3373 XMISCTYPE (val) = Lisp_Misc_Boolfwd;
3374 XBOOLFWD (val)->boolvar = address;
3375 SET_SYMBOL_VALUE (sym, val);
3376 Vbyte_boolean_vars = Fcons (sym, Vbyte_boolean_vars);
3377 }
3378
3379 /* Similar but define a variable whose value is the Lisp Object stored
3380 at address. Two versions: with and without gc-marking of the C
3381 variable. The nopro version is used when that variable will be
3382 gc-marked for some other reason, since marking the same slot twice
3383 can cause trouble with strings. */
3384 void
3385 defvar_lisp_nopro (namestring, address)
3386 char *namestring;
3387 Lisp_Object *address;
3388 {
3389 Lisp_Object sym, val;
3390 sym = intern (namestring);
3391 val = allocate_misc ();
3392 XMISCTYPE (val) = Lisp_Misc_Objfwd;
3393 XOBJFWD (val)->objvar = address;
3394 SET_SYMBOL_VALUE (sym, val);
3395 }
3396
3397 void
3398 defvar_lisp (namestring, address)
3399 char *namestring;
3400 Lisp_Object *address;
3401 {
3402 defvar_lisp_nopro (namestring, address);
3403 staticpro (address);
3404 }
3405
3406 /* Similar but define a variable whose value is the Lisp Object stored in
3407 the current buffer. address is the address of the slot in the buffer
3408 that is current now. */
3409
3410 void
3411 defvar_per_buffer (namestring, address, type, doc)
3412 char *namestring;
3413 Lisp_Object *address;
3414 Lisp_Object type;
3415 char *doc;
3416 {
3417 Lisp_Object sym, val;
3418 int offset;
3419 extern struct buffer buffer_local_symbols;
3420
3421 sym = intern (namestring);
3422 val = allocate_misc ();
3423 offset = (char *)address - (char *)current_buffer;
3424
3425 XMISCTYPE (val) = Lisp_Misc_Buffer_Objfwd;
3426 XBUFFER_OBJFWD (val)->offset = offset;
3427 SET_SYMBOL_VALUE (sym, val);
3428 PER_BUFFER_SYMBOL (offset) = sym;
3429 PER_BUFFER_TYPE (offset) = type;
3430
3431 if (PER_BUFFER_IDX (offset) == 0)
3432 /* Did a DEFVAR_PER_BUFFER without initializing the corresponding
3433 slot of buffer_local_flags */
3434 abort ();
3435 }
3436
3437
3438 /* Similar but define a variable whose value is the Lisp Object stored
3439 at a particular offset in the current kboard object. */
3440
3441 void
3442 defvar_kboard (namestring, offset)
3443 char *namestring;
3444 int offset;
3445 {
3446 Lisp_Object sym, val;
3447 sym = intern (namestring);
3448 val = allocate_misc ();
3449 XMISCTYPE (val) = Lisp_Misc_Kboard_Objfwd;
3450 XKBOARD_OBJFWD (val)->offset = offset;
3451 SET_SYMBOL_VALUE (sym, val);
3452 }
3453 \f
3454 /* Record the value of load-path used at the start of dumping
3455 so we can see if the site changed it later during dumping. */
3456 static Lisp_Object dump_path;
3457
3458 void
3459 init_lread ()
3460 {
3461 char *normal;
3462 int turn_off_warning = 0;
3463
3464 /* Compute the default load-path. */
3465 #ifdef CANNOT_DUMP
3466 normal = PATH_LOADSEARCH;
3467 Vload_path = decode_env_path (0, normal);
3468 #else
3469 if (NILP (Vpurify_flag))
3470 normal = PATH_LOADSEARCH;
3471 else
3472 normal = PATH_DUMPLOADSEARCH;
3473
3474 /* In a dumped Emacs, we normally have to reset the value of
3475 Vload_path from PATH_LOADSEARCH, since the value that was dumped
3476 uses ../lisp, instead of the path of the installed elisp
3477 libraries. However, if it appears that Vload_path was changed
3478 from the default before dumping, don't override that value. */
3479 if (initialized)
3480 {
3481 if (! NILP (Fequal (dump_path, Vload_path)))
3482 {
3483 Vload_path = decode_env_path (0, normal);
3484 if (!NILP (Vinstallation_directory))
3485 {
3486 Lisp_Object tem, tem1, sitelisp;
3487
3488 /* Remove site-lisp dirs from path temporarily and store
3489 them in sitelisp, then conc them on at the end so
3490 they're always first in path. */
3491 sitelisp = Qnil;
3492 while (1)
3493 {
3494 tem = Fcar (Vload_path);
3495 tem1 = Fstring_match (build_string ("site-lisp"),
3496 tem, Qnil);
3497 if (!NILP (tem1))
3498 {
3499 Vload_path = Fcdr (Vload_path);
3500 sitelisp = Fcons (tem, sitelisp);
3501 }
3502 else
3503 break;
3504 }
3505
3506 /* Add to the path the lisp subdir of the
3507 installation dir, if it exists. */
3508 tem = Fexpand_file_name (build_string ("lisp"),
3509 Vinstallation_directory);
3510 tem1 = Ffile_exists_p (tem);
3511 if (!NILP (tem1))
3512 {
3513 if (NILP (Fmember (tem, Vload_path)))
3514 {
3515 turn_off_warning = 1;
3516 Vload_path = Fcons (tem, Vload_path);
3517 }
3518 }
3519 else
3520 /* That dir doesn't exist, so add the build-time
3521 Lisp dirs instead. */
3522 Vload_path = nconc2 (Vload_path, dump_path);
3523
3524 /* Add leim under the installation dir, if it exists. */
3525 tem = Fexpand_file_name (build_string ("leim"),
3526 Vinstallation_directory);
3527 tem1 = Ffile_exists_p (tem);
3528 if (!NILP (tem1))
3529 {
3530 if (NILP (Fmember (tem, Vload_path)))
3531 Vload_path = Fcons (tem, Vload_path);
3532 }
3533
3534 /* Add site-list under the installation dir, if it exists. */
3535 tem = Fexpand_file_name (build_string ("site-lisp"),
3536 Vinstallation_directory);
3537 tem1 = Ffile_exists_p (tem);
3538 if (!NILP (tem1))
3539 {
3540 if (NILP (Fmember (tem, Vload_path)))
3541 Vload_path = Fcons (tem, Vload_path);
3542 }
3543
3544 /* If Emacs was not built in the source directory,
3545 and it is run from where it was built, add to load-path
3546 the lisp, leim and site-lisp dirs under that directory. */
3547
3548 if (NILP (Fequal (Vinstallation_directory, Vsource_directory)))
3549 {
3550 Lisp_Object tem2;
3551
3552 tem = Fexpand_file_name (build_string ("src/Makefile"),
3553 Vinstallation_directory);
3554 tem1 = Ffile_exists_p (tem);
3555
3556 /* Don't be fooled if they moved the entire source tree
3557 AFTER dumping Emacs. If the build directory is indeed
3558 different from the source dir, src/Makefile.in and
3559 src/Makefile will not be found together. */
3560 tem = Fexpand_file_name (build_string ("src/Makefile.in"),
3561 Vinstallation_directory);
3562 tem2 = Ffile_exists_p (tem);
3563 if (!NILP (tem1) && NILP (tem2))
3564 {
3565 tem = Fexpand_file_name (build_string ("lisp"),
3566 Vsource_directory);
3567
3568 if (NILP (Fmember (tem, Vload_path)))
3569 Vload_path = Fcons (tem, Vload_path);
3570
3571 tem = Fexpand_file_name (build_string ("leim"),
3572 Vsource_directory);
3573
3574 if (NILP (Fmember (tem, Vload_path)))
3575 Vload_path = Fcons (tem, Vload_path);
3576
3577 tem = Fexpand_file_name (build_string ("site-lisp"),
3578 Vsource_directory);
3579
3580 if (NILP (Fmember (tem, Vload_path)))
3581 Vload_path = Fcons (tem, Vload_path);
3582 }
3583 }
3584 if (!NILP (sitelisp))
3585 Vload_path = nconc2 (Fnreverse (sitelisp), Vload_path);
3586 }
3587 }
3588 }
3589 else
3590 {
3591 /* NORMAL refers to the lisp dir in the source directory. */
3592 /* We used to add ../lisp at the front here, but
3593 that caused trouble because it was copied from dump_path
3594 into Vload_path, aboe, when Vinstallation_directory was non-nil.
3595 It should be unnecessary. */
3596 Vload_path = decode_env_path (0, normal);
3597 dump_path = Vload_path;
3598 }
3599 #endif
3600
3601 #ifndef WINDOWSNT
3602 /* When Emacs is invoked over network shares on NT, PATH_LOADSEARCH is
3603 almost never correct, thereby causing a warning to be printed out that
3604 confuses users. Since PATH_LOADSEARCH is always overridden by the
3605 EMACSLOADPATH environment variable below, disable the warning on NT. */
3606
3607 /* Warn if dirs in the *standard* path don't exist. */
3608 if (!turn_off_warning)
3609 {
3610 Lisp_Object path_tail;
3611
3612 for (path_tail = Vload_path;
3613 !NILP (path_tail);
3614 path_tail = XCDR (path_tail))
3615 {
3616 Lisp_Object dirfile;
3617 dirfile = Fcar (path_tail);
3618 if (STRINGP (dirfile))
3619 {
3620 dirfile = Fdirectory_file_name (dirfile);
3621 if (access (XSTRING (dirfile)->data, 0) < 0)
3622 dir_warning ("Warning: Lisp directory `%s' does not exist.\n",
3623 XCAR (path_tail));
3624 }
3625 }
3626 }
3627 #endif /* WINDOWSNT */
3628
3629 /* If the EMACSLOADPATH environment variable is set, use its value.
3630 This doesn't apply if we're dumping. */
3631 #ifndef CANNOT_DUMP
3632 if (NILP (Vpurify_flag)
3633 && egetenv ("EMACSLOADPATH"))
3634 #endif
3635 Vload_path = decode_env_path ("EMACSLOADPATH", normal);
3636
3637 Vvalues = Qnil;
3638
3639 load_in_progress = 0;
3640 Vload_file_name = Qnil;
3641
3642 load_descriptor_list = Qnil;
3643
3644 Vstandard_input = Qt;
3645 Vloads_in_progress = Qnil;
3646 }
3647
3648 /* Print a warning, using format string FORMAT, that directory DIRNAME
3649 does not exist. Print it on stderr and put it in *Message*. */
3650
3651 void
3652 dir_warning (format, dirname)
3653 char *format;
3654 Lisp_Object dirname;
3655 {
3656 char *buffer
3657 = (char *) alloca (XSTRING (dirname)->size + strlen (format) + 5);
3658
3659 fprintf (stderr, format, XSTRING (dirname)->data);
3660 sprintf (buffer, format, XSTRING (dirname)->data);
3661 /* Don't log the warning before we've initialized!! */
3662 if (initialized)
3663 message_dolog (buffer, strlen (buffer), 0, STRING_MULTIBYTE (dirname));
3664 }
3665
3666 void
3667 syms_of_lread ()
3668 {
3669 defsubr (&Sread);
3670 defsubr (&Sread_from_string);
3671 defsubr (&Sintern);
3672 defsubr (&Sintern_soft);
3673 defsubr (&Sunintern);
3674 defsubr (&Sload);
3675 defsubr (&Seval_buffer);
3676 defsubr (&Seval_region);
3677 defsubr (&Sread_char);
3678 defsubr (&Sread_char_exclusive);
3679 defsubr (&Sread_event);
3680 defsubr (&Sget_file_char);
3681 defsubr (&Smapatoms);
3682 defsubr (&Slocate_file_internal);
3683
3684 DEFVAR_LISP ("obarray", &Vobarray,
3685 doc: /* Symbol table for use by `intern' and `read'.
3686 It is a vector whose length ought to be prime for best results.
3687 The vector's contents don't make sense if examined from Lisp programs;
3688 to find all the symbols in an obarray, use `mapatoms'. */);
3689
3690 DEFVAR_LISP ("values", &Vvalues,
3691 doc: /* List of values of all expressions which were read, evaluated and printed.
3692 Order is reverse chronological. */);
3693
3694 DEFVAR_LISP ("standard-input", &Vstandard_input,
3695 doc: /* Stream for read to get input from.
3696 See documentation of `read' for possible values. */);
3697 Vstandard_input = Qt;
3698
3699 DEFVAR_LISP ("read-with-symbol-positions", &Vread_with_symbol_positions,
3700 doc: /* If non-nil, add position of read symbols to `read-symbol-positions-list'.
3701
3702 If this variable is a buffer, then only forms read from that buffer
3703 will be added to `read-symbol-positions-list'.
3704 If this variable is t, then all read forms will be added.
3705 The effect of all other values other than nil are not currently
3706 defined, although they may be in the future.
3707
3708 The positions are relative to the last call to `read' or
3709 `read-from-string'. It is probably a bad idea to set this variable at
3710 the toplevel; bind it instead. */);
3711 Vread_with_symbol_positions = Qnil;
3712
3713 DEFVAR_LISP ("read-symbol-positions-list", &Vread_symbol_positions_list,
3714 doc: /* An list mapping read symbols to their positions.
3715 This variable is modified during calls to `read' or
3716 `read-from-string', but only when `read-with-symbol-positions' is
3717 non-nil.
3718
3719 Each element of the list looks like (SYMBOL . CHAR-POSITION), where
3720 CHAR-POSITION is an integer giving the offset of that occurence of the
3721 symbol from the position where `read' or `read-from-string' started.
3722
3723 Note that a symbol will appear multiple times in this list, if it was
3724 read multiple times. The list is in the same order as the symbols
3725 were read in. */);
3726 Vread_symbol_positions_list = Qnil;
3727
3728 DEFVAR_LISP ("load-path", &Vload_path,
3729 doc: /* *List of directories to search for files to load.
3730 Each element is a string (directory name) or nil (try default directory).
3731 Initialized based on EMACSLOADPATH environment variable, if any,
3732 otherwise to default specified by file `epaths.h' when Emacs was built. */);
3733
3734 DEFVAR_LISP ("load-suffixes", &Vload_suffixes,
3735 doc: /* *List of suffixes to try for files to load.
3736 This list should not include the empty string. */);
3737 Vload_suffixes = Fcons (build_string (".elc"),
3738 Fcons (build_string (".el"), Qnil));
3739 /* We don't use empty_string because it's not initialized yet. */
3740 default_suffixes = Fcons (build_string (""), Qnil);
3741 staticpro (&default_suffixes);
3742
3743 DEFVAR_BOOL ("load-in-progress", &load_in_progress,
3744 doc: /* Non-nil iff inside of `load'. */);
3745
3746 DEFVAR_LISP ("after-load-alist", &Vafter_load_alist,
3747 doc: /* An alist of expressions to be evalled when particular files are loaded.
3748 Each element looks like (FILENAME FORMS...).
3749 When `load' is run and the file-name argument is FILENAME,
3750 the FORMS in the corresponding element are executed at the end of loading.
3751
3752 FILENAME must match exactly! Normally FILENAME is the name of a library,
3753 with no directory specified, since that is how `load' is normally called.
3754 An error in FORMS does not undo the load,
3755 but does prevent execution of the rest of the FORMS.
3756 FILENAME can also be a symbol (a feature) and FORMS are then executed
3757 when the corresponding call to `provide' is made. */);
3758 Vafter_load_alist = Qnil;
3759
3760 DEFVAR_LISP ("load-history", &Vload_history,
3761 doc: /* Alist mapping source file names to symbols and features.
3762 Each alist element is a list that starts with a file name,
3763 except for one element (optional) that starts with nil and describes
3764 definitions evaluated from buffers not visiting files.
3765 The remaining elements of each list are symbols defined as functions
3766 or variables, and cons cells `(provide . FEATURE)', `(require . FEATURE)',
3767 and `(autoload . SYMBOL)'. */);
3768 Vload_history = Qnil;
3769
3770 DEFVAR_LISP ("load-file-name", &Vload_file_name,
3771 doc: /* Full name of file being loaded by `load'. */);
3772 Vload_file_name = Qnil;
3773
3774 DEFVAR_LISP ("user-init-file", &Vuser_init_file,
3775 doc: /* File name, including directory, of user's initialization file.
3776 If the file loaded had extension `.elc' and there was a corresponding `.el'
3777 file, this variable contains the name of the .el file, suitable for use
3778 by functions like `custom-save-all' which edit the init file. */);
3779 Vuser_init_file = Qnil;
3780
3781 DEFVAR_LISP ("current-load-list", &Vcurrent_load_list,
3782 doc: /* Used for internal purposes by `load'. */);
3783 Vcurrent_load_list = Qnil;
3784
3785 DEFVAR_LISP ("load-read-function", &Vload_read_function,
3786 doc: /* Function used by `load' and `eval-region' for reading expressions.
3787 The default is nil, which means use the function `read'. */);
3788 Vload_read_function = Qnil;
3789
3790 DEFVAR_LISP ("load-source-file-function", &Vload_source_file_function,
3791 doc: /* Function called in `load' for loading an Emacs lisp source file.
3792 This function is for doing code conversion before reading the source file.
3793 If nil, loading is done without any code conversion.
3794 Arguments are FULLNAME, FILE, NOERROR, NOMESSAGE, where
3795 FULLNAME is the full name of FILE.
3796 See `load' for the meaning of the remaining arguments. */);
3797 Vload_source_file_function = Qnil;
3798
3799 DEFVAR_BOOL ("load-force-doc-strings", &load_force_doc_strings,
3800 doc: /* Non-nil means `load' should force-load all dynamic doc strings.
3801 This is useful when the file being loaded is a temporary copy. */);
3802 load_force_doc_strings = 0;
3803
3804 DEFVAR_BOOL ("load-convert-to-unibyte", &load_convert_to_unibyte,
3805 doc: /* Non-nil means `read' converts strings to unibyte whenever possible.
3806 This is normally bound by `load' and `eval-buffer' to control `read',
3807 and is not meant for users to change. */);
3808 load_convert_to_unibyte = 0;
3809
3810 DEFVAR_LISP ("source-directory", &Vsource_directory,
3811 doc: /* Directory in which Emacs sources were found when Emacs was built.
3812 You cannot count on them to still be there! */);
3813 Vsource_directory
3814 = Fexpand_file_name (build_string ("../"),
3815 Fcar (decode_env_path (0, PATH_DUMPLOADSEARCH)));
3816
3817 DEFVAR_LISP ("preloaded-file-list", &Vpreloaded_file_list,
3818 doc: /* List of files that were preloaded (when dumping Emacs). */);
3819 Vpreloaded_file_list = Qnil;
3820
3821 DEFVAR_LISP ("byte-boolean-vars", &Vbyte_boolean_vars,
3822 doc: /* List of all DEFVAR_BOOL variables, used by the byte code optimizer. */);
3823 Vbyte_boolean_vars = Qnil;
3824
3825 DEFVAR_BOOL ("load-dangerous-libraries", &load_dangerous_libraries,
3826 doc: /* Non-nil means load dangerous compiled Lisp files.
3827 Some versions of XEmacs use different byte codes than Emacs. These
3828 incompatible byte codes can make Emacs crash when it tries to execute
3829 them. */);
3830 load_dangerous_libraries = 0;
3831
3832 DEFVAR_LISP ("bytecomp-version-regexp", &Vbytecomp_version_regexp,
3833 doc: /* Regular expression matching safe to load compiled Lisp files.
3834 When Emacs loads a compiled Lisp file, it reads the first 512 bytes
3835 from the file, and matches them against this regular expression.
3836 When the regular expression matches, the file is considered to be safe
3837 to load. See also `load-dangerous-libraries'. */);
3838 Vbytecomp_version_regexp
3839 = build_string ("^;;;.\\(in Emacs version\\|bytecomp version FSF\\)");
3840
3841 /* Vsource_directory was initialized in init_lread. */
3842
3843 load_descriptor_list = Qnil;
3844 staticpro (&load_descriptor_list);
3845
3846 Qcurrent_load_list = intern ("current-load-list");
3847 staticpro (&Qcurrent_load_list);
3848
3849 Qstandard_input = intern ("standard-input");
3850 staticpro (&Qstandard_input);
3851
3852 Qread_char = intern ("read-char");
3853 staticpro (&Qread_char);
3854
3855 Qget_file_char = intern ("get-file-char");
3856 staticpro (&Qget_file_char);
3857
3858 Qbackquote = intern ("`");
3859 staticpro (&Qbackquote);
3860 Qcomma = intern (",");
3861 staticpro (&Qcomma);
3862 Qcomma_at = intern (",@");
3863 staticpro (&Qcomma_at);
3864 Qcomma_dot = intern (",.");
3865 staticpro (&Qcomma_dot);
3866
3867 Qinhibit_file_name_operation = intern ("inhibit-file-name-operation");
3868 staticpro (&Qinhibit_file_name_operation);
3869
3870 Qascii_character = intern ("ascii-character");
3871 staticpro (&Qascii_character);
3872
3873 Qfunction = intern ("function");
3874 staticpro (&Qfunction);
3875
3876 Qload = intern ("load");
3877 staticpro (&Qload);
3878
3879 Qload_file_name = intern ("load-file-name");
3880 staticpro (&Qload_file_name);
3881
3882 staticpro (&dump_path);
3883
3884 staticpro (&read_objects);
3885 read_objects = Qnil;
3886 staticpro (&seen_list);
3887
3888 Vloads_in_progress = Qnil;
3889 staticpro (&Vloads_in_progress);
3890 }