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