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