1 /* Lisp parsing and input streams.
2 Copyright (C) 1985, 86, 87, 88, 89, 93, 94, 95, 97, 98, 99, 2000, 01, 2003
3 Free Software Foundation, Inc.
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)
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. */
25 #include <sys/types.h>
30 #include "intervals.h"
36 #include "termhooks.h"
40 #include <sys/inode.h>
45 #include <unistd.h> /* to get X_OK */
62 #endif /* HAVE_SETLOCALE */
69 #define file_offset off_t
70 #define file_tell ftello
72 #define file_offset long
73 #define file_tell ftell
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' */
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
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)
229 readchar (readcharfun
)
230 Lisp_Object readcharfun
;
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
))
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
);
266 c
= BUF_FETCH_BYTE (inbuffer
, pt_byte
);
269 SET_BUF_PT_BOTH (inbuffer
, BUF_PT (inbuffer
) + 1, pt_byte
);
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
))
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
);
302 c
= BUF_FETCH_BYTE (inbuffer
, bytepos
);
306 XMARKER (readcharfun
)->bytepos
= bytepos
;
307 XMARKER (readcharfun
)->charpos
++;
312 if (EQ (readcharfun
, Qlambda
))
313 return read_bytecode_char (0);
315 if (EQ (readcharfun
, Qget_file_char
))
319 /* Interrupted reads have been observed while reading over the network */
320 while (c
== EOF
&& ferror (instream
) && errno
== EINTR
)
329 if (STRINGP (readcharfun
))
331 if (read_from_string_index
>= read_from_string_limit
)
334 FETCH_STRING_CHAR_ADVANCE (c
, readcharfun
,
335 read_from_string_index
,
336 read_from_string_index_byte
);
341 tem
= call0 (readcharfun
);
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. */
352 unreadchar (readcharfun
, c
)
353 Lisp_Object readcharfun
;
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)
371 if (! NILP (b
->enable_multibyte_characters
))
372 BUF_DEC_POS (b
, 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)
388 XMARKER (readcharfun
)->charpos
--;
389 if (! NILP (b
->enable_multibyte_characters
))
390 BUF_DEC_POS (b
, 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
);
408 call1 (readcharfun
, make_number (c
));
411 static Lisp_Object read_internal_start
P_ ((Lisp_Object
, 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
,
422 static void substitute_object_in_subtree
P_ ((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
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
446 If INPUT_METHOD is nonzero, we invoke the current input method
447 if the character warrants that. */
450 read_filtered_event (no_switch_frame
, ascii_required
, error_nonascii
,
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
)
461 delayed_switch_frame
= Qnil
;
463 /* Read until we get an acceptable event. */
465 val
= read_char (0, 0, 0,
466 (input_method
? Qnil
: Qt
),
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. */
478 && EVENT_HAS_PARAMETERS (val
)
479 && EQ (EVENT_HEAD (val
), Qswitch_frame
))
481 delayed_switch_frame
= val
;
487 /* Convert certain symbols to their ASCII equivalents. */
490 Lisp_Object tem
, tem1
;
491 tem
= Fget (val
, Qevent_symbol_element_mask
);
494 tem1
= Fget (Fcar (tem
), Qascii_character
);
495 /* Merge this symbol's modifier bits
496 with the ASCII equivalent of its basic code. */
498 XSETFASTINT (val
, XINT (tem1
) | XINT (Fcar (Fcdr (tem
))));
502 /* If we don't have a character now, deal with it appropriately. */
507 Vunread_command_events
= Fcons (val
, Qnil
);
508 error ("Non-character input-event");
515 if (! NILP (delayed_switch_frame
))
516 unread_switch_frame
= delayed_switch_frame
;
520 #ifdef HAVE_WINDOW_SYSTEM
521 if (display_hourglass_p
)
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
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
;
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
;
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
;
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
));
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
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);
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
)
620 && fast_c_string_match_ignore_case (Vbytecomp_version_regexp
,
625 lseek (fd
, 0, SEEK_SET
);
630 /* Callback for record_unwind_protect. Restore the old load list OLD,
631 after loading a file successfully. */
634 record_load_unwind (old
)
637 return Vloads_in_progress
= old
;
640 /* This handler function is used via internal_condition_case_1. */
643 load_error_handler (data
)
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 ();
675 Lisp_Object found
, efound
;
676 /* 1 means we printed the ".el is newer" message. */
678 /* 1 means we are loading a compiled 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);
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
);
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
);
723 if (! NILP (must_suffix
))
725 /* Don't insist on adding a suffix if FILE already ends with one. */
727 && !strcmp (SDATA (file
) + size
- 3, ".el"))
730 && !strcmp (SDATA (file
) + size
- 4, ".elc"))
732 /* Don't insist on adding a suffix
733 if the argument includes a directory name. */
734 else if (! NILP (Ffile_name_directory (file
)))
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
,
751 Fsignal (Qfile_error
, Fcons (build_string ("Cannot open load file"),
752 Fcons (file
, 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. */
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
);
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. */
788 for (tem
= Vloads_in_progress
; CONSP (tem
); tem
= XCDR (tem
))
789 if (!NILP (Fequal (found
, XCAR (tem
))))
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,
800 /* Load .elc files directly, but not when they are
801 remote and have no handler! */
808 if (!safe_to_load_p (fd
))
811 if (!load_dangerous_libraries
)
815 error ("File `%s' was not compiled in Emacs",
818 else if (!NILP (nomessage
))
819 message_with_string ("File `%s' not compiled in Emacs", found
, 1);
825 efound
= ENCODE_FILE (found
);
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');
836 if (result
>= 0 && (unsigned) s1
.st_mtime
< (unsigned) s2
.st_mtime
)
838 /* Make the progress messages mention that source is newer. */
841 /* If we won't print another message, mention this anyway. */
842 if (!NILP (nomessage
))
845 file
= Fsubstring (found
, make_number (0), make_number (-1));
846 message_with_string ("Source file `%s' newer than byte-compiled file",
854 /* We are loading a source file (*.el). */
855 if (!NILP (Vload_source_file_function
))
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
);
871 efound
= ENCODE_FILE (found
);
872 stream
= fopen ((char *) SDATA (efound
), fmode
);
874 #else /* not WINDOWSNT */
875 stream
= fdopen (fd
, fmode
);
876 #endif /* not WINDOWSNT */
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
))
889 message_with_string ("Loading %s (compiled; note unsafe, not compiled in Emacs)...",
892 message_with_string ("Loading %s (source)...", file
, 1);
894 message_with_string ("Loading %s (compiled; note, source file is newer)...",
896 else /* The typical case; compiled file newer than source file. */
897 message_with_string ("Loading %s...", file
, 1);
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
);
909 = Fcons (make_number (fileno (stream
)), load_descriptor_list
);
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
);
917 Fprogn (Fcdr (temp
));
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
))
933 message_with_string ("Loading %s (compiled; note unsafe, not compiled in Emacs)...done",
936 message_with_string ("Loading %s (source)...done", file
, 1);
938 message_with_string ("Loading %s (compiled; note, source file is newer)...done",
940 else /* The typical case; compiled file newer than source file. */
941 message_with_string ("Loading %s...done", file
, 1);
944 if (!NILP (Fequal (build_string ("obsolete"),
945 Ffile_name_nondirectory
946 (Fdirectory_file_name (Ffile_name_directory (found
))))))
947 message_with_string ("Package %s is obsolete", file
, 1);
953 load_unwind (stream
) /* used as unwind-protect function in load */
956 fclose ((FILE *) (XFASTINT (XCAR (stream
)) << 16
957 | XFASTINT (XCDR (stream
))));
958 if (--load_in_progress
< 0) load_in_progress
= 0;
963 load_descriptor_unwind (oldlist
)
966 load_descriptor_list
= oldlist
;
970 /* Close all descriptors in use for Floads.
971 This is used when starting a subprocess. */
978 for (tail
= load_descriptor_list
; !NILP (tail
); tail
= XCDR (tail
))
979 emacs_close (XFASTINT (XCAR (tail
)));
984 complete_filename_p (pathname
)
985 Lisp_Object pathname
;
987 register const unsigned char *s
= SDATA (pathname
);
988 return (IS_DIRECTORY_SEP (s
[0])
989 || (SCHARS (pathname
) > 2
990 && IS_DEVICE_SEP (s
[1]) && IS_DIRECTORY_SEP (s
[2]))
1000 DEFUN ("locate-file-internal", Flocate_file_internal
, Slocate_file_internal
, 2, 4, 0,
1001 doc
: /* Search for FILENAME through PATH.
1002 If SUFFIXES is non-nil, it should be a list of suffixes to append to
1003 file name when searching.
1004 If non-nil, PREDICATE is used instead of `file-readable-p'.
1005 PREDICATE can also be an integer to pass to the access(2) function,
1006 in which case file-name-handlers are ignored. */)
1007 (filename
, path
, suffixes
, predicate
)
1008 Lisp_Object filename
, path
, suffixes
, predicate
;
1011 int fd
= openp (path
, filename
, suffixes
, &file
, predicate
);
1012 if (NILP (predicate
) && fd
> 0)
1018 /* Search for a file whose name is STR, looking in directories
1019 in the Lisp list PATH, and trying suffixes from SUFFIX.
1020 On success, returns a file descriptor. On failure, returns -1.
1022 SUFFIXES is a list of strings containing possible suffixes.
1023 The empty suffix is automatically added iff the list is empty.
1025 PREDICATE non-nil means don't open the files,
1026 just look for one that satisfies the predicate. In this case,
1027 returns 1 on success. The predicate can be a lisp function or
1028 an integer to pass to `access' (in which case file-name-handlers
1031 If STOREPTR is nonzero, it points to a slot where the name of
1032 the file actually found should be stored as a Lisp string.
1033 nil is stored there on failure.
1035 If the file we find is remote, return -2
1036 but store the found remote file name in *STOREPTR. */
1039 openp (path
, str
, suffixes
, storeptr
, predicate
)
1040 Lisp_Object path
, str
;
1041 Lisp_Object suffixes
;
1042 Lisp_Object
*storeptr
;
1043 Lisp_Object predicate
;
1048 register char *fn
= buf
;
1051 Lisp_Object filename
;
1053 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
, gcpro6
;
1054 Lisp_Object string
, tail
, encoded_fn
;
1055 int max_suffix_len
= 0;
1057 for (tail
= suffixes
; CONSP (tail
); tail
= XCDR (tail
))
1059 CHECK_STRING_CAR (tail
);
1060 max_suffix_len
= max (max_suffix_len
,
1061 SBYTES (XCAR (tail
)));
1064 string
= filename
= Qnil
;
1065 GCPRO6 (str
, string
, filename
, path
, suffixes
, encoded_fn
);
1070 if (complete_filename_p (str
))
1073 for (; CONSP (path
); path
= XCDR (path
))
1075 filename
= Fexpand_file_name (str
, XCAR (path
));
1076 if (!complete_filename_p (filename
))
1077 /* If there are non-absolute elts in PATH (eg ".") */
1078 /* Of course, this could conceivably lose if luser sets
1079 default-directory to be something non-absolute... */
1081 filename
= Fexpand_file_name (filename
, current_buffer
->directory
);
1082 if (!complete_filename_p (filename
))
1083 /* Give up on this path element! */
1087 /* Calculate maximum size of any filename made from
1088 this path element/specified file name and any possible suffix. */
1089 want_size
= max_suffix_len
+ SBYTES (filename
) + 1;
1090 if (fn_size
< want_size
)
1091 fn
= (char *) alloca (fn_size
= 100 + want_size
);
1093 /* Loop over suffixes. */
1094 for (tail
= NILP (suffixes
) ? default_suffixes
: suffixes
;
1095 CONSP (tail
); tail
= XCDR (tail
))
1097 int lsuffix
= SBYTES (XCAR (tail
));
1098 Lisp_Object handler
;
1101 /* Concatenate path element/specified name with the suffix.
1102 If the directory starts with /:, remove that. */
1103 if (SCHARS (filename
) > 2
1104 && SREF (filename
, 0) == '/'
1105 && SREF (filename
, 1) == ':')
1107 strncpy (fn
, SDATA (filename
) + 2,
1108 SBYTES (filename
) - 2);
1109 fn
[SBYTES (filename
) - 2] = 0;
1113 strncpy (fn
, SDATA (filename
),
1115 fn
[SBYTES (filename
)] = 0;
1118 if (lsuffix
!= 0) /* Bug happens on CCI if lsuffix is 0. */
1119 strncat (fn
, SDATA (XCAR (tail
)), lsuffix
);
1121 /* Check that the file exists and is not a directory. */
1122 /* We used to only check for handlers on non-absolute file names:
1126 handler = Ffind_file_name_handler (filename, Qfile_exists_p);
1127 It's not clear why that was the case and it breaks things like
1128 (load "/bar.el") where the file is actually "/bar.el.gz". */
1129 string
= build_string (fn
);
1130 handler
= Ffind_file_name_handler (string
, Qfile_exists_p
);
1131 if ((!NILP (handler
) || !NILP (predicate
)) && !NATNUMP (predicate
))
1133 if (NILP (predicate
))
1134 exists
= !NILP (Ffile_readable_p (string
));
1136 exists
= !NILP (call1 (predicate
, string
));
1137 if (exists
&& !NILP (Ffile_directory_p (string
)))
1142 /* We succeeded; return this descriptor and filename. */
1153 encoded_fn
= ENCODE_FILE (string
);
1154 pfn
= SDATA (encoded_fn
);
1155 exists
= (stat (pfn
, &st
) >= 0
1156 && (st
.st_mode
& S_IFMT
) != S_IFDIR
);
1159 /* Check that we can access or open it. */
1160 if (NATNUMP (predicate
))
1161 fd
= (access (pfn
, XFASTINT (predicate
)) == 0) ? 1 : -1;
1163 fd
= emacs_open (pfn
, O_RDONLY
, 0);
1167 /* We succeeded; return this descriptor and filename. */
1185 /* Merge the list we've accumulated of globals from the current input source
1186 into the load_history variable. The details depend on whether
1187 the source has an associated file name or not. */
1190 build_load_history (stream
, source
)
1194 register Lisp_Object tail
, prev
, newelt
;
1195 register Lisp_Object tem
, tem2
;
1196 register int foundit
, loading
;
1198 loading
= stream
|| !NARROWED
;
1200 tail
= Vload_history
;
1203 while (CONSP (tail
))
1207 /* Find the feature's previous assoc list... */
1208 if (!NILP (Fequal (source
, Fcar (tem
))))
1212 /* If we're loading, remove it. */
1216 Vload_history
= XCDR (tail
);
1218 Fsetcdr (prev
, XCDR (tail
));
1221 /* Otherwise, cons on new symbols that are not already members. */
1224 tem2
= Vcurrent_load_list
;
1226 while (CONSP (tem2
))
1228 newelt
= XCAR (tem2
);
1230 if (NILP (Fmember (newelt
, tem
)))
1231 Fsetcar (tail
, Fcons (XCAR (tem
),
1232 Fcons (newelt
, XCDR (tem
))));
1245 /* If we're loading, cons the new assoc onto the front of load-history,
1246 the most-recently-loaded position. Also do this if we didn't find
1247 an existing member for the current source. */
1248 if (loading
|| !foundit
)
1249 Vload_history
= Fcons (Fnreverse (Vcurrent_load_list
),
1254 unreadpure (junk
) /* Used as unwind-protect function in readevalloop */
1262 readevalloop_1 (old
)
1265 load_convert_to_unibyte
= ! NILP (old
);
1269 /* Signal an `end-of-file' error, if possible with file name
1273 end_of_file_error ()
1277 if (STRINGP (Vload_file_name
))
1278 data
= Fcons (Vload_file_name
, Qnil
);
1282 Fsignal (Qend_of_file
, data
);
1285 /* UNIBYTE specifies how to set load_convert_to_unibyte
1286 for this invocation.
1287 READFUN, if non-nil, is used instead of `read'. */
1290 readevalloop (readcharfun
, stream
, sourcename
, evalfun
, printflag
, unibyte
, readfun
)
1291 Lisp_Object readcharfun
;
1293 Lisp_Object sourcename
;
1294 Lisp_Object (*evalfun
) ();
1296 Lisp_Object unibyte
, readfun
;
1299 register Lisp_Object val
;
1300 int count
= SPECPDL_INDEX ();
1301 struct gcpro gcpro1
;
1302 struct buffer
*b
= 0;
1303 int continue_reading_p
;
1305 if (BUFFERP (readcharfun
))
1306 b
= XBUFFER (readcharfun
);
1307 else if (MARKERP (readcharfun
))
1308 b
= XMARKER (readcharfun
)->buffer
;
1310 specbind (Qstandard_input
, readcharfun
);
1311 specbind (Qcurrent_load_list
, Qnil
);
1312 record_unwind_protect (readevalloop_1
, load_convert_to_unibyte
? Qt
: Qnil
);
1313 load_convert_to_unibyte
= !NILP (unibyte
);
1315 readchar_backlog
= -1;
1317 GCPRO1 (sourcename
);
1319 LOADHIST_ATTACH (sourcename
);
1321 continue_reading_p
= 1;
1322 while (continue_reading_p
)
1324 if (b
!= 0 && NILP (b
->name
))
1325 error ("Reading from killed buffer");
1331 while ((c
= READCHAR
) != '\n' && c
!= -1);
1336 /* Ignore whitespace here, so we can detect eof. */
1337 if (c
== ' ' || c
== '\t' || c
== '\n' || c
== '\f' || c
== '\r')
1340 if (!NILP (Vpurify_flag
) && c
== '(')
1342 int count1
= SPECPDL_INDEX ();
1343 record_unwind_protect (unreadpure
, Qnil
);
1344 val
= read_list (-1, readcharfun
);
1345 unbind_to (count1
, Qnil
);
1350 read_objects
= Qnil
;
1351 if (!NILP (readfun
))
1353 val
= call1 (readfun
, readcharfun
);
1355 /* If READCHARFUN has set point to ZV, we should
1356 stop reading, even if the form read sets point
1357 to a different value when evaluated. */
1358 if (BUFFERP (readcharfun
))
1360 struct buffer
*b
= XBUFFER (readcharfun
);
1361 if (BUF_PT (b
) == BUF_ZV (b
))
1362 continue_reading_p
= 0;
1365 else if (! NILP (Vload_read_function
))
1366 val
= call1 (Vload_read_function
, readcharfun
);
1368 val
= read_internal_start (readcharfun
, Qnil
, Qnil
);
1371 val
= (*evalfun
) (val
);
1375 Vvalues
= Fcons (val
, Vvalues
);
1376 if (EQ (Vstandard_output
, Qt
))
1383 build_load_history (stream
, sourcename
);
1386 unbind_to (count
, Qnil
);
1389 DEFUN ("eval-buffer", Feval_buffer
, Seval_buffer
, 0, 5, "",
1390 doc
: /* Execute the current buffer as Lisp code.
1391 Programs can pass two arguments, BUFFER and PRINTFLAG.
1392 BUFFER is the buffer to evaluate (nil means use current buffer).
1393 PRINTFLAG controls printing of output:
1394 nil means discard it; anything else is stream for print.
1396 If the optional third argument FILENAME is non-nil,
1397 it specifies the file name to use for `load-history'.
1398 The optional fourth argument UNIBYTE specifies `load-convert-to-unibyte'
1399 for this invocation.
1401 The optional fifth argument DO-ALLOW-PRINT, if non-nil, specifies that
1402 `print' and related functions should work normally even if PRINTFLAG is nil.
1404 This function preserves the position of point. */)
1405 (buffer
, printflag
, filename
, unibyte
, do_allow_print
)
1406 Lisp_Object buffer
, printflag
, filename
, unibyte
, do_allow_print
;
1408 int count
= SPECPDL_INDEX ();
1409 Lisp_Object tem
, buf
;
1412 buf
= Fcurrent_buffer ();
1414 buf
= Fget_buffer (buffer
);
1416 error ("No such buffer");
1418 if (NILP (printflag
) && NILP (do_allow_print
))
1423 if (NILP (filename
))
1424 filename
= XBUFFER (buf
)->filename
;
1426 specbind (Qstandard_output
, tem
);
1427 record_unwind_protect (save_excursion_restore
, save_excursion_save ());
1428 BUF_SET_PT (XBUFFER (buf
), BUF_BEGV (XBUFFER (buf
)));
1429 readevalloop (buf
, 0, filename
, Feval
, !NILP (printflag
), unibyte
, Qnil
);
1430 unbind_to (count
, Qnil
);
1435 DEFUN ("eval-region", Feval_region
, Seval_region
, 2, 4, "r",
1436 doc
: /* Execute the region as Lisp code.
1437 When called from programs, expects two arguments,
1438 giving starting and ending indices in the current buffer
1439 of the text to be executed.
1440 Programs can pass third argument PRINTFLAG which controls output:
1441 nil means discard it; anything else is stream for printing it.
1442 Also the fourth argument READ-FUNCTION, if non-nil, is used
1443 instead of `read' to read each expression. It gets one argument
1444 which is the input stream for reading characters.
1446 This function does not move point. */)
1447 (start
, end
, printflag
, read_function
)
1448 Lisp_Object start
, end
, printflag
, read_function
;
1450 int count
= SPECPDL_INDEX ();
1451 Lisp_Object tem
, cbuf
;
1453 cbuf
= Fcurrent_buffer ();
1455 if (NILP (printflag
))
1459 specbind (Qstandard_output
, tem
);
1461 if (NILP (printflag
))
1462 record_unwind_protect (save_excursion_restore
, save_excursion_save ());
1463 record_unwind_protect (save_restriction_restore
, save_restriction_save ());
1465 /* This both uses start and checks its type. */
1467 Fnarrow_to_region (make_number (BEGV
), end
);
1468 readevalloop (cbuf
, 0, XBUFFER (cbuf
)->filename
, Feval
,
1469 !NILP (printflag
), Qnil
, read_function
);
1471 return unbind_to (count
, Qnil
);
1475 DEFUN ("read", Fread
, Sread
, 0, 1, 0,
1476 doc
: /* Read one Lisp expression as text from STREAM, return as Lisp object.
1477 If STREAM is nil, use the value of `standard-input' (which see).
1478 STREAM or the value of `standard-input' may be:
1479 a buffer (read from point and advance it)
1480 a marker (read from where it points and advance it)
1481 a function (call it with no arguments for each character,
1482 call it with a char as argument to push a char back)
1483 a string (takes text from string, starting at the beginning)
1484 t (read text line using minibuffer and use it, or read from
1485 standard input in batch mode). */)
1490 stream
= Vstandard_input
;
1491 if (EQ (stream
, Qt
))
1492 stream
= Qread_char
;
1493 if (EQ (stream
, Qread_char
))
1494 return Fread_minibuffer (build_string ("Lisp expression: "), Qnil
);
1496 return read_internal_start (stream
, Qnil
, Qnil
);
1499 DEFUN ("read-from-string", Fread_from_string
, Sread_from_string
, 1, 3, 0,
1500 doc
: /* Read one Lisp expression which is represented as text by STRING.
1501 Returns a cons: (OBJECT-READ . FINAL-STRING-INDEX).
1502 START and END optionally delimit a substring of STRING from which to read;
1503 they default to 0 and (length STRING) respectively. */)
1504 (string
, start
, end
)
1505 Lisp_Object string
, start
, end
;
1508 CHECK_STRING (string
);
1509 /* read_internal_start sets read_from_string_index. */
1510 ret
= read_internal_start (string
, start
, end
);
1511 return Fcons (ret
, make_number (read_from_string_index
));
1514 /* Function to set up the global context we need in toplevel read
1517 read_internal_start (stream
, start
, end
)
1519 Lisp_Object start
; /* Only used when stream is a string. */
1520 Lisp_Object end
; /* Only used when stream is a string. */
1524 readchar_backlog
= -1;
1526 new_backquote_flag
= 0;
1527 read_objects
= Qnil
;
1528 if (EQ (Vread_with_symbol_positions
, Qt
)
1529 || EQ (Vread_with_symbol_positions
, stream
))
1530 Vread_symbol_positions_list
= Qnil
;
1532 if (STRINGP (stream
))
1534 int startval
, endval
;
1536 endval
= SCHARS (stream
);
1540 endval
= XINT (end
);
1541 if (endval
< 0 || endval
> SCHARS (stream
))
1542 args_out_of_range (stream
, end
);
1549 CHECK_NUMBER (start
);
1550 startval
= XINT (start
);
1551 if (startval
< 0 || startval
> endval
)
1552 args_out_of_range (stream
, start
);
1554 read_from_string_index
= startval
;
1555 read_from_string_index_byte
= string_char_to_byte (stream
, startval
);
1556 read_from_string_limit
= endval
;
1559 retval
= read0 (stream
);
1560 if (EQ (Vread_with_symbol_positions
, Qt
)
1561 || EQ (Vread_with_symbol_positions
, stream
))
1562 Vread_symbol_positions_list
= Fnreverse (Vread_symbol_positions_list
);
1566 /* Use this for recursive reads, in contexts where internal tokens
1571 Lisp_Object readcharfun
;
1573 register Lisp_Object val
;
1576 val
= read1 (readcharfun
, &c
, 0);
1578 Fsignal (Qinvalid_read_syntax
, Fcons (Fmake_string (make_number (1),
1585 static int read_buffer_size
;
1586 static char *read_buffer
;
1588 /* Read multibyte form and return it as a character. C is a first
1589 byte of multibyte form, and rest of them are read from
1593 read_multibyte (c
, readcharfun
)
1595 Lisp_Object readcharfun
;
1597 /* We need the actual character code of this multibyte
1599 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
1607 while ((c
= READCHAR
) >= 0xA0
1608 && len
< MAX_MULTIBYTE_LENGTH
)
1614 if (UNIBYTE_STR_AS_MULTIBYTE_P (str
, len
, bytes
))
1615 return STRING_CHAR (str
, len
);
1616 /* The byte sequence is not valid as multibyte. Unread all bytes
1617 but the first one, and return the first byte. */
1623 /* Read a \-escape sequence, assuming we already read the `\'.
1624 If the escape sequence forces unibyte, store 1 into *BYTEREP.
1625 If the escape sequence forces multibyte, store 2 into *BYTEREP.
1626 Otherwise store 0 into *BYTEREP. */
1629 read_escape (readcharfun
, stringp
, byterep
)
1630 Lisp_Object readcharfun
;
1634 register int c
= READCHAR
;
1641 end_of_file_error ();
1671 error ("Invalid escape character syntax");
1674 c
= read_escape (readcharfun
, 0, byterep
);
1675 return c
| meta_modifier
;
1680 error ("Invalid escape character syntax");
1683 c
= read_escape (readcharfun
, 0, byterep
);
1684 return c
| shift_modifier
;
1689 error ("Invalid escape character syntax");
1692 c
= read_escape (readcharfun
, 0, byterep
);
1693 return c
| hyper_modifier
;
1698 error ("Invalid escape character syntax");
1701 c
= read_escape (readcharfun
, 0, byterep
);
1702 return c
| alt_modifier
;
1714 c
= read_escape (readcharfun
, 0, byterep
);
1715 return c
| super_modifier
;
1720 error ("Invalid escape character syntax");
1724 c
= read_escape (readcharfun
, 0, byterep
);
1725 if ((c
& ~CHAR_MODIFIER_MASK
) == '?')
1726 return 0177 | (c
& CHAR_MODIFIER_MASK
);
1727 else if (! SINGLE_BYTE_CHAR_P ((c
& ~CHAR_MODIFIER_MASK
)))
1728 return c
| ctrl_modifier
;
1729 /* ASCII control chars are made from letters (both cases),
1730 as well as the non-letters within 0100...0137. */
1731 else if ((c
& 0137) >= 0101 && (c
& 0137) <= 0132)
1732 return (c
& (037 | ~0177));
1733 else if ((c
& 0177) >= 0100 && (c
& 0177) <= 0137)
1734 return (c
& (037 | ~0177));
1736 return c
| ctrl_modifier
;
1746 /* An octal escape, as in ANSI C. */
1748 register int i
= c
- '0';
1749 register int count
= 0;
1752 if ((c
= READCHAR
) >= '0' && c
<= '7')
1769 /* A hex escape, as in ANSI C. */
1775 if (c
>= '0' && c
<= '9')
1780 else if ((c
>= 'a' && c
<= 'f')
1781 || (c
>= 'A' && c
<= 'F'))
1784 if (c
>= 'a' && c
<= 'f')
1801 if (BASE_LEADING_CODE_P (c
))
1802 c
= read_multibyte (c
, readcharfun
);
1808 /* Read an integer in radix RADIX using READCHARFUN to read
1809 characters. RADIX must be in the interval [2..36]; if it isn't, a
1810 read error is signaled . Value is the integer read. Signals an
1811 error if encountering invalid read syntax or if RADIX is out of
1815 read_integer (readcharfun
, radix
)
1816 Lisp_Object readcharfun
;
1819 int ndigits
= 0, invalid_p
, c
, sign
= 0;
1820 EMACS_INT number
= 0;
1822 if (radix
< 2 || radix
> 36)
1826 number
= ndigits
= invalid_p
= 0;
1842 if (c
>= '0' && c
<= '9')
1844 else if (c
>= 'a' && c
<= 'z')
1845 digit
= c
- 'a' + 10;
1846 else if (c
>= 'A' && c
<= 'Z')
1847 digit
= c
- 'A' + 10;
1854 if (digit
< 0 || digit
>= radix
)
1857 number
= radix
* number
+ digit
;
1863 if (ndigits
== 0 || invalid_p
)
1866 sprintf (buf
, "integer, radix %d", radix
);
1867 Fsignal (Qinvalid_read_syntax
, Fcons (build_string (buf
), Qnil
));
1870 return make_number (sign
* number
);
1874 /* Convert unibyte text in read_buffer to multibyte.
1876 Initially, *P is a pointer after the end of the unibyte text, and
1877 the pointer *END points after the end of read_buffer.
1879 If read_buffer doesn't have enough room to hold the result
1880 of the conversion, reallocate it and adjust *P and *END.
1882 At the end, make *P point after the result of the conversion, and
1883 return in *NCHARS the number of characters in the converted
1887 to_multibyte (p
, end
, nchars
)
1893 parse_str_as_multibyte (read_buffer
, *p
- read_buffer
, &nbytes
, nchars
);
1894 if (read_buffer_size
< 2 * nbytes
)
1896 int offset
= *p
- read_buffer
;
1897 read_buffer_size
= 2 * max (read_buffer_size
, nbytes
);
1898 read_buffer
= (char *) xrealloc (read_buffer
, read_buffer_size
);
1899 *p
= read_buffer
+ offset
;
1900 *end
= read_buffer
+ read_buffer_size
;
1903 if (nbytes
!= *nchars
)
1904 nbytes
= str_as_multibyte (read_buffer
, read_buffer_size
,
1905 *p
- read_buffer
, nchars
);
1907 *p
= read_buffer
+ nbytes
;
1911 /* If the next token is ')' or ']' or '.', we store that character
1912 in *PCH and the return value is not interesting. Else, we store
1913 zero in *PCH and we read and return one lisp object.
1915 FIRST_IN_LIST is nonzero if this is the first element of a list. */
1918 read1 (readcharfun
, pch
, first_in_list
)
1919 register Lisp_Object readcharfun
;
1924 int uninterned_symbol
= 0;
1932 end_of_file_error ();
1937 return read_list (0, readcharfun
);
1940 return read_vector (readcharfun
, 0);
1957 tmp
= read_vector (readcharfun
, 0);
1958 if (XVECTOR (tmp
)->size
< CHAR_TABLE_STANDARD_SLOTS
1959 || XVECTOR (tmp
)->size
> CHAR_TABLE_STANDARD_SLOTS
+ 10)
1960 error ("Invalid size char-table");
1961 XSETCHAR_TABLE (tmp
, XCHAR_TABLE (tmp
));
1962 XCHAR_TABLE (tmp
)->top
= Qt
;
1971 tmp
= read_vector (readcharfun
, 0);
1972 if (XVECTOR (tmp
)->size
!= SUB_CHAR_TABLE_STANDARD_SLOTS
)
1973 error ("Invalid size char-table");
1974 XSETCHAR_TABLE (tmp
, XCHAR_TABLE (tmp
));
1975 XCHAR_TABLE (tmp
)->top
= Qnil
;
1978 Fsignal (Qinvalid_read_syntax
,
1979 Fcons (make_string ("#^^", 3), Qnil
));
1981 Fsignal (Qinvalid_read_syntax
, Fcons (make_string ("#^", 2), Qnil
));
1986 length
= read1 (readcharfun
, pch
, first_in_list
);
1990 Lisp_Object tmp
, val
;
1991 int size_in_chars
= ((XFASTINT (length
) + BITS_PER_CHAR
- 1)
1995 tmp
= read1 (readcharfun
, pch
, first_in_list
);
1996 if (size_in_chars
!= SCHARS (tmp
)
1997 /* We used to print 1 char too many
1998 when the number of bits was a multiple of 8.
1999 Accept such input in case it came from an old version. */
2000 && ! (XFASTINT (length
)
2001 == (SCHARS (tmp
) - 1) * BITS_PER_CHAR
))
2002 Fsignal (Qinvalid_read_syntax
,
2003 Fcons (make_string ("#&...", 5), Qnil
));
2005 val
= Fmake_bool_vector (length
, Qnil
);
2006 bcopy (SDATA (tmp
), XBOOL_VECTOR (val
)->data
,
2008 /* Clear the extraneous bits in the last byte. */
2009 if (XINT (length
) != size_in_chars
* BITS_PER_CHAR
)
2010 XBOOL_VECTOR (val
)->data
[size_in_chars
- 1]
2011 &= (1 << (XINT (length
) % BITS_PER_CHAR
)) - 1;
2014 Fsignal (Qinvalid_read_syntax
, Fcons (make_string ("#&...", 5),
2019 /* Accept compiled functions at read-time so that we don't have to
2020 build them using function calls. */
2022 tmp
= read_vector (readcharfun
, 1);
2023 return Fmake_byte_code (XVECTOR (tmp
)->size
,
2024 XVECTOR (tmp
)->contents
);
2029 struct gcpro gcpro1
;
2032 /* Read the string itself. */
2033 tmp
= read1 (readcharfun
, &ch
, 0);
2034 if (ch
!= 0 || !STRINGP (tmp
))
2035 Fsignal (Qinvalid_read_syntax
, Fcons (make_string ("#", 1), Qnil
));
2037 /* Read the intervals and their properties. */
2040 Lisp_Object beg
, end
, plist
;
2042 beg
= read1 (readcharfun
, &ch
, 0);
2047 end
= read1 (readcharfun
, &ch
, 0);
2049 plist
= read1 (readcharfun
, &ch
, 0);
2051 Fsignal (Qinvalid_read_syntax
,
2052 Fcons (build_string ("invalid string property list"),
2054 Fset_text_properties (beg
, end
, plist
, tmp
);
2060 /* #@NUMBER is used to skip NUMBER following characters.
2061 That's used in .elc files to skip over doc strings
2062 and function definitions. */
2067 /* Read a decimal integer. */
2068 while ((c
= READCHAR
) >= 0
2069 && c
>= '0' && c
<= '9')
2077 if (load_force_doc_strings
&& EQ (readcharfun
, Qget_file_char
))
2079 /* If we are supposed to force doc strings into core right now,
2080 record the last string that we skipped,
2081 and record where in the file it comes from. */
2083 /* But first exchange saved_doc_string
2084 with prev_saved_doc_string, so we save two strings. */
2086 char *temp
= saved_doc_string
;
2087 int temp_size
= saved_doc_string_size
;
2088 file_offset temp_pos
= saved_doc_string_position
;
2089 int temp_len
= saved_doc_string_length
;
2091 saved_doc_string
= prev_saved_doc_string
;
2092 saved_doc_string_size
= prev_saved_doc_string_size
;
2093 saved_doc_string_position
= prev_saved_doc_string_position
;
2094 saved_doc_string_length
= prev_saved_doc_string_length
;
2096 prev_saved_doc_string
= temp
;
2097 prev_saved_doc_string_size
= temp_size
;
2098 prev_saved_doc_string_position
= temp_pos
;
2099 prev_saved_doc_string_length
= temp_len
;
2102 if (saved_doc_string_size
== 0)
2104 saved_doc_string_size
= nskip
+ 100;
2105 saved_doc_string
= (char *) xmalloc (saved_doc_string_size
);
2107 if (nskip
> saved_doc_string_size
)
2109 saved_doc_string_size
= nskip
+ 100;
2110 saved_doc_string
= (char *) xrealloc (saved_doc_string
,
2111 saved_doc_string_size
);
2114 saved_doc_string_position
= file_tell (instream
);
2116 /* Copy that many characters into saved_doc_string. */
2117 for (i
= 0; i
< nskip
&& c
>= 0; i
++)
2118 saved_doc_string
[i
] = c
= READCHAR
;
2120 saved_doc_string_length
= i
;
2124 /* Skip that many characters. */
2125 for (i
= 0; i
< nskip
&& c
>= 0; i
++)
2133 /* #! appears at the beginning of an executable file.
2134 Skip the first line. */
2135 while (c
!= '\n' && c
>= 0)
2140 return Vload_file_name
;
2142 return Fcons (Qfunction
, Fcons (read0 (readcharfun
), Qnil
));
2143 /* #:foo is the uninterned symbol named foo. */
2146 uninterned_symbol
= 1;
2150 /* Reader forms that can reuse previously read objects. */
2151 if (c
>= '0' && c
<= '9')
2156 /* Read a non-negative integer. */
2157 while (c
>= '0' && c
<= '9')
2163 /* #n=object returns object, but associates it with n for #n#. */
2166 /* Make a placeholder for #n# to use temporarily */
2167 Lisp_Object placeholder
;
2170 placeholder
= Fcons(Qnil
, Qnil
);
2171 cell
= Fcons (make_number (n
), placeholder
);
2172 read_objects
= Fcons (cell
, read_objects
);
2174 /* Read the object itself. */
2175 tem
= read0 (readcharfun
);
2177 /* Now put it everywhere the placeholder was... */
2178 substitute_object_in_subtree (tem
, placeholder
);
2180 /* ...and #n# will use the real value from now on. */
2181 Fsetcdr (cell
, tem
);
2185 /* #n# returns a previously read object. */
2188 tem
= Fassq (make_number (n
), read_objects
);
2191 /* Fall through to error message. */
2193 else if (c
== 'r' || c
== 'R')
2194 return read_integer (readcharfun
, n
);
2196 /* Fall through to error message. */
2198 else if (c
== 'x' || c
== 'X')
2199 return read_integer (readcharfun
, 16);
2200 else if (c
== 'o' || c
== 'O')
2201 return read_integer (readcharfun
, 8);
2202 else if (c
== 'b' || c
== 'B')
2203 return read_integer (readcharfun
, 2);
2206 Fsignal (Qinvalid_read_syntax
, Fcons (make_string ("#", 1), Qnil
));
2209 while ((c
= READCHAR
) >= 0 && c
!= '\n');
2214 return Fcons (Qquote
, Fcons (read0 (readcharfun
), Qnil
));
2224 new_backquote_flag
++;
2225 value
= read0 (readcharfun
);
2226 new_backquote_flag
--;
2228 return Fcons (Qbackquote
, Fcons (value
, Qnil
));
2232 if (new_backquote_flag
)
2234 Lisp_Object comma_type
= Qnil
;
2239 comma_type
= Qcomma_at
;
2241 comma_type
= Qcomma_dot
;
2244 if (ch
>= 0) UNREAD (ch
);
2245 comma_type
= Qcomma
;
2248 new_backquote_flag
--;
2249 value
= read0 (readcharfun
);
2250 new_backquote_flag
++;
2251 return Fcons (comma_type
, Fcons (value
, Qnil
));
2264 end_of_file_error ();
2266 /* Accept `single space' syntax like (list ? x) where the
2267 whitespace character is SPC or TAB.
2268 Other literal whitespace like NL, CR, and FF are not accepted,
2269 as there are well-established escape sequences for these. */
2270 if (c
== ' ' || c
== '\t')
2271 return make_number (c
);
2274 c
= read_escape (readcharfun
, 0, &discard
);
2275 else if (BASE_LEADING_CODE_P (c
))
2276 c
= read_multibyte (c
, readcharfun
);
2278 next_char
= READCHAR
;
2279 if (next_char
== '.')
2281 /* Only a dotted-pair dot is valid after a char constant. */
2282 int next_next_char
= READCHAR
;
2283 UNREAD (next_next_char
);
2285 ok
= (next_next_char
<= 040
2286 || (next_next_char
< 0200
2287 && (index ("\"';([#?", next_next_char
)
2288 || (!first_in_list
&& next_next_char
== '`')
2289 || (new_backquote_flag
&& next_next_char
== ','))));
2293 ok
= (next_char
<= 040
2294 || (next_char
< 0200
2295 && (index ("\"';()[]#?", next_char
)
2296 || (!first_in_list
&& next_char
== '`')
2297 || (new_backquote_flag
&& next_char
== ','))));
2301 Fsignal (Qinvalid_read_syntax
, Fcons (make_string ("?", 1), Qnil
));
2303 return make_number (c
);
2308 char *p
= read_buffer
;
2309 char *end
= read_buffer
+ read_buffer_size
;
2311 /* 1 if we saw an escape sequence specifying
2312 a multibyte character, or a multibyte character. */
2313 int force_multibyte
= 0;
2314 /* 1 if we saw an escape sequence specifying
2315 a single-byte character. */
2316 int force_singlebyte
= 0;
2317 /* 1 if read_buffer contains multibyte text now. */
2318 int is_multibyte
= 0;
2322 while ((c
= READCHAR
) >= 0
2325 if (end
- p
< MAX_MULTIBYTE_LENGTH
)
2327 int offset
= p
- read_buffer
;
2328 read_buffer
= (char *) xrealloc (read_buffer
,
2329 read_buffer_size
*= 2);
2330 p
= read_buffer
+ offset
;
2331 end
= read_buffer
+ read_buffer_size
;
2338 c
= read_escape (readcharfun
, 1, &byterep
);
2340 /* C is -1 if \ newline has just been seen */
2343 if (p
== read_buffer
)
2349 force_singlebyte
= 1;
2350 else if (byterep
== 2)
2351 force_multibyte
= 1;
2354 /* A character that must be multibyte forces multibyte. */
2355 if (! SINGLE_BYTE_CHAR_P (c
& ~CHAR_MODIFIER_MASK
))
2356 force_multibyte
= 1;
2358 /* If we just discovered the need to be multibyte,
2359 convert the text accumulated thus far. */
2360 if (force_multibyte
&& ! is_multibyte
)
2363 to_multibyte (&p
, &end
, &nchars
);
2366 /* Allow `\C- ' and `\C-?'. */
2367 if (c
== (CHAR_CTL
| ' '))
2369 else if (c
== (CHAR_CTL
| '?'))
2374 /* Shift modifier is valid only with [A-Za-z]. */
2375 if ((c
& 0377) >= 'A' && (c
& 0377) <= 'Z')
2377 else if ((c
& 0377) >= 'a' && (c
& 0377) <= 'z')
2378 c
= (c
& ~CHAR_SHIFT
) - ('a' - 'A');
2382 /* Move the meta bit to the right place for a string. */
2383 c
= (c
& ~CHAR_META
) | 0x80;
2384 if (c
& CHAR_MODIFIER_MASK
)
2385 error ("Invalid modifier in string");
2388 p
+= CHAR_STRING (c
, p
);
2396 end_of_file_error ();
2398 /* If purifying, and string starts with \ newline,
2399 return zero instead. This is for doc strings
2400 that we are really going to find in etc/DOC.nn.nn */
2401 if (!NILP (Vpurify_flag
) && NILP (Vdoc_file_name
) && cancel
)
2402 return make_number (0);
2404 if (is_multibyte
|| force_singlebyte
)
2406 else if (load_convert_to_unibyte
)
2409 to_multibyte (&p
, &end
, &nchars
);
2410 if (p
- read_buffer
!= nchars
)
2412 string
= make_multibyte_string (read_buffer
, nchars
,
2414 return Fstring_make_unibyte (string
);
2416 /* We can make a unibyte string directly. */
2419 else if (EQ (readcharfun
, Qget_file_char
)
2420 || EQ (readcharfun
, Qlambda
))
2422 /* Nowadays, reading directly from a file is used only for
2423 compiled Emacs Lisp files, and those always use the
2424 Emacs internal encoding. Meanwhile, Qlambda is used
2425 for reading dynamic byte code (compiled with
2426 byte-compile-dynamic = t). So make the string multibyte
2427 if the string contains any multibyte sequences.
2428 (to_multibyte is a no-op if not.) */
2429 to_multibyte (&p
, &end
, &nchars
);
2430 is_multibyte
= (p
- read_buffer
) != nchars
;
2433 /* In all other cases, if we read these bytes as
2434 separate characters, treat them as separate characters now. */
2437 /* We want readchar_count to be the number of characters, not
2438 bytes. Hence we adjust for multibyte characters in the
2439 string. ... But it doesn't seem to be necessary, because
2440 READCHAR *does* read multibyte characters from buffers. */
2441 /* readchar_count -= (p - read_buffer) - nchars; */
2443 return make_pure_string (read_buffer
, nchars
, p
- read_buffer
,
2445 return make_specified_string (read_buffer
, nchars
, p
- read_buffer
,
2451 int next_char
= READCHAR
;
2454 if (next_char
<= 040
2455 || (next_char
< 0200
2456 && index ("\"';([#?", next_char
)
2457 || (!first_in_list
&& next_char
== '`')
2458 || (new_backquote_flag
&& next_char
== ',')))
2464 /* Otherwise, we fall through! Note that the atom-reading loop
2465 below will now loop at least once, assuring that we will not
2466 try to UNREAD two characters in a row. */
2470 if (c
<= 040) goto retry
;
2472 char *p
= read_buffer
;
2476 char *end
= read_buffer
+ read_buffer_size
;
2480 || (!index ("\"';()[]#", c
)
2481 && !(!first_in_list
&& c
== '`')
2482 && !(new_backquote_flag
&& c
== ','))))
2484 if (end
- p
< MAX_MULTIBYTE_LENGTH
)
2486 int offset
= p
- read_buffer
;
2487 read_buffer
= (char *) xrealloc (read_buffer
,
2488 read_buffer_size
*= 2);
2489 p
= read_buffer
+ offset
;
2490 end
= read_buffer
+ read_buffer_size
;
2497 end_of_file_error ();
2501 if (! SINGLE_BYTE_CHAR_P (c
))
2502 p
+= CHAR_STRING (c
, p
);
2511 int offset
= p
- read_buffer
;
2512 read_buffer
= (char *) xrealloc (read_buffer
,
2513 read_buffer_size
*= 2);
2514 p
= read_buffer
+ offset
;
2515 end
= read_buffer
+ read_buffer_size
;
2522 if (!quoted
&& !uninterned_symbol
)
2525 register Lisp_Object val
;
2527 if (*p1
== '+' || *p1
== '-') p1
++;
2528 /* Is it an integer? */
2531 while (p1
!= p
&& (c
= *p1
) >= '0' && c
<= '9') p1
++;
2532 /* Integers can have trailing decimal points. */
2533 if (p1
> read_buffer
&& p1
< p
&& *p1
== '.') p1
++;
2535 /* It is an integer. */
2539 if (sizeof (int) == sizeof (EMACS_INT
))
2540 XSETINT (val
, atoi (read_buffer
));
2541 else if (sizeof (long) == sizeof (EMACS_INT
))
2542 XSETINT (val
, atol (read_buffer
));
2548 if (isfloat_string (read_buffer
))
2550 /* Compute NaN and infinities using 0.0 in a variable,
2551 to cope with compilers that think they are smarter
2557 /* Negate the value ourselves. This treats 0, NaNs,
2558 and infinity properly on IEEE floating point hosts,
2559 and works around a common bug where atof ("-0.0")
2561 int negative
= read_buffer
[0] == '-';
2563 /* The only way p[-1] can be 'F' or 'N', after isfloat_string
2564 returns 1, is if the input ends in e+INF or e+NaN. */
2571 value
= zero
/ zero
;
2574 value
= atof (read_buffer
+ negative
);
2578 return make_float (negative
? - value
: value
);
2582 Lisp_Object result
= uninterned_symbol
? make_symbol (read_buffer
)
2583 : intern (read_buffer
);
2584 if (EQ (Vread_with_symbol_positions
, Qt
)
2585 || EQ (Vread_with_symbol_positions
, readcharfun
))
2586 Vread_symbol_positions_list
=
2587 /* Kind of a hack; this will probably fail if characters
2588 in the symbol name were escaped. Not really a big
2590 Fcons (Fcons (result
,
2591 make_number (readchar_count
2592 - XFASTINT (Flength (Fsymbol_name (result
))))),
2593 Vread_symbol_positions_list
);
2601 /* List of nodes we've seen during substitute_object_in_subtree. */
2602 static Lisp_Object seen_list
;
2605 substitute_object_in_subtree (object
, placeholder
)
2607 Lisp_Object placeholder
;
2609 Lisp_Object check_object
;
2611 /* We haven't seen any objects when we start. */
2614 /* Make all the substitutions. */
2616 = substitute_object_recurse (object
, placeholder
, object
);
2618 /* Clear seen_list because we're done with it. */
2621 /* The returned object here is expected to always eq the
2623 if (!EQ (check_object
, object
))
2624 error ("Unexpected mutation error in reader");
2627 /* Feval doesn't get called from here, so no gc protection is needed. */
2628 #define SUBSTITUTE(get_val, set_val) \
2630 Lisp_Object old_value = get_val; \
2631 Lisp_Object true_value \
2632 = substitute_object_recurse (object, placeholder,\
2635 if (!EQ (old_value, true_value)) \
2642 substitute_object_recurse (object
, placeholder
, subtree
)
2644 Lisp_Object placeholder
;
2645 Lisp_Object subtree
;
2647 /* If we find the placeholder, return the target object. */
2648 if (EQ (placeholder
, subtree
))
2651 /* If we've been to this node before, don't explore it again. */
2652 if (!EQ (Qnil
, Fmemq (subtree
, seen_list
)))
2655 /* If this node can be the entry point to a cycle, remember that
2656 we've seen it. It can only be such an entry point if it was made
2657 by #n=, which means that we can find it as a value in
2659 if (!EQ (Qnil
, Frassq (subtree
, read_objects
)))
2660 seen_list
= Fcons (subtree
, seen_list
);
2662 /* Recurse according to subtree's type.
2663 Every branch must return a Lisp_Object. */
2664 switch (XTYPE (subtree
))
2666 case Lisp_Vectorlike
:
2669 int length
= XINT (Flength(subtree
));
2670 for (i
= 0; i
< length
; i
++)
2672 Lisp_Object idx
= make_number (i
);
2673 SUBSTITUTE (Faref (subtree
, idx
),
2674 Faset (subtree
, idx
, true_value
));
2681 SUBSTITUTE (Fcar_safe (subtree
),
2682 Fsetcar (subtree
, true_value
));
2683 SUBSTITUTE (Fcdr_safe (subtree
),
2684 Fsetcdr (subtree
, true_value
));
2690 /* Check for text properties in each interval.
2691 substitute_in_interval contains part of the logic. */
2693 INTERVAL root_interval
= STRING_INTERVALS (subtree
);
2694 Lisp_Object arg
= Fcons (object
, placeholder
);
2696 traverse_intervals_noorder (root_interval
,
2697 &substitute_in_interval
, arg
);
2702 /* Other types don't recurse any further. */
2708 /* Helper function for substitute_object_recurse. */
2710 substitute_in_interval (interval
, arg
)
2714 Lisp_Object object
= Fcar (arg
);
2715 Lisp_Object placeholder
= Fcdr (arg
);
2717 SUBSTITUTE(interval
->plist
, interval
->plist
= true_value
);
2736 if (*cp
== '+' || *cp
== '-')
2739 if (*cp
>= '0' && *cp
<= '9')
2742 while (*cp
>= '0' && *cp
<= '9')
2750 if (*cp
>= '0' && *cp
<= '9')
2753 while (*cp
>= '0' && *cp
<= '9')
2756 if (*cp
== 'e' || *cp
== 'E')
2760 if (*cp
== '+' || *cp
== '-')
2764 if (*cp
>= '0' && *cp
<= '9')
2767 while (*cp
>= '0' && *cp
<= '9')
2770 else if (cp
== start
)
2772 else if (cp
[-1] == '+' && cp
[0] == 'I' && cp
[1] == 'N' && cp
[2] == 'F')
2777 else if (cp
[-1] == '+' && cp
[0] == 'N' && cp
[1] == 'a' && cp
[2] == 'N')
2783 return (((*cp
== 0) || (*cp
== ' ') || (*cp
== '\t') || (*cp
== '\n') || (*cp
== '\r') || (*cp
== '\f'))
2784 && (state
== (LEAD_INT
|DOT_CHAR
|TRAIL_INT
)
2785 || state
== (DOT_CHAR
|TRAIL_INT
)
2786 || state
== (LEAD_INT
|E_CHAR
|EXP_INT
)
2787 || state
== (LEAD_INT
|DOT_CHAR
|TRAIL_INT
|E_CHAR
|EXP_INT
)
2788 || state
== (DOT_CHAR
|TRAIL_INT
|E_CHAR
|EXP_INT
)));
2793 read_vector (readcharfun
, bytecodeflag
)
2794 Lisp_Object readcharfun
;
2799 register Lisp_Object
*ptr
;
2800 register Lisp_Object tem
, item
, vector
;
2801 register struct Lisp_Cons
*otem
;
2804 tem
= read_list (1, readcharfun
);
2805 len
= Flength (tem
);
2806 vector
= (read_pure
? make_pure_vector (XINT (len
)) : Fmake_vector (len
, Qnil
));
2808 size
= XVECTOR (vector
)->size
;
2809 ptr
= XVECTOR (vector
)->contents
;
2810 for (i
= 0; i
< size
; i
++)
2813 /* If `load-force-doc-strings' is t when reading a lazily-loaded
2814 bytecode object, the docstring containing the bytecode and
2815 constants values must be treated as unibyte and passed to
2816 Fread, to get the actual bytecode string and constants vector. */
2817 if (bytecodeflag
&& load_force_doc_strings
)
2819 if (i
== COMPILED_BYTECODE
)
2821 if (!STRINGP (item
))
2822 error ("invalid byte code");
2824 /* Delay handling the bytecode slot until we know whether
2825 it is lazily-loaded (we can tell by whether the
2826 constants slot is nil). */
2827 ptr
[COMPILED_CONSTANTS
] = item
;
2830 else if (i
== COMPILED_CONSTANTS
)
2832 Lisp_Object bytestr
= ptr
[COMPILED_CONSTANTS
];
2836 /* Coerce string to unibyte (like string-as-unibyte,
2837 but without generating extra garbage and
2838 guaranteeing no change in the contents). */
2839 STRING_SET_CHARS (bytestr
, SBYTES (bytestr
));
2840 STRING_SET_UNIBYTE (bytestr
);
2842 item
= Fread (bytestr
);
2844 error ("invalid byte code");
2846 otem
= XCONS (item
);
2847 bytestr
= XCAR (item
);
2852 /* Now handle the bytecode slot. */
2853 ptr
[COMPILED_BYTECODE
] = read_pure
? Fpurecopy (bytestr
) : bytestr
;
2856 ptr
[i
] = read_pure
? Fpurecopy (item
) : item
;
2864 /* FLAG = 1 means check for ] to terminate rather than ) and .
2865 FLAG = -1 means check for starting with defun
2866 and make structure pure. */
2869 read_list (flag
, readcharfun
)
2871 register Lisp_Object readcharfun
;
2873 /* -1 means check next element for defun,
2874 0 means don't check,
2875 1 means already checked and found defun. */
2876 int defunflag
= flag
< 0 ? -1 : 0;
2877 Lisp_Object val
, tail
;
2878 register Lisp_Object elt
, tem
;
2879 struct gcpro gcpro1
, gcpro2
;
2880 /* 0 is the normal case.
2881 1 means this list is a doc reference; replace it with the number 0.
2882 2 means this list is a doc reference; replace it with the doc string. */
2883 int doc_reference
= 0;
2885 /* Initialize this to 1 if we are reading a list. */
2886 int first_in_list
= flag
<= 0;
2895 elt
= read1 (readcharfun
, &ch
, first_in_list
);
2900 /* While building, if the list starts with #$, treat it specially. */
2901 if (EQ (elt
, Vload_file_name
)
2903 && !NILP (Vpurify_flag
))
2905 if (NILP (Vdoc_file_name
))
2906 /* We have not yet called Snarf-documentation, so assume
2907 this file is described in the DOC-MM.NN file
2908 and Snarf-documentation will fill in the right value later.
2909 For now, replace the whole list with 0. */
2912 /* We have already called Snarf-documentation, so make a relative
2913 file name for this file, so it can be found properly
2914 in the installed Lisp directory.
2915 We don't use Fexpand_file_name because that would make
2916 the directory absolute now. */
2917 elt
= concat2 (build_string ("../lisp/"),
2918 Ffile_name_nondirectory (elt
));
2920 else if (EQ (elt
, Vload_file_name
)
2922 && load_force_doc_strings
)
2931 Fsignal (Qinvalid_read_syntax
,
2932 Fcons (make_string (") or . in a vector", 18), Qnil
));
2940 XSETCDR (tail
, read0 (readcharfun
));
2942 val
= read0 (readcharfun
);
2943 read1 (readcharfun
, &ch
, 0);
2947 if (doc_reference
== 1)
2948 return make_number (0);
2949 if (doc_reference
== 2)
2951 /* Get a doc string from the file we are loading.
2952 If it's in saved_doc_string, get it from there. */
2953 int pos
= XINT (XCDR (val
));
2954 /* Position is negative for user variables. */
2955 if (pos
< 0) pos
= -pos
;
2956 if (pos
>= saved_doc_string_position
2957 && pos
< (saved_doc_string_position
2958 + saved_doc_string_length
))
2960 int start
= pos
- saved_doc_string_position
;
2963 /* Process quoting with ^A,
2964 and find the end of the string,
2965 which is marked with ^_ (037). */
2966 for (from
= start
, to
= start
;
2967 saved_doc_string
[from
] != 037;)
2969 int c
= saved_doc_string
[from
++];
2972 c
= saved_doc_string
[from
++];
2974 saved_doc_string
[to
++] = c
;
2976 saved_doc_string
[to
++] = 0;
2978 saved_doc_string
[to
++] = 037;
2981 saved_doc_string
[to
++] = c
;
2984 return make_string (saved_doc_string
+ start
,
2987 /* Look in prev_saved_doc_string the same way. */
2988 else if (pos
>= prev_saved_doc_string_position
2989 && pos
< (prev_saved_doc_string_position
2990 + prev_saved_doc_string_length
))
2992 int start
= pos
- prev_saved_doc_string_position
;
2995 /* Process quoting with ^A,
2996 and find the end of the string,
2997 which is marked with ^_ (037). */
2998 for (from
= start
, to
= start
;
2999 prev_saved_doc_string
[from
] != 037;)
3001 int c
= prev_saved_doc_string
[from
++];
3004 c
= prev_saved_doc_string
[from
++];
3006 prev_saved_doc_string
[to
++] = c
;
3008 prev_saved_doc_string
[to
++] = 0;
3010 prev_saved_doc_string
[to
++] = 037;
3013 prev_saved_doc_string
[to
++] = c
;
3016 return make_string (prev_saved_doc_string
+ start
,
3020 return get_doc_string (val
, 0, 0);
3025 return Fsignal (Qinvalid_read_syntax
, Fcons (make_string (". in wrong context", 18), Qnil
));
3027 return Fsignal (Qinvalid_read_syntax
, Fcons (make_string ("] in a list", 11), Qnil
));
3029 tem
= (read_pure
&& flag
<= 0
3030 ? pure_cons (elt
, Qnil
)
3031 : Fcons (elt
, Qnil
));
3033 XSETCDR (tail
, tem
);
3038 defunflag
= EQ (elt
, Qdefun
);
3039 else if (defunflag
> 0)
3044 Lisp_Object Vobarray
;
3045 Lisp_Object initial_obarray
;
3047 /* oblookup stores the bucket number here, for the sake of Funintern. */
3049 int oblookup_last_bucket_number
;
3051 static int hash_string ();
3053 /* Get an error if OBARRAY is not an obarray.
3054 If it is one, return it. */
3057 check_obarray (obarray
)
3058 Lisp_Object obarray
;
3060 while (!VECTORP (obarray
) || XVECTOR (obarray
)->size
== 0)
3062 /* If Vobarray is now invalid, force it to be valid. */
3063 if (EQ (Vobarray
, obarray
)) Vobarray
= initial_obarray
;
3065 obarray
= wrong_type_argument (Qvectorp
, obarray
);
3070 /* Intern the C string STR: return a symbol with that name,
3071 interned in the current obarray. */
3078 int len
= strlen (str
);
3079 Lisp_Object obarray
;
3082 if (!VECTORP (obarray
) || XVECTOR (obarray
)->size
== 0)
3083 obarray
= check_obarray (obarray
);
3084 tem
= oblookup (obarray
, str
, len
, len
);
3087 return Fintern (make_string (str
, len
), obarray
);
3090 /* Create an uninterned symbol with name STR. */
3096 int len
= strlen (str
);
3098 return Fmake_symbol ((!NILP (Vpurify_flag
)
3099 ? make_pure_string (str
, len
, len
, 0)
3100 : make_string (str
, len
)));
3103 DEFUN ("intern", Fintern
, Sintern
, 1, 2, 0,
3104 doc
: /* Return the canonical symbol whose name is STRING.
3105 If there is none, one is created by this function and returned.
3106 A second optional argument specifies the obarray to use;
3107 it defaults to the value of `obarray'. */)
3109 Lisp_Object string
, obarray
;
3111 register Lisp_Object tem
, sym
, *ptr
;
3113 if (NILP (obarray
)) obarray
= Vobarray
;
3114 obarray
= check_obarray (obarray
);
3116 CHECK_STRING (string
);
3118 tem
= oblookup (obarray
, SDATA (string
),
3121 if (!INTEGERP (tem
))
3124 if (!NILP (Vpurify_flag
))
3125 string
= Fpurecopy (string
);
3126 sym
= Fmake_symbol (string
);
3128 if (EQ (obarray
, initial_obarray
))
3129 XSYMBOL (sym
)->interned
= SYMBOL_INTERNED_IN_INITIAL_OBARRAY
;
3131 XSYMBOL (sym
)->interned
= SYMBOL_INTERNED
;
3133 if ((SREF (string
, 0) == ':')
3134 && EQ (obarray
, initial_obarray
))
3136 XSYMBOL (sym
)->constant
= 1;
3137 XSYMBOL (sym
)->value
= sym
;
3140 ptr
= &XVECTOR (obarray
)->contents
[XINT (tem
)];
3142 XSYMBOL (sym
)->next
= XSYMBOL (*ptr
);
3144 XSYMBOL (sym
)->next
= 0;
3149 DEFUN ("intern-soft", Fintern_soft
, Sintern_soft
, 1, 2, 0,
3150 doc
: /* Return the canonical symbol named NAME, or nil if none exists.
3151 NAME may be a string or a symbol. If it is a symbol, that exact
3152 symbol is searched for.
3153 A second optional argument specifies the obarray to use;
3154 it defaults to the value of `obarray'. */)
3156 Lisp_Object name
, obarray
;
3158 register Lisp_Object tem
, string
;
3160 if (NILP (obarray
)) obarray
= Vobarray
;
3161 obarray
= check_obarray (obarray
);
3163 if (!SYMBOLP (name
))
3165 CHECK_STRING (name
);
3169 string
= SYMBOL_NAME (name
);
3171 tem
= oblookup (obarray
, SDATA (string
), SCHARS (string
), SBYTES (string
));
3172 if (INTEGERP (tem
) || (SYMBOLP (name
) && !EQ (name
, tem
)))
3178 DEFUN ("unintern", Funintern
, Sunintern
, 1, 2, 0,
3179 doc
: /* Delete the symbol named NAME, if any, from OBARRAY.
3180 The value is t if a symbol was found and deleted, nil otherwise.
3181 NAME may be a string or a symbol. If it is a symbol, that symbol
3182 is deleted, if it belongs to OBARRAY--no other symbol is deleted.
3183 OBARRAY defaults to the value of the variable `obarray'. */)
3185 Lisp_Object name
, obarray
;
3187 register Lisp_Object string
, tem
;
3190 if (NILP (obarray
)) obarray
= Vobarray
;
3191 obarray
= check_obarray (obarray
);
3194 string
= SYMBOL_NAME (name
);
3197 CHECK_STRING (name
);
3201 tem
= oblookup (obarray
, SDATA (string
),
3206 /* If arg was a symbol, don't delete anything but that symbol itself. */
3207 if (SYMBOLP (name
) && !EQ (name
, tem
))
3210 XSYMBOL (tem
)->interned
= SYMBOL_UNINTERNED
;
3211 XSYMBOL (tem
)->constant
= 0;
3212 XSYMBOL (tem
)->indirect_variable
= 0;
3214 hash
= oblookup_last_bucket_number
;
3216 if (EQ (XVECTOR (obarray
)->contents
[hash
], tem
))
3218 if (XSYMBOL (tem
)->next
)
3219 XSETSYMBOL (XVECTOR (obarray
)->contents
[hash
], XSYMBOL (tem
)->next
);
3221 XSETINT (XVECTOR (obarray
)->contents
[hash
], 0);
3225 Lisp_Object tail
, following
;
3227 for (tail
= XVECTOR (obarray
)->contents
[hash
];
3228 XSYMBOL (tail
)->next
;
3231 XSETSYMBOL (following
, XSYMBOL (tail
)->next
);
3232 if (EQ (following
, tem
))
3234 XSYMBOL (tail
)->next
= XSYMBOL (following
)->next
;
3243 /* Return the symbol in OBARRAY whose names matches the string
3244 of SIZE characters (SIZE_BYTE bytes) at PTR.
3245 If there is no such symbol in OBARRAY, return nil.
3247 Also store the bucket number in oblookup_last_bucket_number. */
3250 oblookup (obarray
, ptr
, size
, size_byte
)
3251 Lisp_Object obarray
;
3252 register const char *ptr
;
3253 int size
, size_byte
;
3257 register Lisp_Object tail
;
3258 Lisp_Object bucket
, tem
;
3260 if (!VECTORP (obarray
)
3261 || (obsize
= XVECTOR (obarray
)->size
) == 0)
3263 obarray
= check_obarray (obarray
);
3264 obsize
= XVECTOR (obarray
)->size
;
3266 /* This is sometimes needed in the middle of GC. */
3267 obsize
&= ~ARRAY_MARK_FLAG
;
3268 /* Combining next two lines breaks VMS C 2.3. */
3269 hash
= hash_string (ptr
, size_byte
);
3271 bucket
= XVECTOR (obarray
)->contents
[hash
];
3272 oblookup_last_bucket_number
= hash
;
3273 if (XFASTINT (bucket
) == 0)
3275 else if (!SYMBOLP (bucket
))
3276 error ("Bad data in guts of obarray"); /* Like CADR error message */
3278 for (tail
= bucket
; ; XSETSYMBOL (tail
, XSYMBOL (tail
)->next
))
3280 if (SBYTES (SYMBOL_NAME (tail
)) == size_byte
3281 && SCHARS (SYMBOL_NAME (tail
)) == size
3282 && !bcmp (SDATA (SYMBOL_NAME (tail
)), ptr
, size_byte
))
3284 else if (XSYMBOL (tail
)->next
== 0)
3287 XSETINT (tem
, hash
);
3292 hash_string (ptr
, len
)
3293 const unsigned char *ptr
;
3296 register const unsigned char *p
= ptr
;
3297 register const unsigned char *end
= p
+ len
;
3298 register unsigned char c
;
3299 register int hash
= 0;
3304 if (c
>= 0140) c
-= 40;
3305 hash
= ((hash
<<3) + (hash
>>28) + c
);
3307 return hash
& 07777777777;
3311 map_obarray (obarray
, fn
, arg
)
3312 Lisp_Object obarray
;
3313 void (*fn
) P_ ((Lisp_Object
, Lisp_Object
));
3317 register Lisp_Object tail
;
3318 CHECK_VECTOR (obarray
);
3319 for (i
= XVECTOR (obarray
)->size
- 1; i
>= 0; i
--)
3321 tail
= XVECTOR (obarray
)->contents
[i
];
3326 if (XSYMBOL (tail
)->next
== 0)
3328 XSETSYMBOL (tail
, XSYMBOL (tail
)->next
);
3334 mapatoms_1 (sym
, function
)
3335 Lisp_Object sym
, function
;
3337 call1 (function
, sym
);
3340 DEFUN ("mapatoms", Fmapatoms
, Smapatoms
, 1, 2, 0,
3341 doc
: /* Call FUNCTION on every symbol in OBARRAY.
3342 OBARRAY defaults to the value of `obarray'. */)
3344 Lisp_Object function
, obarray
;
3346 if (NILP (obarray
)) obarray
= Vobarray
;
3347 obarray
= check_obarray (obarray
);
3349 map_obarray (obarray
, mapatoms_1
, function
);
3353 #define OBARRAY_SIZE 1511
3358 Lisp_Object oblength
;
3362 XSETFASTINT (oblength
, OBARRAY_SIZE
);
3364 Qnil
= Fmake_symbol (make_pure_string ("nil", 3, 3, 0));
3365 Vobarray
= Fmake_vector (oblength
, make_number (0));
3366 initial_obarray
= Vobarray
;
3367 staticpro (&initial_obarray
);
3368 /* Intern nil in the obarray */
3369 XSYMBOL (Qnil
)->interned
= SYMBOL_INTERNED_IN_INITIAL_OBARRAY
;
3370 XSYMBOL (Qnil
)->constant
= 1;
3372 /* These locals are to kludge around a pyramid compiler bug. */
3373 hash
= hash_string ("nil", 3);
3374 /* Separate statement here to avoid VAXC bug. */
3375 hash
%= OBARRAY_SIZE
;
3376 tem
= &XVECTOR (Vobarray
)->contents
[hash
];
3379 Qunbound
= Fmake_symbol (make_pure_string ("unbound", 7, 7, 0));
3380 XSYMBOL (Qnil
)->function
= Qunbound
;
3381 XSYMBOL (Qunbound
)->value
= Qunbound
;
3382 XSYMBOL (Qunbound
)->function
= Qunbound
;
3385 XSYMBOL (Qnil
)->value
= Qnil
;
3386 XSYMBOL (Qnil
)->plist
= Qnil
;
3387 XSYMBOL (Qt
)->value
= Qt
;
3388 XSYMBOL (Qt
)->constant
= 1;
3390 /* Qt is correct even if CANNOT_DUMP. loadup.el will set to nil at end. */
3393 Qvariable_documentation
= intern ("variable-documentation");
3394 staticpro (&Qvariable_documentation
);
3396 read_buffer_size
= 100 + MAX_MULTIBYTE_LENGTH
;
3397 read_buffer
= (char *) xmalloc (read_buffer_size
);
3402 struct Lisp_Subr
*sname
;
3405 sym
= intern (sname
->symbol_name
);
3406 XSETSUBR (XSYMBOL (sym
)->function
, sname
);
3409 #ifdef NOTDEF /* use fset in subr.el now */
3411 defalias (sname
, string
)
3412 struct Lisp_Subr
*sname
;
3416 sym
= intern (string
);
3417 XSETSUBR (XSYMBOL (sym
)->function
, sname
);
3421 /* Define an "integer variable"; a symbol whose value is forwarded
3422 to a C variable of type int. Sample call: */
3423 /* DEFVAR_INT ("indent-tabs-mode", &indent_tabs_mode, "Documentation"); */
3425 defvar_int (namestring
, address
)
3429 Lisp_Object sym
, val
;
3430 sym
= intern (namestring
);
3431 val
= allocate_misc ();
3432 XMISCTYPE (val
) = Lisp_Misc_Intfwd
;
3433 XINTFWD (val
)->intvar
= address
;
3434 SET_SYMBOL_VALUE (sym
, val
);
3437 /* Similar but define a variable whose value is t if address contains 1,
3438 nil if address contains 0 */
3440 defvar_bool (namestring
, address
)
3444 Lisp_Object sym
, val
;
3445 sym
= intern (namestring
);
3446 val
= allocate_misc ();
3447 XMISCTYPE (val
) = Lisp_Misc_Boolfwd
;
3448 XBOOLFWD (val
)->boolvar
= address
;
3449 SET_SYMBOL_VALUE (sym
, val
);
3450 Vbyte_boolean_vars
= Fcons (sym
, Vbyte_boolean_vars
);
3453 /* Similar but define a variable whose value is the Lisp Object stored
3454 at address. Two versions: with and without gc-marking of the C
3455 variable. The nopro version is used when that variable will be
3456 gc-marked for some other reason, since marking the same slot twice
3457 can cause trouble with strings. */
3459 defvar_lisp_nopro (namestring
, address
)
3461 Lisp_Object
*address
;
3463 Lisp_Object sym
, val
;
3464 sym
= intern (namestring
);
3465 val
= allocate_misc ();
3466 XMISCTYPE (val
) = Lisp_Misc_Objfwd
;
3467 XOBJFWD (val
)->objvar
= address
;
3468 SET_SYMBOL_VALUE (sym
, val
);
3472 defvar_lisp (namestring
, address
)
3474 Lisp_Object
*address
;
3476 defvar_lisp_nopro (namestring
, address
);
3477 staticpro (address
);
3480 /* Similar but define a variable whose value is the Lisp Object stored in
3481 the current buffer. address is the address of the slot in the buffer
3482 that is current now. */
3485 defvar_per_buffer (namestring
, address
, type
, doc
)
3487 Lisp_Object
*address
;
3491 Lisp_Object sym
, val
;
3493 extern struct buffer buffer_local_symbols
;
3495 sym
= intern (namestring
);
3496 val
= allocate_misc ();
3497 offset
= (char *)address
- (char *)current_buffer
;
3499 XMISCTYPE (val
) = Lisp_Misc_Buffer_Objfwd
;
3500 XBUFFER_OBJFWD (val
)->offset
= offset
;
3501 SET_SYMBOL_VALUE (sym
, val
);
3502 PER_BUFFER_SYMBOL (offset
) = sym
;
3503 PER_BUFFER_TYPE (offset
) = type
;
3505 if (PER_BUFFER_IDX (offset
) == 0)
3506 /* Did a DEFVAR_PER_BUFFER without initializing the corresponding
3507 slot of buffer_local_flags */
3512 /* Similar but define a variable whose value is the Lisp Object stored
3513 at a particular offset in the current kboard object. */
3516 defvar_kboard (namestring
, offset
)
3520 Lisp_Object sym
, val
;
3521 sym
= intern (namestring
);
3522 val
= allocate_misc ();
3523 XMISCTYPE (val
) = Lisp_Misc_Kboard_Objfwd
;
3524 XKBOARD_OBJFWD (val
)->offset
= offset
;
3525 SET_SYMBOL_VALUE (sym
, val
);
3528 /* Record the value of load-path used at the start of dumping
3529 so we can see if the site changed it later during dumping. */
3530 static Lisp_Object dump_path
;
3536 int turn_off_warning
= 0;
3538 /* Compute the default load-path. */
3540 normal
= PATH_LOADSEARCH
;
3541 Vload_path
= decode_env_path (0, normal
);
3543 if (NILP (Vpurify_flag
))
3544 normal
= PATH_LOADSEARCH
;
3546 normal
= PATH_DUMPLOADSEARCH
;
3548 /* In a dumped Emacs, we normally have to reset the value of
3549 Vload_path from PATH_LOADSEARCH, since the value that was dumped
3550 uses ../lisp, instead of the path of the installed elisp
3551 libraries. However, if it appears that Vload_path was changed
3552 from the default before dumping, don't override that value. */
3555 if (! NILP (Fequal (dump_path
, Vload_path
)))
3557 Vload_path
= decode_env_path (0, normal
);
3558 if (!NILP (Vinstallation_directory
))
3560 Lisp_Object tem
, tem1
, sitelisp
;
3562 /* Remove site-lisp dirs from path temporarily and store
3563 them in sitelisp, then conc them on at the end so
3564 they're always first in path. */
3568 tem
= Fcar (Vload_path
);
3569 tem1
= Fstring_match (build_string ("site-lisp"),
3573 Vload_path
= Fcdr (Vload_path
);
3574 sitelisp
= Fcons (tem
, sitelisp
);
3580 /* Add to the path the lisp subdir of the
3581 installation dir, if it exists. */
3582 tem
= Fexpand_file_name (build_string ("lisp"),
3583 Vinstallation_directory
);
3584 tem1
= Ffile_exists_p (tem
);
3587 if (NILP (Fmember (tem
, Vload_path
)))
3589 turn_off_warning
= 1;
3590 Vload_path
= Fcons (tem
, Vload_path
);
3594 /* That dir doesn't exist, so add the build-time
3595 Lisp dirs instead. */
3596 Vload_path
= nconc2 (Vload_path
, dump_path
);
3598 /* Add leim under the installation dir, if it exists. */
3599 tem
= Fexpand_file_name (build_string ("leim"),
3600 Vinstallation_directory
);
3601 tem1
= Ffile_exists_p (tem
);
3604 if (NILP (Fmember (tem
, Vload_path
)))
3605 Vload_path
= Fcons (tem
, Vload_path
);
3608 /* Add site-list under the installation dir, if it exists. */
3609 tem
= Fexpand_file_name (build_string ("site-lisp"),
3610 Vinstallation_directory
);
3611 tem1
= Ffile_exists_p (tem
);
3614 if (NILP (Fmember (tem
, Vload_path
)))
3615 Vload_path
= Fcons (tem
, Vload_path
);
3618 /* If Emacs was not built in the source directory,
3619 and it is run from where it was built, add to load-path
3620 the lisp, leim and site-lisp dirs under that directory. */
3622 if (NILP (Fequal (Vinstallation_directory
, Vsource_directory
)))
3626 tem
= Fexpand_file_name (build_string ("src/Makefile"),
3627 Vinstallation_directory
);
3628 tem1
= Ffile_exists_p (tem
);
3630 /* Don't be fooled if they moved the entire source tree
3631 AFTER dumping Emacs. If the build directory is indeed
3632 different from the source dir, src/Makefile.in and
3633 src/Makefile will not be found together. */
3634 tem
= Fexpand_file_name (build_string ("src/Makefile.in"),
3635 Vinstallation_directory
);
3636 tem2
= Ffile_exists_p (tem
);
3637 if (!NILP (tem1
) && NILP (tem2
))
3639 tem
= Fexpand_file_name (build_string ("lisp"),
3642 if (NILP (Fmember (tem
, Vload_path
)))
3643 Vload_path
= Fcons (tem
, Vload_path
);
3645 tem
= Fexpand_file_name (build_string ("leim"),
3648 if (NILP (Fmember (tem
, Vload_path
)))
3649 Vload_path
= Fcons (tem
, Vload_path
);
3651 tem
= Fexpand_file_name (build_string ("site-lisp"),
3654 if (NILP (Fmember (tem
, Vload_path
)))
3655 Vload_path
= Fcons (tem
, Vload_path
);
3658 if (!NILP (sitelisp
))
3659 Vload_path
= nconc2 (Fnreverse (sitelisp
), Vload_path
);
3665 /* NORMAL refers to the lisp dir in the source directory. */
3666 /* We used to add ../lisp at the front here, but
3667 that caused trouble because it was copied from dump_path
3668 into Vload_path, aboe, when Vinstallation_directory was non-nil.
3669 It should be unnecessary. */
3670 Vload_path
= decode_env_path (0, normal
);
3671 dump_path
= Vload_path
;
3676 /* When Emacs is invoked over network shares on NT, PATH_LOADSEARCH is
3677 almost never correct, thereby causing a warning to be printed out that
3678 confuses users. Since PATH_LOADSEARCH is always overridden by the
3679 EMACSLOADPATH environment variable below, disable the warning on NT. */
3681 /* Warn if dirs in the *standard* path don't exist. */
3682 if (!turn_off_warning
)
3684 Lisp_Object path_tail
;
3686 for (path_tail
= Vload_path
;
3688 path_tail
= XCDR (path_tail
))
3690 Lisp_Object dirfile
;
3691 dirfile
= Fcar (path_tail
);
3692 if (STRINGP (dirfile
))
3694 dirfile
= Fdirectory_file_name (dirfile
);
3695 if (access (SDATA (dirfile
), 0) < 0)
3696 dir_warning ("Warning: Lisp directory `%s' does not exist.\n",
3701 #endif /* WINDOWSNT */
3703 /* If the EMACSLOADPATH environment variable is set, use its value.
3704 This doesn't apply if we're dumping. */
3706 if (NILP (Vpurify_flag
)
3707 && egetenv ("EMACSLOADPATH"))
3709 Vload_path
= decode_env_path ("EMACSLOADPATH", normal
);
3713 load_in_progress
= 0;
3714 Vload_file_name
= Qnil
;
3716 load_descriptor_list
= Qnil
;
3718 Vstandard_input
= Qt
;
3719 Vloads_in_progress
= Qnil
;
3722 /* Print a warning, using format string FORMAT, that directory DIRNAME
3723 does not exist. Print it on stderr and put it in *Message*. */
3726 dir_warning (format
, dirname
)
3728 Lisp_Object dirname
;
3731 = (char *) alloca (SCHARS (dirname
) + strlen (format
) + 5);
3733 fprintf (stderr
, format
, SDATA (dirname
));
3734 sprintf (buffer
, format
, SDATA (dirname
));
3735 /* Don't log the warning before we've initialized!! */
3737 message_dolog (buffer
, strlen (buffer
), 0, STRING_MULTIBYTE (dirname
));
3744 defsubr (&Sread_from_string
);
3746 defsubr (&Sintern_soft
);
3747 defsubr (&Sunintern
);
3749 defsubr (&Seval_buffer
);
3750 defsubr (&Seval_region
);
3751 defsubr (&Sread_char
);
3752 defsubr (&Sread_char_exclusive
);
3753 defsubr (&Sread_event
);
3754 defsubr (&Sget_file_char
);
3755 defsubr (&Smapatoms
);
3756 defsubr (&Slocate_file_internal
);
3758 DEFVAR_LISP ("obarray", &Vobarray
,
3759 doc
: /* Symbol table for use by `intern' and `read'.
3760 It is a vector whose length ought to be prime for best results.
3761 The vector's contents don't make sense if examined from Lisp programs;
3762 to find all the symbols in an obarray, use `mapatoms'. */);
3764 DEFVAR_LISP ("values", &Vvalues
,
3765 doc
: /* List of values of all expressions which were read, evaluated and printed.
3766 Order is reverse chronological. */);
3768 DEFVAR_LISP ("standard-input", &Vstandard_input
,
3769 doc
: /* Stream for read to get input from.
3770 See documentation of `read' for possible values. */);
3771 Vstandard_input
= Qt
;
3773 DEFVAR_LISP ("read-with-symbol-positions", &Vread_with_symbol_positions
,
3774 doc
: /* If non-nil, add position of read symbols to `read-symbol-positions-list'.
3776 If this variable is a buffer, then only forms read from that buffer
3777 will be added to `read-symbol-positions-list'.
3778 If this variable is t, then all read forms will be added.
3779 The effect of all other values other than nil are not currently
3780 defined, although they may be in the future.
3782 The positions are relative to the last call to `read' or
3783 `read-from-string'. It is probably a bad idea to set this variable at
3784 the toplevel; bind it instead. */);
3785 Vread_with_symbol_positions
= Qnil
;
3787 DEFVAR_LISP ("read-symbol-positions-list", &Vread_symbol_positions_list
,
3788 doc
: /* A list mapping read symbols to their positions.
3789 This variable is modified during calls to `read' or
3790 `read-from-string', but only when `read-with-symbol-positions' is
3793 Each element of the list looks like (SYMBOL . CHAR-POSITION), where
3794 CHAR-POSITION is an integer giving the offset of that occurrence of the
3795 symbol from the position where `read' or `read-from-string' started.
3797 Note that a symbol will appear multiple times in this list, if it was
3798 read multiple times. The list is in the same order as the symbols
3800 Vread_symbol_positions_list
= Qnil
;
3802 DEFVAR_LISP ("load-path", &Vload_path
,
3803 doc
: /* *List of directories to search for files to load.
3804 Each element is a string (directory name) or nil (try default directory).
3805 Initialized based on EMACSLOADPATH environment variable, if any,
3806 otherwise to default specified by file `epaths.h' when Emacs was built. */);
3808 DEFVAR_LISP ("load-suffixes", &Vload_suffixes
,
3809 doc
: /* *List of suffixes to try for files to load.
3810 This list should not include the empty string. */);
3811 Vload_suffixes
= Fcons (build_string (".elc"),
3812 Fcons (build_string (".el"), Qnil
));
3813 /* We don't use empty_string because it's not initialized yet. */
3814 default_suffixes
= Fcons (build_string (""), Qnil
);
3815 staticpro (&default_suffixes
);
3817 DEFVAR_BOOL ("load-in-progress", &load_in_progress
,
3818 doc
: /* Non-nil iff inside of `load'. */);
3820 DEFVAR_LISP ("after-load-alist", &Vafter_load_alist
,
3821 doc
: /* An alist of expressions to be evalled when particular files are loaded.
3822 Each element looks like (FILENAME FORMS...).
3823 When `load' is run and the file-name argument is FILENAME,
3824 the FORMS in the corresponding element are executed at the end of loading.
3826 FILENAME must match exactly! Normally FILENAME is the name of a library,
3827 with no directory specified, since that is how `load' is normally called.
3828 An error in FORMS does not undo the load,
3829 but does prevent execution of the rest of the FORMS.
3830 FILENAME can also be a symbol (a feature) and FORMS are then executed
3831 when the corresponding call to `provide' is made. */);
3832 Vafter_load_alist
= Qnil
;
3834 DEFVAR_LISP ("load-history", &Vload_history
,
3835 doc
: /* Alist mapping source file names to symbols and features.
3836 Each alist element is a list that starts with a file name,
3837 except for one element (optional) that starts with nil and describes
3838 definitions evaluated from buffers not visiting files.
3839 The remaining elements of each list are symbols defined as functions,
3840 and cons cells of the form `(provide . FEATURE)', `(require . FEATURE)',
3841 `(defvar . VARIABLE), `(autoload . SYMBOL)', and `(t . SYMBOL)'.
3842 An element `(t . SYMBOL)' precedes an entry that is just SYMBOL,
3843 and means that SYMBOL was an autoload before this file redefined it
3845 Vload_history
= Qnil
;
3847 DEFVAR_LISP ("load-file-name", &Vload_file_name
,
3848 doc
: /* Full name of file being loaded by `load'. */);
3849 Vload_file_name
= Qnil
;
3851 DEFVAR_LISP ("user-init-file", &Vuser_init_file
,
3852 doc
: /* File name, including directory, of user's initialization file.
3853 If the file loaded had extension `.elc' and there was a corresponding `.el'
3854 file, this variable contains the name of the .el file, suitable for use
3855 by functions like `custom-save-all' which edit the init file. */);
3856 Vuser_init_file
= Qnil
;
3858 DEFVAR_LISP ("current-load-list", &Vcurrent_load_list
,
3859 doc
: /* Used for internal purposes by `load'. */);
3860 Vcurrent_load_list
= Qnil
;
3862 DEFVAR_LISP ("load-read-function", &Vload_read_function
,
3863 doc
: /* Function used by `load' and `eval-region' for reading expressions.
3864 The default is nil, which means use the function `read'. */);
3865 Vload_read_function
= Qnil
;
3867 DEFVAR_LISP ("load-source-file-function", &Vload_source_file_function
,
3868 doc
: /* Function called in `load' for loading an Emacs lisp source file.
3869 This function is for doing code conversion before reading the source file.
3870 If nil, loading is done without any code conversion.
3871 Arguments are FULLNAME, FILE, NOERROR, NOMESSAGE, where
3872 FULLNAME is the full name of FILE.
3873 See `load' for the meaning of the remaining arguments. */);
3874 Vload_source_file_function
= Qnil
;
3876 DEFVAR_BOOL ("load-force-doc-strings", &load_force_doc_strings
,
3877 doc
: /* Non-nil means `load' should force-load all dynamic doc strings.
3878 This is useful when the file being loaded is a temporary copy. */);
3879 load_force_doc_strings
= 0;
3881 DEFVAR_BOOL ("load-convert-to-unibyte", &load_convert_to_unibyte
,
3882 doc
: /* Non-nil means `read' converts strings to unibyte whenever possible.
3883 This is normally bound by `load' and `eval-buffer' to control `read',
3884 and is not meant for users to change. */);
3885 load_convert_to_unibyte
= 0;
3887 DEFVAR_LISP ("source-directory", &Vsource_directory
,
3888 doc
: /* Directory in which Emacs sources were found when Emacs was built.
3889 You cannot count on them to still be there! */);
3891 = Fexpand_file_name (build_string ("../"),
3892 Fcar (decode_env_path (0, PATH_DUMPLOADSEARCH
)));
3894 DEFVAR_LISP ("preloaded-file-list", &Vpreloaded_file_list
,
3895 doc
: /* List of files that were preloaded (when dumping Emacs). */);
3896 Vpreloaded_file_list
= Qnil
;
3898 DEFVAR_LISP ("byte-boolean-vars", &Vbyte_boolean_vars
,
3899 doc
: /* List of all DEFVAR_BOOL variables, used by the byte code optimizer. */);
3900 Vbyte_boolean_vars
= Qnil
;
3902 DEFVAR_BOOL ("load-dangerous-libraries", &load_dangerous_libraries
,
3903 doc
: /* Non-nil means load dangerous compiled Lisp files.
3904 Some versions of XEmacs use different byte codes than Emacs. These
3905 incompatible byte codes can make Emacs crash when it tries to execute
3907 load_dangerous_libraries
= 0;
3909 DEFVAR_LISP ("bytecomp-version-regexp", &Vbytecomp_version_regexp
,
3910 doc
: /* Regular expression matching safe to load compiled Lisp files.
3911 When Emacs loads a compiled Lisp file, it reads the first 512 bytes
3912 from the file, and matches them against this regular expression.
3913 When the regular expression matches, the file is considered to be safe
3914 to load. See also `load-dangerous-libraries'. */);
3915 Vbytecomp_version_regexp
3916 = build_string ("^;;;.\\(in Emacs version\\|bytecomp version FSF\\)");
3918 /* Vsource_directory was initialized in init_lread. */
3920 load_descriptor_list
= Qnil
;
3921 staticpro (&load_descriptor_list
);
3923 Qcurrent_load_list
= intern ("current-load-list");
3924 staticpro (&Qcurrent_load_list
);
3926 Qstandard_input
= intern ("standard-input");
3927 staticpro (&Qstandard_input
);
3929 Qread_char
= intern ("read-char");
3930 staticpro (&Qread_char
);
3932 Qget_file_char
= intern ("get-file-char");
3933 staticpro (&Qget_file_char
);
3935 Qbackquote
= intern ("`");
3936 staticpro (&Qbackquote
);
3937 Qcomma
= intern (",");
3938 staticpro (&Qcomma
);
3939 Qcomma_at
= intern (",@");
3940 staticpro (&Qcomma_at
);
3941 Qcomma_dot
= intern (",.");
3942 staticpro (&Qcomma_dot
);
3944 Qinhibit_file_name_operation
= intern ("inhibit-file-name-operation");
3945 staticpro (&Qinhibit_file_name_operation
);
3947 Qascii_character
= intern ("ascii-character");
3948 staticpro (&Qascii_character
);
3950 Qfunction
= intern ("function");
3951 staticpro (&Qfunction
);
3953 Qload
= intern ("load");
3956 Qload_file_name
= intern ("load-file-name");
3957 staticpro (&Qload_file_name
);
3959 staticpro (&dump_path
);
3961 staticpro (&read_objects
);
3962 read_objects
= Qnil
;
3963 staticpro (&seen_list
);
3965 Vloads_in_progress
= Qnil
;
3966 staticpro (&Vloads_in_progress
);