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