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