1 /* Lisp parsing and input streams.
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995,
3 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
26 #include <sys/types.h>
31 #include "intervals.h"
37 #include "termhooks.h"
41 #include <sys/inode.h>
46 #include <unistd.h> /* to get X_OK */
63 #endif /* HAVE_SETLOCALE */
73 #define file_offset off_t
74 #define file_tell ftello
76 #define file_offset long
77 #define file_tell ftell
84 Lisp_Object Qread_char
, Qget_file_char
, Qstandard_input
, Qcurrent_load_list
;
85 Lisp_Object Qvariable_documentation
, Vvalues
, Vstandard_input
, Vafter_load_alist
;
86 Lisp_Object Qascii_character
, Qload
, Qload_file_name
;
87 Lisp_Object Qbackquote
, Qcomma
, Qcomma_at
, Qcomma_dot
, Qfunction
;
88 Lisp_Object Qinhibit_file_name_operation
;
89 Lisp_Object Qeval_buffer_list
, Veval_buffer_list
;
91 extern Lisp_Object Qevent_symbol_element_mask
;
92 extern Lisp_Object Qfile_exists_p
;
94 /* non-zero iff inside `load' */
97 /* Directory in which the sources were found. */
98 Lisp_Object Vsource_directory
;
100 /* Search path and suffixes for files to be loaded. */
101 Lisp_Object Vload_path
, Vload_suffixes
, default_suffixes
;
103 /* File name of user's init file. */
104 Lisp_Object Vuser_init_file
;
106 /* This is the user-visible association list that maps features to
107 lists of defs in their load files. */
108 Lisp_Object Vload_history
;
110 /* This is used to build the load history. */
111 Lisp_Object Vcurrent_load_list
;
113 /* List of files that were preloaded. */
114 Lisp_Object Vpreloaded_file_list
;
116 /* Name of file actually being read by `load'. */
117 Lisp_Object Vload_file_name
;
119 /* Function to use for reading, in `load' and friends. */
120 Lisp_Object Vload_read_function
;
122 /* The association list of objects read with the #n=object form.
123 Each member of the list has the form (n . object), and is used to
124 look up the object for the corresponding #n# construct.
125 It must be set to nil before all top-level calls to read0. */
126 Lisp_Object read_objects
;
128 /* Nonzero means load should forcibly load all dynamic doc strings. */
129 static int load_force_doc_strings
;
131 /* Nonzero means read should convert strings to unibyte. */
132 static int load_convert_to_unibyte
;
134 /* Function to use for loading an Emacs lisp source file (not
135 compiled) instead of readevalloop. */
136 Lisp_Object Vload_source_file_function
;
138 /* List of all DEFVAR_BOOL variables. Used by the byte optimizer. */
139 Lisp_Object Vbyte_boolean_vars
;
141 /* Whether or not to add a `read-positions' property to symbols
143 Lisp_Object Vread_with_symbol_positions
;
145 /* List of (SYMBOL . POSITION) accumulated so far. */
146 Lisp_Object Vread_symbol_positions_list
;
148 /* List of descriptors now open for Fload. */
149 static Lisp_Object load_descriptor_list
;
151 /* File for get_file_char to read from. Use by load. */
152 static FILE *instream
;
154 /* When nonzero, read conses in pure space */
155 static int read_pure
;
157 /* For use within read-from-string (this reader is non-reentrant!!) */
158 static int read_from_string_index
;
159 static int read_from_string_index_byte
;
160 static int read_from_string_limit
;
162 /* Number of bytes left to read in the buffer character
163 that `readchar' has already advanced over. */
164 static int readchar_backlog
;
165 /* Number of characters read in the current call to Fread or
166 Fread_from_string. */
167 static int readchar_count
;
169 /* This contains the last string skipped with #@. */
170 static char *saved_doc_string
;
171 /* Length of buffer allocated in saved_doc_string. */
172 static int saved_doc_string_size
;
173 /* Length of actual data in saved_doc_string. */
174 static int saved_doc_string_length
;
175 /* This is the file position that string came from. */
176 static file_offset saved_doc_string_position
;
178 /* This contains the previous string skipped with #@.
179 We copy it from saved_doc_string when a new string
180 is put in saved_doc_string. */
181 static char *prev_saved_doc_string
;
182 /* Length of buffer allocated in prev_saved_doc_string. */
183 static int prev_saved_doc_string_size
;
184 /* Length of actual data in prev_saved_doc_string. */
185 static int prev_saved_doc_string_length
;
186 /* This is the file position that string came from. */
187 static file_offset prev_saved_doc_string_position
;
189 /* Nonzero means inside a new-style backquote
190 with no surrounding parentheses.
191 Fread initializes this to zero, so we need not specbind it
192 or worry about what happens to it when there is an error. */
193 static int new_backquote_flag
;
195 /* A list of file names for files being loaded in Fload. Used to
196 check for recursive loads. */
198 static Lisp_Object Vloads_in_progress
;
200 /* Non-zero means load dangerous compiled Lisp files. */
202 int load_dangerous_libraries
;
204 /* A regular expression used to detect files compiled with Emacs. */
206 static Lisp_Object Vbytecomp_version_regexp
;
208 static void to_multibyte
P_ ((char **, char **, int *));
209 static void readevalloop
P_ ((Lisp_Object
, FILE*, Lisp_Object
,
210 Lisp_Object (*) (), int,
211 Lisp_Object
, Lisp_Object
,
212 Lisp_Object
, Lisp_Object
));
213 static Lisp_Object load_unwind
P_ ((Lisp_Object
));
214 static Lisp_Object load_descriptor_unwind
P_ ((Lisp_Object
));
217 /* Handle unreading and rereading of characters.
218 Write READCHAR to read a character,
219 UNREAD(c) to unread c to be read again.
221 The READCHAR and UNREAD macros are meant for reading/unreading a
222 byte code; they do not handle multibyte characters. The caller
223 should manage them if necessary.
225 [ Actually that seems to be a lie; READCHAR will definitely read
226 multibyte characters from buffer sources, at least. Is the
227 comment just out of date?
228 -- Colin Walters <walters@gnu.org>, 22 May 2002 16:36:50 -0400 ]
231 #define READCHAR readchar (readcharfun)
232 #define UNREAD(c) unreadchar (readcharfun, c)
235 readchar (readcharfun
)
236 Lisp_Object readcharfun
;
243 if (BUFFERP (readcharfun
))
245 register struct buffer
*inbuffer
= XBUFFER (readcharfun
);
247 int pt_byte
= BUF_PT_BYTE (inbuffer
);
248 int orig_pt_byte
= pt_byte
;
250 if (readchar_backlog
> 0)
251 /* We get the address of the byte just passed,
252 which is the last byte of the character.
253 The other bytes in this character are consecutive with it,
254 because the gap can't be in the middle of a character. */
255 return *(BUF_BYTE_ADDRESS (inbuffer
, BUF_PT_BYTE (inbuffer
) - 1)
256 - --readchar_backlog
);
258 if (pt_byte
>= BUF_ZV_BYTE (inbuffer
))
261 readchar_backlog
= -1;
263 if (! NILP (inbuffer
->enable_multibyte_characters
))
265 /* Fetch the character code from the buffer. */
266 unsigned char *p
= BUF_BYTE_ADDRESS (inbuffer
, pt_byte
);
267 BUF_INC_POS (inbuffer
, pt_byte
);
268 c
= STRING_CHAR (p
, pt_byte
- orig_pt_byte
);
272 c
= BUF_FETCH_BYTE (inbuffer
, pt_byte
);
275 SET_BUF_PT_BOTH (inbuffer
, BUF_PT (inbuffer
) + 1, pt_byte
);
279 if (MARKERP (readcharfun
))
281 register struct buffer
*inbuffer
= XMARKER (readcharfun
)->buffer
;
283 int bytepos
= marker_byte_position (readcharfun
);
284 int orig_bytepos
= bytepos
;
286 if (readchar_backlog
> 0)
287 /* We get the address of the byte just passed,
288 which is the last byte of the character.
289 The other bytes in this character are consecutive with it,
290 because the gap can't be in the middle of a character. */
291 return *(BUF_BYTE_ADDRESS (inbuffer
, XMARKER (readcharfun
)->bytepos
- 1)
292 - --readchar_backlog
);
294 if (bytepos
>= BUF_ZV_BYTE (inbuffer
))
297 readchar_backlog
= -1;
299 if (! NILP (inbuffer
->enable_multibyte_characters
))
301 /* Fetch the character code from the buffer. */
302 unsigned char *p
= BUF_BYTE_ADDRESS (inbuffer
, bytepos
);
303 BUF_INC_POS (inbuffer
, bytepos
);
304 c
= STRING_CHAR (p
, bytepos
- orig_bytepos
);
308 c
= BUF_FETCH_BYTE (inbuffer
, bytepos
);
312 XMARKER (readcharfun
)->bytepos
= bytepos
;
313 XMARKER (readcharfun
)->charpos
++;
318 if (EQ (readcharfun
, Qlambda
))
319 return read_bytecode_char (0);
321 if (EQ (readcharfun
, Qget_file_char
))
325 /* Interrupted reads have been observed while reading over the network */
326 while (c
== EOF
&& ferror (instream
) && errno
== EINTR
)
336 if (STRINGP (readcharfun
))
338 if (read_from_string_index
>= read_from_string_limit
)
341 FETCH_STRING_CHAR_ADVANCE (c
, readcharfun
,
342 read_from_string_index
,
343 read_from_string_index_byte
);
348 tem
= call0 (readcharfun
);
355 /* Unread the character C in the way appropriate for the stream READCHARFUN.
356 If the stream is a user function, call it with the char as argument. */
359 unreadchar (readcharfun
, c
)
360 Lisp_Object readcharfun
;
365 /* Don't back up the pointer if we're unreading the end-of-input mark,
366 since readchar didn't advance it when we read it. */
368 else if (BUFFERP (readcharfun
))
370 struct buffer
*b
= XBUFFER (readcharfun
);
371 int bytepos
= BUF_PT_BYTE (b
);
373 if (readchar_backlog
>= 0)
378 if (! NILP (b
->enable_multibyte_characters
))
379 BUF_DEC_POS (b
, bytepos
);
383 BUF_PT_BYTE (b
) = bytepos
;
386 else if (MARKERP (readcharfun
))
388 struct buffer
*b
= XMARKER (readcharfun
)->buffer
;
389 int bytepos
= XMARKER (readcharfun
)->bytepos
;
391 if (readchar_backlog
>= 0)
395 XMARKER (readcharfun
)->charpos
--;
396 if (! NILP (b
->enable_multibyte_characters
))
397 BUF_DEC_POS (b
, bytepos
);
401 XMARKER (readcharfun
)->bytepos
= bytepos
;
404 else if (STRINGP (readcharfun
))
406 read_from_string_index
--;
407 read_from_string_index_byte
408 = string_char_to_byte (readcharfun
, read_from_string_index
);
410 else if (EQ (readcharfun
, Qlambda
))
411 read_bytecode_char (1);
412 else if (EQ (readcharfun
, Qget_file_char
))
413 ungetc (c
, instream
);
415 call1 (readcharfun
, make_number (c
));
418 static Lisp_Object read_internal_start
P_ ((Lisp_Object
, Lisp_Object
,
420 static Lisp_Object read0
P_ ((Lisp_Object
));
421 static Lisp_Object read1
P_ ((Lisp_Object
, int *, int));
423 static Lisp_Object read_list
P_ ((int, Lisp_Object
));
424 static Lisp_Object read_vector
P_ ((Lisp_Object
, int));
425 static int read_multibyte
P_ ((int, Lisp_Object
));
427 static Lisp_Object substitute_object_recurse
P_ ((Lisp_Object
, Lisp_Object
,
429 static void substitute_object_in_subtree
P_ ((Lisp_Object
,
431 static void substitute_in_interval
P_ ((INTERVAL
, Lisp_Object
));
434 /* Get a character from the tty. */
436 extern Lisp_Object
read_char ();
438 /* Read input events until we get one that's acceptable for our purposes.
440 If NO_SWITCH_FRAME is non-zero, switch-frame events are stashed
441 until we get a character we like, and then stuffed into
444 If ASCII_REQUIRED is non-zero, we check function key events to see
445 if the unmodified version of the symbol has a Qascii_character
446 property, and use that character, if present.
448 If ERROR_NONASCII is non-zero, we signal an error if the input we
449 get isn't an ASCII character with modifiers. If it's zero but
450 ASCII_REQUIRED is non-zero, we just re-read until we get an ASCII
453 If INPUT_METHOD is nonzero, we invoke the current input method
454 if the character warrants that. */
457 read_filtered_event (no_switch_frame
, ascii_required
, error_nonascii
,
459 int no_switch_frame
, ascii_required
, error_nonascii
, input_method
;
461 register Lisp_Object val
, delayed_switch_frame
;
463 #ifdef HAVE_WINDOW_SYSTEM
464 if (display_hourglass_p
)
468 delayed_switch_frame
= Qnil
;
470 /* Read until we get an acceptable event. */
472 val
= read_char (0, 0, 0,
473 (input_method
? Qnil
: Qt
),
479 /* switch-frame events are put off until after the next ASCII
480 character. This is better than signaling an error just because
481 the last characters were typed to a separate minibuffer frame,
482 for example. Eventually, some code which can deal with
483 switch-frame events will read it and process it. */
485 && EVENT_HAS_PARAMETERS (val
)
486 && EQ (EVENT_HEAD (val
), Qswitch_frame
))
488 delayed_switch_frame
= val
;
494 /* Convert certain symbols to their ASCII equivalents. */
497 Lisp_Object tem
, tem1
;
498 tem
= Fget (val
, Qevent_symbol_element_mask
);
501 tem1
= Fget (Fcar (tem
), Qascii_character
);
502 /* Merge this symbol's modifier bits
503 with the ASCII equivalent of its basic code. */
505 XSETFASTINT (val
, XINT (tem1
) | XINT (Fcar (Fcdr (tem
))));
509 /* If we don't have a character now, deal with it appropriately. */
514 Vunread_command_events
= Fcons (val
, Qnil
);
515 error ("Non-character input-event");
522 if (! NILP (delayed_switch_frame
))
523 unread_switch_frame
= delayed_switch_frame
;
527 #ifdef HAVE_WINDOW_SYSTEM
528 if (display_hourglass_p
)
537 DEFUN ("read-char", Fread_char
, Sread_char
, 0, 2, 0,
538 doc
: /* Read a character from the command input (keyboard or macro).
539 It is returned as a number.
540 If the user generates an event which is not a character (i.e. a mouse
541 click or function key event), `read-char' signals an error. As an
542 exception, switch-frame events are put off until non-ASCII events can
544 If you want to read non-character events, or ignore them, call
545 `read-event' or `read-char-exclusive' instead.
547 If the optional argument PROMPT is non-nil, display that as a prompt.
548 If the optional argument INHERIT-INPUT-METHOD is non-nil and some
549 input method is turned on in the current buffer, that input method
550 is used for reading a character. */)
551 (prompt
, inherit_input_method
)
552 Lisp_Object prompt
, inherit_input_method
;
555 message_with_string ("%s", prompt
, 0);
556 return read_filtered_event (1, 1, 1, ! NILP (inherit_input_method
));
559 DEFUN ("read-event", Fread_event
, Sread_event
, 0, 2, 0,
560 doc
: /* Read an event object from the input stream.
561 If the optional argument PROMPT is non-nil, display that as a prompt.
562 If the optional argument INHERIT-INPUT-METHOD is non-nil and some
563 input method is turned on in the current buffer, that input method
564 is used for reading a character. */)
565 (prompt
, inherit_input_method
)
566 Lisp_Object prompt
, inherit_input_method
;
569 message_with_string ("%s", prompt
, 0);
570 return read_filtered_event (0, 0, 0, ! NILP (inherit_input_method
));
573 DEFUN ("read-char-exclusive", Fread_char_exclusive
, Sread_char_exclusive
, 0, 2, 0,
574 doc
: /* Read a character from the command input (keyboard or macro).
575 It is returned as a number. Non-character events are ignored.
577 If the optional argument PROMPT is non-nil, display that as a prompt.
578 If the optional argument INHERIT-INPUT-METHOD is non-nil and some
579 input method is turned on in the current buffer, that input method
580 is used for reading a character. */)
581 (prompt
, inherit_input_method
)
582 Lisp_Object prompt
, inherit_input_method
;
585 message_with_string ("%s", prompt
, 0);
586 return read_filtered_event (1, 1, 0, ! NILP (inherit_input_method
));
589 DEFUN ("get-file-char", Fget_file_char
, Sget_file_char
, 0, 0, 0,
590 doc
: /* Don't use this yourself. */)
593 register Lisp_Object val
;
594 XSETINT (val
, getc (instream
));
600 /* Value is non-zero if the file asswociated with file descriptor FD
601 is a compiled Lisp file that's safe to load. Only files compiled
602 with Emacs are safe to load. Files compiled with XEmacs can lead
603 to a crash in Fbyte_code because of an incompatible change in the
614 /* Read the first few bytes from the file, and look for a line
615 specifying the byte compiler version used. */
616 nbytes
= emacs_read (fd
, buf
, sizeof buf
- 1);
621 /* Skip to the next newline, skipping over the initial `ELC'
622 with NUL bytes following it. */
623 for (i
= 0; i
< nbytes
&& buf
[i
] != '\n'; ++i
)
627 && fast_c_string_match_ignore_case (Vbytecomp_version_regexp
,
632 lseek (fd
, 0, SEEK_SET
);
637 /* Callback for record_unwind_protect. Restore the old load list OLD,
638 after loading a file successfully. */
641 record_load_unwind (old
)
644 return Vloads_in_progress
= old
;
647 /* This handler function is used via internal_condition_case_1. */
650 load_error_handler (data
)
656 DEFUN ("load", Fload
, Sload
, 1, 5, 0,
657 doc
: /* Execute a file of Lisp code named FILE.
658 First try FILE with `.elc' appended, then try with `.el',
659 then try FILE unmodified (the exact suffixes are determined by
660 `load-suffixes'). Environment variable references in FILE
661 are replaced with their values by calling `substitute-in-file-name'.
662 This function searches the directories in `load-path'.
663 If optional second arg NOERROR is non-nil,
664 report no error if FILE doesn't exist.
665 Print messages at start and end of loading unless
666 optional third arg NOMESSAGE is non-nil.
667 If optional fourth arg NOSUFFIX is non-nil, don't try adding
668 suffixes `.elc' or `.el' to the specified name FILE.
669 If optional fifth arg MUST-SUFFIX is non-nil, insist on
670 the suffix `.elc' or `.el'; don't accept just FILE unless
671 it ends in one of those suffixes or includes a directory name.
672 Return t if file exists. */)
673 (file
, noerror
, nomessage
, nosuffix
, must_suffix
)
674 Lisp_Object file
, noerror
, nomessage
, nosuffix
, must_suffix
;
676 register FILE *stream
;
677 register int fd
= -1;
678 int count
= SPECPDL_INDEX ();
681 Lisp_Object found
, efound
;
682 /* 1 means we printed the ".el is newer" message. */
684 /* 1 means we are loading a compiled file. */
695 /* If file name is magic, call the handler. */
696 /* This shouldn't be necessary any more now that `openp' handles it right.
697 handler = Ffind_file_name_handler (file, Qload);
699 return call5 (handler, Qload, file, noerror, nomessage, nosuffix); */
701 /* Do this after the handler to avoid
702 the need to gcpro noerror, nomessage and nosuffix.
703 (Below here, we care only whether they are nil or not.)
704 The presence of this call is the result of a historical accident:
705 it used to be in every file-operations and when it got removed
706 everywhere, it accidentally stayed here. Since then, enough people
707 supposedly have things like (load "$PROJECT/foo.el") in their .emacs
708 that it seemed risky to remove. */
709 if (! NILP (noerror
))
711 file
= internal_condition_case_1 (Fsubstitute_in_file_name
, file
,
712 Qt
, load_error_handler
);
717 file
= Fsubstitute_in_file_name (file
);
720 /* Avoid weird lossage with null string as arg,
721 since it would try to load a directory as a Lisp file */
722 if (SCHARS (file
) > 0)
724 int size
= SBYTES (file
);
729 if (! NILP (must_suffix
))
731 /* Don't insist on adding a suffix if FILE already ends with one. */
733 && !strcmp (SDATA (file
) + size
- 3, ".el"))
736 && !strcmp (SDATA (file
) + size
- 4, ".elc"))
738 /* Don't insist on adding a suffix
739 if the argument includes a directory name. */
740 else if (! NILP (Ffile_name_directory (file
)))
744 fd
= openp (Vload_path
, file
,
745 (!NILP (nosuffix
) ? Qnil
746 : !NILP (must_suffix
) ? Vload_suffixes
747 : Fappend (2, (tmp
[0] = Vload_suffixes
,
748 tmp
[1] = default_suffixes
,
757 Fsignal (Qfile_error
, Fcons (build_string ("Cannot open load file"),
758 Fcons (file
, Qnil
)));
763 /* Tell startup.el whether or not we found the user's init file. */
764 if (EQ (Qt
, Vuser_init_file
))
765 Vuser_init_file
= found
;
767 /* If FD is -2, that means openp found a magic file. */
770 if (NILP (Fequal (found
, file
)))
771 /* If FOUND is a different file name from FILE,
772 find its handler even if we have already inhibited
773 the `load' operation on FILE. */
774 handler
= Ffind_file_name_handler (found
, Qt
);
776 handler
= Ffind_file_name_handler (found
, Qload
);
777 if (! NILP (handler
))
778 return call5 (handler
, Qload
, found
, noerror
, nomessage
, Qt
);
781 /* Check if we're stuck in a recursive load cycle.
783 2000-09-21: It's not possible to just check for the file loaded
784 being a member of Vloads_in_progress. This fails because of the
785 way the byte compiler currently works; `provide's are not
786 evaluted, see font-lock.el/jit-lock.el as an example. This
787 leads to a certain amount of ``normal'' recursion.
789 Also, just loading a file recursively is not always an error in
790 the general case; the second load may do something different. */
794 for (tem
= Vloads_in_progress
; CONSP (tem
); tem
= XCDR (tem
))
795 if (!NILP (Fequal (found
, XCAR (tem
))))
798 Fsignal (Qerror
, Fcons (build_string ("Recursive load"),
799 Fcons (found
, Vloads_in_progress
)));
800 record_unwind_protect (record_load_unwind
, Vloads_in_progress
);
801 Vloads_in_progress
= Fcons (found
, Vloads_in_progress
);
804 if (!bcmp (SDATA (found
) + SBYTES (found
) - 4,
806 /* Load .elc files directly, but not when they are
807 remote and have no handler! */
814 if (!safe_to_load_p (fd
))
817 if (!load_dangerous_libraries
)
821 error ("File `%s' was not compiled in Emacs",
824 else if (!NILP (nomessage
))
825 message_with_string ("File `%s' not compiled in Emacs", found
, 1);
831 efound
= ENCODE_FILE (found
);
836 stat ((char *)SDATA (efound
), &s1
);
837 SSET (efound
, SBYTES (efound
) - 1, 0);
838 result
= stat ((char *)SDATA (efound
), &s2
);
839 SSET (efound
, SBYTES (efound
) - 1, 'c');
842 if (result
>= 0 && (unsigned) s1
.st_mtime
< (unsigned) s2
.st_mtime
)
844 /* Make the progress messages mention that source is newer. */
847 /* If we won't print another message, mention this anyway. */
848 if (!NILP (nomessage
))
851 file
= Fsubstring (found
, make_number (0), make_number (-1));
852 message_with_string ("Source file `%s' newer than byte-compiled file",
860 /* We are loading a source file (*.el). */
861 if (!NILP (Vload_source_file_function
))
867 val
= call4 (Vload_source_file_function
, found
, file
,
868 NILP (noerror
) ? Qnil
: Qt
,
869 NILP (nomessage
) ? Qnil
: Qt
);
870 return unbind_to (count
, val
);
877 efound
= ENCODE_FILE (found
);
878 stream
= fopen ((char *) SDATA (efound
), fmode
);
880 #else /* not WINDOWSNT */
881 stream
= fdopen (fd
, fmode
);
882 #endif /* not WINDOWSNT */
886 error ("Failure to create stdio stream for %s", SDATA (file
));
889 if (! NILP (Vpurify_flag
))
890 Vpreloaded_file_list
= Fcons (file
, Vpreloaded_file_list
);
892 if (NILP (nomessage
))
895 message_with_string ("Loading %s (compiled; note unsafe, not compiled in Emacs)...",
898 message_with_string ("Loading %s (source)...", file
, 1);
900 message_with_string ("Loading %s (compiled; note, source file is newer)...",
902 else /* The typical case; compiled file newer than source file. */
903 message_with_string ("Loading %s...", file
, 1);
907 record_unwind_protect (load_unwind
, make_save_value (stream
, 0));
908 record_unwind_protect (load_descriptor_unwind
, load_descriptor_list
);
909 specbind (Qload_file_name
, found
);
910 specbind (Qinhibit_file_name_operation
, Qnil
);
912 = Fcons (make_number (fileno (stream
)), load_descriptor_list
);
914 readevalloop (Qget_file_char
, stream
, file
, Feval
,
915 0, Qnil
, Qnil
, Qnil
, Qnil
);
916 unbind_to (count
, Qnil
);
918 /* Run any load-hooks for this file. */
919 temp
= Fassoc (file
, Vafter_load_alist
);
921 Fprogn (Fcdr (temp
));
924 if (saved_doc_string
)
925 free (saved_doc_string
);
926 saved_doc_string
= 0;
927 saved_doc_string_size
= 0;
929 if (prev_saved_doc_string
)
930 xfree (prev_saved_doc_string
);
931 prev_saved_doc_string
= 0;
932 prev_saved_doc_string_size
= 0;
934 if (!noninteractive
&& NILP (nomessage
))
937 message_with_string ("Loading %s (compiled; note unsafe, not compiled in Emacs)...done",
940 message_with_string ("Loading %s (source)...done", file
, 1);
942 message_with_string ("Loading %s (compiled; note, source file is newer)...done",
944 else /* The typical case; compiled file newer than source file. */
945 message_with_string ("Loading %s...done", file
, 1);
948 if (!NILP (Fequal (build_string ("obsolete"),
949 Ffile_name_nondirectory
950 (Fdirectory_file_name (Ffile_name_directory (found
))))))
951 message_with_string ("Package %s is obsolete", file
, 1);
957 load_unwind (arg
) /* used as unwind-protect function in load */
960 FILE *stream
= (FILE *) XSAVE_VALUE (arg
)->pointer
;
963 if (--load_in_progress
< 0) load_in_progress
= 0;
968 load_descriptor_unwind (oldlist
)
971 load_descriptor_list
= oldlist
;
975 /* Close all descriptors in use for Floads.
976 This is used when starting a subprocess. */
983 for (tail
= load_descriptor_list
; !NILP (tail
); tail
= XCDR (tail
))
984 emacs_close (XFASTINT (XCAR (tail
)));
989 complete_filename_p (pathname
)
990 Lisp_Object pathname
;
992 register const unsigned char *s
= SDATA (pathname
);
993 return (IS_DIRECTORY_SEP (s
[0])
994 || (SCHARS (pathname
) > 2
995 && IS_DEVICE_SEP (s
[1]) && IS_DIRECTORY_SEP (s
[2]))
1005 DEFUN ("locate-file-internal", Flocate_file_internal
, Slocate_file_internal
, 2, 4, 0,
1006 doc
: /* Search for FILENAME through PATH.
1007 Returns the file's name in absolute form, or nil if not found.
1008 If SUFFIXES is non-nil, it should be a list of suffixes to append to
1009 file name when searching.
1010 If non-nil, PREDICATE is used instead of `file-readable-p'.
1011 PREDICATE can also be an integer to pass to the access(2) function,
1012 in which case file-name-handlers are ignored. */)
1013 (filename
, path
, suffixes
, predicate
)
1014 Lisp_Object filename
, path
, suffixes
, predicate
;
1017 int fd
= openp (path
, filename
, suffixes
, &file
, predicate
);
1018 if (NILP (predicate
) && fd
> 0)
1024 /* Search for a file whose name is STR, looking in directories
1025 in the Lisp list PATH, and trying suffixes from SUFFIX.
1026 On success, returns a file descriptor. On failure, returns -1.
1028 SUFFIXES is a list of strings containing possible suffixes.
1029 The empty suffix is automatically added iff the list is empty.
1031 PREDICATE non-nil means don't open the files,
1032 just look for one that satisfies the predicate. In this case,
1033 returns 1 on success. The predicate can be a lisp function or
1034 an integer to pass to `access' (in which case file-name-handlers
1037 If STOREPTR is nonzero, it points to a slot where the name of
1038 the file actually found should be stored as a Lisp string.
1039 nil is stored there on failure.
1041 If the file we find is remote, return -2
1042 but store the found remote file name in *STOREPTR. */
1045 openp (path
, str
, suffixes
, storeptr
, predicate
)
1046 Lisp_Object path
, str
;
1047 Lisp_Object suffixes
;
1048 Lisp_Object
*storeptr
;
1049 Lisp_Object predicate
;
1054 register char *fn
= buf
;
1057 Lisp_Object filename
;
1059 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
, gcpro6
;
1060 Lisp_Object string
, tail
, encoded_fn
;
1061 int max_suffix_len
= 0;
1065 for (tail
= suffixes
; CONSP (tail
); tail
= XCDR (tail
))
1067 CHECK_STRING_CAR (tail
);
1068 max_suffix_len
= max (max_suffix_len
,
1069 SBYTES (XCAR (tail
)));
1072 string
= filename
= Qnil
;
1073 GCPRO6 (str
, string
, filename
, path
, suffixes
, encoded_fn
);
1078 if (complete_filename_p (str
))
1081 for (; CONSP (path
); path
= XCDR (path
))
1083 filename
= Fexpand_file_name (str
, XCAR (path
));
1084 if (!complete_filename_p (filename
))
1085 /* If there are non-absolute elts in PATH (eg ".") */
1086 /* Of course, this could conceivably lose if luser sets
1087 default-directory to be something non-absolute... */
1089 filename
= Fexpand_file_name (filename
, current_buffer
->directory
);
1090 if (!complete_filename_p (filename
))
1091 /* Give up on this path element! */
1095 /* Calculate maximum size of any filename made from
1096 this path element/specified file name and any possible suffix. */
1097 want_size
= max_suffix_len
+ SBYTES (filename
) + 1;
1098 if (fn_size
< want_size
)
1099 fn
= (char *) alloca (fn_size
= 100 + want_size
);
1101 /* Loop over suffixes. */
1102 for (tail
= NILP (suffixes
) ? default_suffixes
: suffixes
;
1103 CONSP (tail
); tail
= XCDR (tail
))
1105 int lsuffix
= SBYTES (XCAR (tail
));
1106 Lisp_Object handler
;
1109 /* Concatenate path element/specified name with the suffix.
1110 If the directory starts with /:, remove that. */
1111 if (SCHARS (filename
) > 2
1112 && SREF (filename
, 0) == '/'
1113 && SREF (filename
, 1) == ':')
1115 strncpy (fn
, SDATA (filename
) + 2,
1116 SBYTES (filename
) - 2);
1117 fn
[SBYTES (filename
) - 2] = 0;
1121 strncpy (fn
, SDATA (filename
),
1123 fn
[SBYTES (filename
)] = 0;
1126 if (lsuffix
!= 0) /* Bug happens on CCI if lsuffix is 0. */
1127 strncat (fn
, SDATA (XCAR (tail
)), lsuffix
);
1129 /* Check that the file exists and is not a directory. */
1130 /* We used to only check for handlers on non-absolute file names:
1134 handler = Ffind_file_name_handler (filename, Qfile_exists_p);
1135 It's not clear why that was the case and it breaks things like
1136 (load "/bar.el") where the file is actually "/bar.el.gz". */
1137 string
= build_string (fn
);
1138 handler
= Ffind_file_name_handler (string
, Qfile_exists_p
);
1139 if ((!NILP (handler
) || !NILP (predicate
)) && !NATNUMP (predicate
))
1141 if (NILP (predicate
))
1142 exists
= !NILP (Ffile_readable_p (string
));
1144 exists
= !NILP (call1 (predicate
, string
));
1145 if (exists
&& !NILP (Ffile_directory_p (string
)))
1150 /* We succeeded; return this descriptor and filename. */
1161 encoded_fn
= ENCODE_FILE (string
);
1162 pfn
= SDATA (encoded_fn
);
1163 exists
= (stat (pfn
, &st
) >= 0
1164 && (st
.st_mode
& S_IFMT
) != S_IFDIR
);
1167 /* Check that we can access or open it. */
1168 if (NATNUMP (predicate
))
1169 fd
= (access (pfn
, XFASTINT (predicate
)) == 0) ? 1 : -1;
1171 fd
= emacs_open (pfn
, O_RDONLY
, 0);
1175 /* We succeeded; return this descriptor and filename. */
1193 /* Merge the list we've accumulated of globals from the current input source
1194 into the load_history variable. The details depend on whether
1195 the source has an associated file name or not. */
1198 build_load_history (stream
, source
)
1202 register Lisp_Object tail
, prev
, newelt
;
1203 register Lisp_Object tem
, tem2
;
1204 register int foundit
, loading
;
1206 loading
= stream
|| !NARROWED
;
1208 tail
= Vload_history
;
1211 while (CONSP (tail
))
1215 /* Find the feature's previous assoc list... */
1216 if (!NILP (Fequal (source
, Fcar (tem
))))
1220 /* If we're loading, remove it. */
1224 Vload_history
= XCDR (tail
);
1226 Fsetcdr (prev
, XCDR (tail
));
1229 /* Otherwise, cons on new symbols that are not already members. */
1232 tem2
= Vcurrent_load_list
;
1234 while (CONSP (tem2
))
1236 newelt
= XCAR (tem2
);
1238 if (NILP (Fmember (newelt
, tem
)))
1239 Fsetcar (tail
, Fcons (XCAR (tem
),
1240 Fcons (newelt
, XCDR (tem
))));
1253 /* If we're loading, cons the new assoc onto the front of load-history,
1254 the most-recently-loaded position. Also do this if we didn't find
1255 an existing member for the current source. */
1256 if (loading
|| !foundit
)
1257 Vload_history
= Fcons (Fnreverse (Vcurrent_load_list
),
1262 unreadpure (junk
) /* Used as unwind-protect function in readevalloop */
1270 readevalloop_1 (old
)
1273 load_convert_to_unibyte
= ! NILP (old
);
1277 /* Signal an `end-of-file' error, if possible with file name
1281 end_of_file_error ()
1285 if (STRINGP (Vload_file_name
))
1286 data
= Fcons (Vload_file_name
, Qnil
);
1290 Fsignal (Qend_of_file
, data
);
1293 /* UNIBYTE specifies how to set load_convert_to_unibyte
1294 for this invocation.
1295 READFUN, if non-nil, is used instead of `read'.
1296 START, END is region in current buffer (from eval-region). */
1299 readevalloop (readcharfun
, stream
, sourcename
, evalfun
,
1300 printflag
, unibyte
, readfun
, start
, end
)
1301 Lisp_Object readcharfun
;
1303 Lisp_Object sourcename
;
1304 Lisp_Object (*evalfun
) ();
1306 Lisp_Object unibyte
, readfun
;
1307 Lisp_Object start
, end
;
1310 register Lisp_Object val
;
1311 int count
= SPECPDL_INDEX ();
1312 struct gcpro gcpro1
;
1313 struct buffer
*b
= 0;
1314 int continue_reading_p
;
1316 if (BUFFERP (readcharfun
))
1317 b
= XBUFFER (readcharfun
);
1318 else if (MARKERP (readcharfun
))
1319 b
= XMARKER (readcharfun
)->buffer
;
1321 specbind (Qstandard_input
, readcharfun
);
1322 specbind (Qcurrent_load_list
, Qnil
);
1323 record_unwind_protect (readevalloop_1
, load_convert_to_unibyte
? Qt
: Qnil
);
1324 load_convert_to_unibyte
= !NILP (unibyte
);
1326 readchar_backlog
= -1;
1328 GCPRO1 (sourcename
);
1330 LOADHIST_ATTACH (sourcename
);
1332 continue_reading_p
= 1;
1333 while (continue_reading_p
)
1335 int count1
= SPECPDL_INDEX ();
1337 if (b
!= 0 && NILP (b
->name
))
1338 error ("Reading from killed buffer");
1342 record_unwind_protect (save_excursion_restore
, save_excursion_save ());
1343 record_unwind_protect (save_restriction_restore
, save_restriction_save ());
1345 Fnarrow_to_region (make_number (BEGV
), end
);
1353 while ((c
= READCHAR
) != '\n' && c
!= -1);
1358 unbind_to (count1
, Qnil
);
1362 /* Ignore whitespace here, so we can detect eof. */
1363 if (c
== ' ' || c
== '\t' || c
== '\n' || c
== '\f' || c
== '\r')
1366 if (!NILP (Vpurify_flag
) && c
== '(')
1368 record_unwind_protect (unreadpure
, Qnil
);
1369 val
= read_list (-1, readcharfun
);
1374 read_objects
= Qnil
;
1375 if (!NILP (readfun
))
1377 val
= call1 (readfun
, readcharfun
);
1379 /* If READCHARFUN has set point to ZV, we should
1380 stop reading, even if the form read sets point
1381 to a different value when evaluated. */
1382 if (BUFFERP (readcharfun
))
1384 struct buffer
*b
= XBUFFER (readcharfun
);
1385 if (BUF_PT (b
) == BUF_ZV (b
))
1386 continue_reading_p
= 0;
1389 else if (! NILP (Vload_read_function
))
1390 val
= call1 (Vload_read_function
, readcharfun
);
1392 val
= read_internal_start (readcharfun
, Qnil
, Qnil
);
1395 if (!NILP (start
) && continue_reading_p
)
1396 start
= Fpoint_marker ();
1397 unbind_to (count1
, Qnil
);
1399 val
= (*evalfun
) (val
);
1403 Vvalues
= Fcons (val
, Vvalues
);
1404 if (EQ (Vstandard_output
, Qt
))
1411 build_load_history (stream
, sourcename
);
1414 unbind_to (count
, Qnil
);
1417 DEFUN ("eval-buffer", Feval_buffer
, Seval_buffer
, 0, 5, "",
1418 doc
: /* Execute the current buffer as Lisp code.
1419 Programs can pass two arguments, BUFFER and PRINTFLAG.
1420 BUFFER is the buffer to evaluate (nil means use current buffer).
1421 PRINTFLAG controls printing of output:
1422 nil means discard it; anything else is stream for print.
1424 If the optional third argument FILENAME is non-nil,
1425 it specifies the file name to use for `load-history'.
1426 The optional fourth argument UNIBYTE specifies `load-convert-to-unibyte'
1427 for this invocation.
1429 The optional fifth argument DO-ALLOW-PRINT, if non-nil, specifies that
1430 `print' and related functions should work normally even if PRINTFLAG is nil.
1432 This function preserves the position of point. */)
1433 (buffer
, printflag
, filename
, unibyte
, do_allow_print
)
1434 Lisp_Object buffer
, printflag
, filename
, unibyte
, do_allow_print
;
1436 int count
= SPECPDL_INDEX ();
1437 Lisp_Object tem
, buf
;
1440 buf
= Fcurrent_buffer ();
1442 buf
= Fget_buffer (buffer
);
1444 error ("No such buffer");
1446 if (NILP (printflag
) && NILP (do_allow_print
))
1451 if (NILP (filename
))
1452 filename
= XBUFFER (buf
)->filename
;
1454 specbind (Qeval_buffer_list
, Fcons (buf
, Veval_buffer_list
));
1455 specbind (Qstandard_output
, tem
);
1456 record_unwind_protect (save_excursion_restore
, save_excursion_save ());
1457 BUF_SET_PT (XBUFFER (buf
), BUF_BEGV (XBUFFER (buf
)));
1458 readevalloop (buf
, 0, filename
, Feval
,
1459 !NILP (printflag
), unibyte
, Qnil
, Qnil
, Qnil
);
1460 unbind_to (count
, Qnil
);
1465 DEFUN ("eval-region", Feval_region
, Seval_region
, 2, 4, "r",
1466 doc
: /* Execute the region as Lisp code.
1467 When called from programs, expects two arguments,
1468 giving starting and ending indices in the current buffer
1469 of the text to be executed.
1470 Programs can pass third argument PRINTFLAG which controls output:
1471 nil means discard it; anything else is stream for printing it.
1472 Also the fourth argument READ-FUNCTION, if non-nil, is used
1473 instead of `read' to read each expression. It gets one argument
1474 which is the input stream for reading characters.
1476 This function does not move point. */)
1477 (start
, end
, printflag
, read_function
)
1478 Lisp_Object start
, end
, printflag
, read_function
;
1480 int count
= SPECPDL_INDEX ();
1481 Lisp_Object tem
, cbuf
;
1483 cbuf
= Fcurrent_buffer ();
1485 if (NILP (printflag
))
1489 specbind (Qstandard_output
, tem
);
1490 specbind (Qeval_buffer_list
, Fcons (cbuf
, Veval_buffer_list
));
1492 /* readevalloop calls functions which check the type of start and end. */
1493 readevalloop (cbuf
, 0, XBUFFER (cbuf
)->filename
, Feval
,
1494 !NILP (printflag
), Qnil
, read_function
,
1497 return unbind_to (count
, Qnil
);
1501 DEFUN ("read", Fread
, Sread
, 0, 1, 0,
1502 doc
: /* Read one Lisp expression as text from STREAM, return as Lisp object.
1503 If STREAM is nil, use the value of `standard-input' (which see).
1504 STREAM or the value of `standard-input' may be:
1505 a buffer (read from point and advance it)
1506 a marker (read from where it points and advance it)
1507 a function (call it with no arguments for each character,
1508 call it with a char as argument to push a char back)
1509 a string (takes text from string, starting at the beginning)
1510 t (read text line using minibuffer and use it, or read from
1511 standard input in batch mode). */)
1516 stream
= Vstandard_input
;
1517 if (EQ (stream
, Qt
))
1518 stream
= Qread_char
;
1519 if (EQ (stream
, Qread_char
))
1520 return Fread_minibuffer (build_string ("Lisp expression: "), Qnil
);
1522 return read_internal_start (stream
, Qnil
, Qnil
);
1525 DEFUN ("read-from-string", Fread_from_string
, Sread_from_string
, 1, 3, 0,
1526 doc
: /* Read one Lisp expression which is represented as text by STRING.
1527 Returns a cons: (OBJECT-READ . FINAL-STRING-INDEX).
1528 START and END optionally delimit a substring of STRING from which to read;
1529 they default to 0 and (length STRING) respectively. */)
1530 (string
, start
, end
)
1531 Lisp_Object string
, start
, end
;
1534 CHECK_STRING (string
);
1535 /* read_internal_start sets read_from_string_index. */
1536 ret
= read_internal_start (string
, start
, end
);
1537 return Fcons (ret
, make_number (read_from_string_index
));
1540 /* Function to set up the global context we need in toplevel read
1543 read_internal_start (stream
, start
, end
)
1545 Lisp_Object start
; /* Only used when stream is a string. */
1546 Lisp_Object end
; /* Only used when stream is a string. */
1550 readchar_backlog
= -1;
1552 new_backquote_flag
= 0;
1553 read_objects
= Qnil
;
1554 if (EQ (Vread_with_symbol_positions
, Qt
)
1555 || EQ (Vread_with_symbol_positions
, stream
))
1556 Vread_symbol_positions_list
= Qnil
;
1558 if (STRINGP (stream
))
1560 int startval
, endval
;
1562 endval
= SCHARS (stream
);
1566 endval
= XINT (end
);
1567 if (endval
< 0 || endval
> SCHARS (stream
))
1568 args_out_of_range (stream
, end
);
1575 CHECK_NUMBER (start
);
1576 startval
= XINT (start
);
1577 if (startval
< 0 || startval
> endval
)
1578 args_out_of_range (stream
, start
);
1580 read_from_string_index
= startval
;
1581 read_from_string_index_byte
= string_char_to_byte (stream
, startval
);
1582 read_from_string_limit
= endval
;
1585 retval
= read0 (stream
);
1586 if (EQ (Vread_with_symbol_positions
, Qt
)
1587 || EQ (Vread_with_symbol_positions
, stream
))
1588 Vread_symbol_positions_list
= Fnreverse (Vread_symbol_positions_list
);
1592 /* Use this for recursive reads, in contexts where internal tokens
1597 Lisp_Object readcharfun
;
1599 register Lisp_Object val
;
1602 val
= read1 (readcharfun
, &c
, 0);
1604 Fsignal (Qinvalid_read_syntax
, Fcons (Fmake_string (make_number (1),
1611 static int read_buffer_size
;
1612 static char *read_buffer
;
1614 /* Read multibyte form and return it as a character. C is a first
1615 byte of multibyte form, and rest of them are read from
1619 read_multibyte (c
, readcharfun
)
1621 Lisp_Object readcharfun
;
1623 /* We need the actual character code of this multibyte
1625 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
1633 while ((c
= READCHAR
) >= 0xA0
1634 && len
< MAX_MULTIBYTE_LENGTH
)
1640 if (UNIBYTE_STR_AS_MULTIBYTE_P (str
, len
, bytes
))
1641 return STRING_CHAR (str
, len
);
1642 /* The byte sequence is not valid as multibyte. Unread all bytes
1643 but the first one, and return the first byte. */
1649 /* Read a \-escape sequence, assuming we already read the `\'.
1650 If the escape sequence forces unibyte, store 1 into *BYTEREP.
1651 If the escape sequence forces multibyte, store 2 into *BYTEREP.
1652 Otherwise store 0 into *BYTEREP. */
1655 read_escape (readcharfun
, stringp
, byterep
)
1656 Lisp_Object readcharfun
;
1660 register int c
= READCHAR
;
1667 end_of_file_error ();
1697 error ("Invalid escape character syntax");
1700 c
= read_escape (readcharfun
, 0, byterep
);
1701 return c
| meta_modifier
;
1706 error ("Invalid escape character syntax");
1709 c
= read_escape (readcharfun
, 0, byterep
);
1710 return c
| shift_modifier
;
1715 error ("Invalid escape character syntax");
1718 c
= read_escape (readcharfun
, 0, byterep
);
1719 return c
| hyper_modifier
;
1724 error ("Invalid escape character syntax");
1727 c
= read_escape (readcharfun
, 0, byterep
);
1728 return c
| alt_modifier
;
1740 c
= read_escape (readcharfun
, 0, byterep
);
1741 return c
| super_modifier
;
1746 error ("Invalid escape character syntax");
1750 c
= read_escape (readcharfun
, 0, byterep
);
1751 if ((c
& ~CHAR_MODIFIER_MASK
) == '?')
1752 return 0177 | (c
& CHAR_MODIFIER_MASK
);
1753 else if (! SINGLE_BYTE_CHAR_P ((c
& ~CHAR_MODIFIER_MASK
)))
1754 return c
| ctrl_modifier
;
1755 /* ASCII control chars are made from letters (both cases),
1756 as well as the non-letters within 0100...0137. */
1757 else if ((c
& 0137) >= 0101 && (c
& 0137) <= 0132)
1758 return (c
& (037 | ~0177));
1759 else if ((c
& 0177) >= 0100 && (c
& 0177) <= 0137)
1760 return (c
& (037 | ~0177));
1762 return c
| ctrl_modifier
;
1772 /* An octal escape, as in ANSI C. */
1774 register int i
= c
- '0';
1775 register int count
= 0;
1778 if ((c
= READCHAR
) >= '0' && c
<= '7')
1795 /* A hex escape, as in ANSI C. */
1801 if (c
>= '0' && c
<= '9')
1806 else if ((c
>= 'a' && c
<= 'f')
1807 || (c
>= 'A' && c
<= 'F'))
1810 if (c
>= 'a' && c
<= 'f')
1827 if (BASE_LEADING_CODE_P (c
))
1828 c
= read_multibyte (c
, readcharfun
);
1834 /* Read an integer in radix RADIX using READCHARFUN to read
1835 characters. RADIX must be in the interval [2..36]; if it isn't, a
1836 read error is signaled . Value is the integer read. Signals an
1837 error if encountering invalid read syntax or if RADIX is out of
1841 read_integer (readcharfun
, radix
)
1842 Lisp_Object readcharfun
;
1845 int ndigits
= 0, invalid_p
, c
, sign
= 0;
1846 EMACS_INT number
= 0;
1848 if (radix
< 2 || radix
> 36)
1852 number
= ndigits
= invalid_p
= 0;
1868 if (c
>= '0' && c
<= '9')
1870 else if (c
>= 'a' && c
<= 'z')
1871 digit
= c
- 'a' + 10;
1872 else if (c
>= 'A' && c
<= 'Z')
1873 digit
= c
- 'A' + 10;
1880 if (digit
< 0 || digit
>= radix
)
1883 number
= radix
* number
+ digit
;
1889 if (ndigits
== 0 || invalid_p
)
1892 sprintf (buf
, "integer, radix %d", radix
);
1893 Fsignal (Qinvalid_read_syntax
, Fcons (build_string (buf
), Qnil
));
1896 return make_number (sign
* number
);
1900 /* Convert unibyte text in read_buffer to multibyte.
1902 Initially, *P is a pointer after the end of the unibyte text, and
1903 the pointer *END points after the end of read_buffer.
1905 If read_buffer doesn't have enough room to hold the result
1906 of the conversion, reallocate it and adjust *P and *END.
1908 At the end, make *P point after the result of the conversion, and
1909 return in *NCHARS the number of characters in the converted
1913 to_multibyte (p
, end
, nchars
)
1919 parse_str_as_multibyte (read_buffer
, *p
- read_buffer
, &nbytes
, nchars
);
1920 if (read_buffer_size
< 2 * nbytes
)
1922 int offset
= *p
- read_buffer
;
1923 read_buffer_size
= 2 * max (read_buffer_size
, nbytes
);
1924 read_buffer
= (char *) xrealloc (read_buffer
, read_buffer_size
);
1925 *p
= read_buffer
+ offset
;
1926 *end
= read_buffer
+ read_buffer_size
;
1929 if (nbytes
!= *nchars
)
1930 nbytes
= str_as_multibyte (read_buffer
, read_buffer_size
,
1931 *p
- read_buffer
, nchars
);
1933 *p
= read_buffer
+ nbytes
;
1937 /* If the next token is ')' or ']' or '.', we store that character
1938 in *PCH and the return value is not interesting. Else, we store
1939 zero in *PCH and we read and return one lisp object.
1941 FIRST_IN_LIST is nonzero if this is the first element of a list. */
1944 read1 (readcharfun
, pch
, first_in_list
)
1945 register Lisp_Object readcharfun
;
1950 int uninterned_symbol
= 0;
1958 end_of_file_error ();
1963 return read_list (0, readcharfun
);
1966 return read_vector (readcharfun
, 0);
1983 tmp
= read_vector (readcharfun
, 0);
1984 if (XVECTOR (tmp
)->size
< CHAR_TABLE_STANDARD_SLOTS
1985 || XVECTOR (tmp
)->size
> CHAR_TABLE_STANDARD_SLOTS
+ 10)
1986 error ("Invalid size char-table");
1987 XSETCHAR_TABLE (tmp
, XCHAR_TABLE (tmp
));
1988 XCHAR_TABLE (tmp
)->top
= Qt
;
1997 tmp
= read_vector (readcharfun
, 0);
1998 if (XVECTOR (tmp
)->size
!= SUB_CHAR_TABLE_STANDARD_SLOTS
)
1999 error ("Invalid size char-table");
2000 XSETCHAR_TABLE (tmp
, XCHAR_TABLE (tmp
));
2001 XCHAR_TABLE (tmp
)->top
= Qnil
;
2004 Fsignal (Qinvalid_read_syntax
,
2005 Fcons (make_string ("#^^", 3), Qnil
));
2007 Fsignal (Qinvalid_read_syntax
, Fcons (make_string ("#^", 2), Qnil
));
2012 length
= read1 (readcharfun
, pch
, first_in_list
);
2016 Lisp_Object tmp
, val
;
2018 = ((XFASTINT (length
) + BOOL_VECTOR_BITS_PER_CHAR
- 1)
2019 / BOOL_VECTOR_BITS_PER_CHAR
);
2022 tmp
= read1 (readcharfun
, pch
, first_in_list
);
2023 if (size_in_chars
!= SCHARS (tmp
)
2024 /* We used to print 1 char too many
2025 when the number of bits was a multiple of 8.
2026 Accept such input in case it came from an old version. */
2027 && ! (XFASTINT (length
)
2028 == (SCHARS (tmp
) - 1) * BOOL_VECTOR_BITS_PER_CHAR
))
2029 Fsignal (Qinvalid_read_syntax
,
2030 Fcons (make_string ("#&...", 5), Qnil
));
2032 val
= Fmake_bool_vector (length
, Qnil
);
2033 bcopy (SDATA (tmp
), XBOOL_VECTOR (val
)->data
,
2035 /* Clear the extraneous bits in the last byte. */
2036 if (XINT (length
) != size_in_chars
* BOOL_VECTOR_BITS_PER_CHAR
)
2037 XBOOL_VECTOR (val
)->data
[size_in_chars
- 1]
2038 &= (1 << (XINT (length
) % BOOL_VECTOR_BITS_PER_CHAR
)) - 1;
2041 Fsignal (Qinvalid_read_syntax
, Fcons (make_string ("#&...", 5),
2046 /* Accept compiled functions at read-time so that we don't have to
2047 build them using function calls. */
2049 tmp
= read_vector (readcharfun
, 1);
2050 return Fmake_byte_code (XVECTOR (tmp
)->size
,
2051 XVECTOR (tmp
)->contents
);
2056 struct gcpro gcpro1
;
2059 /* Read the string itself. */
2060 tmp
= read1 (readcharfun
, &ch
, 0);
2061 if (ch
!= 0 || !STRINGP (tmp
))
2062 Fsignal (Qinvalid_read_syntax
, Fcons (make_string ("#", 1), Qnil
));
2064 /* Read the intervals and their properties. */
2067 Lisp_Object beg
, end
, plist
;
2069 beg
= read1 (readcharfun
, &ch
, 0);
2074 end
= read1 (readcharfun
, &ch
, 0);
2076 plist
= read1 (readcharfun
, &ch
, 0);
2078 Fsignal (Qinvalid_read_syntax
,
2079 Fcons (build_string ("invalid string property list"),
2081 Fset_text_properties (beg
, end
, plist
, tmp
);
2087 /* #@NUMBER is used to skip NUMBER following characters.
2088 That's used in .elc files to skip over doc strings
2089 and function definitions. */
2094 /* Read a decimal integer. */
2095 while ((c
= READCHAR
) >= 0
2096 && c
>= '0' && c
<= '9')
2104 if (load_force_doc_strings
&& EQ (readcharfun
, Qget_file_char
))
2106 /* If we are supposed to force doc strings into core right now,
2107 record the last string that we skipped,
2108 and record where in the file it comes from. */
2110 /* But first exchange saved_doc_string
2111 with prev_saved_doc_string, so we save two strings. */
2113 char *temp
= saved_doc_string
;
2114 int temp_size
= saved_doc_string_size
;
2115 file_offset temp_pos
= saved_doc_string_position
;
2116 int temp_len
= saved_doc_string_length
;
2118 saved_doc_string
= prev_saved_doc_string
;
2119 saved_doc_string_size
= prev_saved_doc_string_size
;
2120 saved_doc_string_position
= prev_saved_doc_string_position
;
2121 saved_doc_string_length
= prev_saved_doc_string_length
;
2123 prev_saved_doc_string
= temp
;
2124 prev_saved_doc_string_size
= temp_size
;
2125 prev_saved_doc_string_position
= temp_pos
;
2126 prev_saved_doc_string_length
= temp_len
;
2129 if (saved_doc_string_size
== 0)
2131 saved_doc_string_size
= nskip
+ 100;
2132 saved_doc_string
= (char *) xmalloc (saved_doc_string_size
);
2134 if (nskip
> saved_doc_string_size
)
2136 saved_doc_string_size
= nskip
+ 100;
2137 saved_doc_string
= (char *) xrealloc (saved_doc_string
,
2138 saved_doc_string_size
);
2141 saved_doc_string_position
= file_tell (instream
);
2143 /* Copy that many characters into saved_doc_string. */
2144 for (i
= 0; i
< nskip
&& c
>= 0; i
++)
2145 saved_doc_string
[i
] = c
= READCHAR
;
2147 saved_doc_string_length
= i
;
2151 /* Skip that many characters. */
2152 for (i
= 0; i
< nskip
&& c
>= 0; i
++)
2160 /* #! appears at the beginning of an executable file.
2161 Skip the first line. */
2162 while (c
!= '\n' && c
>= 0)
2167 return Vload_file_name
;
2169 return Fcons (Qfunction
, Fcons (read0 (readcharfun
), Qnil
));
2170 /* #:foo is the uninterned symbol named foo. */
2173 uninterned_symbol
= 1;
2177 /* Reader forms that can reuse previously read objects. */
2178 if (c
>= '0' && c
<= '9')
2183 /* Read a non-negative integer. */
2184 while (c
>= '0' && c
<= '9')
2190 /* #n=object returns object, but associates it with n for #n#. */
2193 /* Make a placeholder for #n# to use temporarily */
2194 Lisp_Object placeholder
;
2197 placeholder
= Fcons(Qnil
, Qnil
);
2198 cell
= Fcons (make_number (n
), placeholder
);
2199 read_objects
= Fcons (cell
, read_objects
);
2201 /* Read the object itself. */
2202 tem
= read0 (readcharfun
);
2204 /* Now put it everywhere the placeholder was... */
2205 substitute_object_in_subtree (tem
, placeholder
);
2207 /* ...and #n# will use the real value from now on. */
2208 Fsetcdr (cell
, tem
);
2212 /* #n# returns a previously read object. */
2215 tem
= Fassq (make_number (n
), read_objects
);
2218 /* Fall through to error message. */
2220 else if (c
== 'r' || c
== 'R')
2221 return read_integer (readcharfun
, n
);
2223 /* Fall through to error message. */
2225 else if (c
== 'x' || c
== 'X')
2226 return read_integer (readcharfun
, 16);
2227 else if (c
== 'o' || c
== 'O')
2228 return read_integer (readcharfun
, 8);
2229 else if (c
== 'b' || c
== 'B')
2230 return read_integer (readcharfun
, 2);
2233 Fsignal (Qinvalid_read_syntax
, Fcons (make_string ("#", 1), Qnil
));
2236 while ((c
= READCHAR
) >= 0 && c
!= '\n');
2241 return Fcons (Qquote
, Fcons (read0 (readcharfun
), Qnil
));
2251 new_backquote_flag
++;
2252 value
= read0 (readcharfun
);
2253 new_backquote_flag
--;
2255 return Fcons (Qbackquote
, Fcons (value
, Qnil
));
2259 if (new_backquote_flag
)
2261 Lisp_Object comma_type
= Qnil
;
2266 comma_type
= Qcomma_at
;
2268 comma_type
= Qcomma_dot
;
2271 if (ch
>= 0) UNREAD (ch
);
2272 comma_type
= Qcomma
;
2275 new_backquote_flag
--;
2276 value
= read0 (readcharfun
);
2277 new_backquote_flag
++;
2278 return Fcons (comma_type
, Fcons (value
, Qnil
));
2291 end_of_file_error ();
2293 /* Accept `single space' syntax like (list ? x) where the
2294 whitespace character is SPC or TAB.
2295 Other literal whitespace like NL, CR, and FF are not accepted,
2296 as there are well-established escape sequences for these. */
2297 if (c
== ' ' || c
== '\t')
2298 return make_number (c
);
2301 c
= read_escape (readcharfun
, 0, &discard
);
2302 else if (BASE_LEADING_CODE_P (c
))
2303 c
= read_multibyte (c
, readcharfun
);
2305 next_char
= READCHAR
;
2306 if (next_char
== '.')
2308 /* Only a dotted-pair dot is valid after a char constant. */
2309 int next_next_char
= READCHAR
;
2310 UNREAD (next_next_char
);
2312 ok
= (next_next_char
<= 040
2313 || (next_next_char
< 0200
2314 && (index ("\"';([#?", next_next_char
)
2315 || (!first_in_list
&& next_next_char
== '`')
2316 || (new_backquote_flag
&& next_next_char
== ','))));
2320 ok
= (next_char
<= 040
2321 || (next_char
< 0200
2322 && (index ("\"';()[]#?", next_char
)
2323 || (!first_in_list
&& next_char
== '`')
2324 || (new_backquote_flag
&& next_char
== ','))));
2328 Fsignal (Qinvalid_read_syntax
, Fcons (make_string ("?", 1), Qnil
));
2330 return make_number (c
);
2335 char *p
= read_buffer
;
2336 char *end
= read_buffer
+ read_buffer_size
;
2338 /* 1 if we saw an escape sequence specifying
2339 a multibyte character, or a multibyte character. */
2340 int force_multibyte
= 0;
2341 /* 1 if we saw an escape sequence specifying
2342 a single-byte character. */
2343 int force_singlebyte
= 0;
2344 /* 1 if read_buffer contains multibyte text now. */
2345 int is_multibyte
= 0;
2349 while ((c
= READCHAR
) >= 0
2352 if (end
- p
< MAX_MULTIBYTE_LENGTH
)
2354 int offset
= p
- read_buffer
;
2355 read_buffer
= (char *) xrealloc (read_buffer
,
2356 read_buffer_size
*= 2);
2357 p
= read_buffer
+ offset
;
2358 end
= read_buffer
+ read_buffer_size
;
2365 c
= read_escape (readcharfun
, 1, &byterep
);
2367 /* C is -1 if \ newline has just been seen */
2370 if (p
== read_buffer
)
2376 force_singlebyte
= 1;
2377 else if (byterep
== 2)
2378 force_multibyte
= 1;
2381 /* A character that must be multibyte forces multibyte. */
2382 if (! SINGLE_BYTE_CHAR_P (c
& ~CHAR_MODIFIER_MASK
))
2383 force_multibyte
= 1;
2385 /* If we just discovered the need to be multibyte,
2386 convert the text accumulated thus far. */
2387 if (force_multibyte
&& ! is_multibyte
)
2390 to_multibyte (&p
, &end
, &nchars
);
2393 /* Allow `\C- ' and `\C-?'. */
2394 if (c
== (CHAR_CTL
| ' '))
2396 else if (c
== (CHAR_CTL
| '?'))
2401 /* Shift modifier is valid only with [A-Za-z]. */
2402 if ((c
& 0377) >= 'A' && (c
& 0377) <= 'Z')
2404 else if ((c
& 0377) >= 'a' && (c
& 0377) <= 'z')
2405 c
= (c
& ~CHAR_SHIFT
) - ('a' - 'A');
2409 /* Move the meta bit to the right place for a string. */
2410 c
= (c
& ~CHAR_META
) | 0x80;
2411 if (c
& CHAR_MODIFIER_MASK
)
2412 error ("Invalid modifier in string");
2415 p
+= CHAR_STRING (c
, p
);
2423 end_of_file_error ();
2425 /* If purifying, and string starts with \ newline,
2426 return zero instead. This is for doc strings
2427 that we are really going to find in etc/DOC.nn.nn */
2428 if (!NILP (Vpurify_flag
) && NILP (Vdoc_file_name
) && cancel
)
2429 return make_number (0);
2431 if (is_multibyte
|| force_singlebyte
)
2433 else if (load_convert_to_unibyte
)
2436 to_multibyte (&p
, &end
, &nchars
);
2437 if (p
- read_buffer
!= nchars
)
2439 string
= make_multibyte_string (read_buffer
, nchars
,
2441 return Fstring_make_unibyte (string
);
2443 /* We can make a unibyte string directly. */
2446 else if (EQ (readcharfun
, Qget_file_char
)
2447 || EQ (readcharfun
, Qlambda
))
2449 /* Nowadays, reading directly from a file is used only for
2450 compiled Emacs Lisp files, and those always use the
2451 Emacs internal encoding. Meanwhile, Qlambda is used
2452 for reading dynamic byte code (compiled with
2453 byte-compile-dynamic = t). So make the string multibyte
2454 if the string contains any multibyte sequences.
2455 (to_multibyte is a no-op if not.) */
2456 to_multibyte (&p
, &end
, &nchars
);
2457 is_multibyte
= (p
- read_buffer
) != nchars
;
2460 /* In all other cases, if we read these bytes as
2461 separate characters, treat them as separate characters now. */
2464 /* We want readchar_count to be the number of characters, not
2465 bytes. Hence we adjust for multibyte characters in the
2466 string. ... But it doesn't seem to be necessary, because
2467 READCHAR *does* read multibyte characters from buffers. */
2468 /* readchar_count -= (p - read_buffer) - nchars; */
2470 return make_pure_string (read_buffer
, nchars
, p
- read_buffer
,
2472 return make_specified_string (read_buffer
, nchars
, p
- read_buffer
,
2478 int next_char
= READCHAR
;
2481 if (next_char
<= 040
2482 || (next_char
< 0200
2483 && (index ("\"';([#?", next_char
)
2484 || (!first_in_list
&& next_char
== '`')
2485 || (new_backquote_flag
&& next_char
== ','))))
2491 /* Otherwise, we fall through! Note that the atom-reading loop
2492 below will now loop at least once, assuring that we will not
2493 try to UNREAD two characters in a row. */
2497 if (c
<= 040) goto retry
;
2499 char *p
= read_buffer
;
2503 char *end
= read_buffer
+ read_buffer_size
;
2507 || (!index ("\"';()[]#", c
)
2508 && !(!first_in_list
&& c
== '`')
2509 && !(new_backquote_flag
&& c
== ','))))
2511 if (end
- p
< MAX_MULTIBYTE_LENGTH
)
2513 int offset
= p
- read_buffer
;
2514 read_buffer
= (char *) xrealloc (read_buffer
,
2515 read_buffer_size
*= 2);
2516 p
= read_buffer
+ offset
;
2517 end
= read_buffer
+ read_buffer_size
;
2524 end_of_file_error ();
2528 if (! SINGLE_BYTE_CHAR_P (c
))
2529 p
+= CHAR_STRING (c
, p
);
2538 int offset
= p
- read_buffer
;
2539 read_buffer
= (char *) xrealloc (read_buffer
,
2540 read_buffer_size
*= 2);
2541 p
= read_buffer
+ offset
;
2542 end
= read_buffer
+ read_buffer_size
;
2549 if (!quoted
&& !uninterned_symbol
)
2552 register Lisp_Object val
;
2554 if (*p1
== '+' || *p1
== '-') p1
++;
2555 /* Is it an integer? */
2558 while (p1
!= p
&& (c
= *p1
) >= '0' && c
<= '9') p1
++;
2559 /* Integers can have trailing decimal points. */
2560 if (p1
> read_buffer
&& p1
< p
&& *p1
== '.') p1
++;
2562 /* It is an integer. */
2566 if (sizeof (int) == sizeof (EMACS_INT
))
2567 XSETINT (val
, atoi (read_buffer
));
2568 else if (sizeof (long) == sizeof (EMACS_INT
))
2569 XSETINT (val
, atol (read_buffer
));
2575 if (isfloat_string (read_buffer
))
2577 /* Compute NaN and infinities using 0.0 in a variable,
2578 to cope with compilers that think they are smarter
2584 /* Negate the value ourselves. This treats 0, NaNs,
2585 and infinity properly on IEEE floating point hosts,
2586 and works around a common bug where atof ("-0.0")
2588 int negative
= read_buffer
[0] == '-';
2590 /* The only way p[-1] can be 'F' or 'N', after isfloat_string
2591 returns 1, is if the input ends in e+INF or e+NaN. */
2598 value
= zero
/ zero
;
2600 /* If that made a "negative" NaN, negate it. */
2604 union { double d
; char c
[sizeof (double)]; } u_data
, u_minus_zero
;
2607 u_minus_zero
.d
= - 0.0;
2608 for (i
= 0; i
< sizeof (double); i
++)
2609 if (u_data
.c
[i
] & u_minus_zero
.c
[i
])
2615 /* Now VALUE is a positive NaN. */
2618 value
= atof (read_buffer
+ negative
);
2622 return make_float (negative
? - value
: value
);
2626 Lisp_Object result
= uninterned_symbol
? make_symbol (read_buffer
)
2627 : intern (read_buffer
);
2628 if (EQ (Vread_with_symbol_positions
, Qt
)
2629 || EQ (Vread_with_symbol_positions
, readcharfun
))
2630 Vread_symbol_positions_list
=
2631 /* Kind of a hack; this will probably fail if characters
2632 in the symbol name were escaped. Not really a big
2634 Fcons (Fcons (result
,
2635 make_number (readchar_count
2636 - XFASTINT (Flength (Fsymbol_name (result
))))),
2637 Vread_symbol_positions_list
);
2645 /* List of nodes we've seen during substitute_object_in_subtree. */
2646 static Lisp_Object seen_list
;
2649 substitute_object_in_subtree (object
, placeholder
)
2651 Lisp_Object placeholder
;
2653 Lisp_Object check_object
;
2655 /* We haven't seen any objects when we start. */
2658 /* Make all the substitutions. */
2660 = substitute_object_recurse (object
, placeholder
, object
);
2662 /* Clear seen_list because we're done with it. */
2665 /* The returned object here is expected to always eq the
2667 if (!EQ (check_object
, object
))
2668 error ("Unexpected mutation error in reader");
2671 /* Feval doesn't get called from here, so no gc protection is needed. */
2672 #define SUBSTITUTE(get_val, set_val) \
2674 Lisp_Object old_value = get_val; \
2675 Lisp_Object true_value \
2676 = substitute_object_recurse (object, placeholder,\
2679 if (!EQ (old_value, true_value)) \
2686 substitute_object_recurse (object
, placeholder
, subtree
)
2688 Lisp_Object placeholder
;
2689 Lisp_Object subtree
;
2691 /* If we find the placeholder, return the target object. */
2692 if (EQ (placeholder
, subtree
))
2695 /* If we've been to this node before, don't explore it again. */
2696 if (!EQ (Qnil
, Fmemq (subtree
, seen_list
)))
2699 /* If this node can be the entry point to a cycle, remember that
2700 we've seen it. It can only be such an entry point if it was made
2701 by #n=, which means that we can find it as a value in
2703 if (!EQ (Qnil
, Frassq (subtree
, read_objects
)))
2704 seen_list
= Fcons (subtree
, seen_list
);
2706 /* Recurse according to subtree's type.
2707 Every branch must return a Lisp_Object. */
2708 switch (XTYPE (subtree
))
2710 case Lisp_Vectorlike
:
2713 int length
= XINT (Flength(subtree
));
2714 for (i
= 0; i
< length
; i
++)
2716 Lisp_Object idx
= make_number (i
);
2717 SUBSTITUTE (Faref (subtree
, idx
),
2718 Faset (subtree
, idx
, true_value
));
2725 SUBSTITUTE (Fcar_safe (subtree
),
2726 Fsetcar (subtree
, true_value
));
2727 SUBSTITUTE (Fcdr_safe (subtree
),
2728 Fsetcdr (subtree
, true_value
));
2734 /* Check for text properties in each interval.
2735 substitute_in_interval contains part of the logic. */
2737 INTERVAL root_interval
= STRING_INTERVALS (subtree
);
2738 Lisp_Object arg
= Fcons (object
, placeholder
);
2740 traverse_intervals_noorder (root_interval
,
2741 &substitute_in_interval
, arg
);
2746 /* Other types don't recurse any further. */
2752 /* Helper function for substitute_object_recurse. */
2754 substitute_in_interval (interval
, arg
)
2758 Lisp_Object object
= Fcar (arg
);
2759 Lisp_Object placeholder
= Fcdr (arg
);
2761 SUBSTITUTE(interval
->plist
, interval
->plist
= true_value
);
2780 if (*cp
== '+' || *cp
== '-')
2783 if (*cp
>= '0' && *cp
<= '9')
2786 while (*cp
>= '0' && *cp
<= '9')
2794 if (*cp
>= '0' && *cp
<= '9')
2797 while (*cp
>= '0' && *cp
<= '9')
2800 if (*cp
== 'e' || *cp
== 'E')
2804 if (*cp
== '+' || *cp
== '-')
2808 if (*cp
>= '0' && *cp
<= '9')
2811 while (*cp
>= '0' && *cp
<= '9')
2814 else if (cp
== start
)
2816 else if (cp
[-1] == '+' && cp
[0] == 'I' && cp
[1] == 'N' && cp
[2] == 'F')
2821 else if (cp
[-1] == '+' && cp
[0] == 'N' && cp
[1] == 'a' && cp
[2] == 'N')
2827 return (((*cp
== 0) || (*cp
== ' ') || (*cp
== '\t') || (*cp
== '\n') || (*cp
== '\r') || (*cp
== '\f'))
2828 && (state
== (LEAD_INT
|DOT_CHAR
|TRAIL_INT
)
2829 || state
== (DOT_CHAR
|TRAIL_INT
)
2830 || state
== (LEAD_INT
|E_CHAR
|EXP_INT
)
2831 || state
== (LEAD_INT
|DOT_CHAR
|TRAIL_INT
|E_CHAR
|EXP_INT
)
2832 || state
== (DOT_CHAR
|TRAIL_INT
|E_CHAR
|EXP_INT
)));
2837 read_vector (readcharfun
, bytecodeflag
)
2838 Lisp_Object readcharfun
;
2843 register Lisp_Object
*ptr
;
2844 register Lisp_Object tem
, item
, vector
;
2845 register struct Lisp_Cons
*otem
;
2848 tem
= read_list (1, readcharfun
);
2849 len
= Flength (tem
);
2850 vector
= (read_pure
? make_pure_vector (XINT (len
)) : Fmake_vector (len
, Qnil
));
2852 size
= XVECTOR (vector
)->size
;
2853 ptr
= XVECTOR (vector
)->contents
;
2854 for (i
= 0; i
< size
; i
++)
2857 /* If `load-force-doc-strings' is t when reading a lazily-loaded
2858 bytecode object, the docstring containing the bytecode and
2859 constants values must be treated as unibyte and passed to
2860 Fread, to get the actual bytecode string and constants vector. */
2861 if (bytecodeflag
&& load_force_doc_strings
)
2863 if (i
== COMPILED_BYTECODE
)
2865 if (!STRINGP (item
))
2866 error ("Invalid byte code");
2868 /* Delay handling the bytecode slot until we know whether
2869 it is lazily-loaded (we can tell by whether the
2870 constants slot is nil). */
2871 ptr
[COMPILED_CONSTANTS
] = item
;
2874 else if (i
== COMPILED_CONSTANTS
)
2876 Lisp_Object bytestr
= ptr
[COMPILED_CONSTANTS
];
2880 /* Coerce string to unibyte (like string-as-unibyte,
2881 but without generating extra garbage and
2882 guaranteeing no change in the contents). */
2883 STRING_SET_CHARS (bytestr
, SBYTES (bytestr
));
2884 STRING_SET_UNIBYTE (bytestr
);
2886 item
= Fread (bytestr
);
2888 error ("Invalid byte code");
2890 otem
= XCONS (item
);
2891 bytestr
= XCAR (item
);
2896 /* Now handle the bytecode slot. */
2897 ptr
[COMPILED_BYTECODE
] = read_pure
? Fpurecopy (bytestr
) : bytestr
;
2900 ptr
[i
] = read_pure
? Fpurecopy (item
) : item
;
2908 /* FLAG = 1 means check for ] to terminate rather than ) and .
2909 FLAG = -1 means check for starting with defun
2910 and make structure pure. */
2913 read_list (flag
, readcharfun
)
2915 register Lisp_Object readcharfun
;
2917 /* -1 means check next element for defun,
2918 0 means don't check,
2919 1 means already checked and found defun. */
2920 int defunflag
= flag
< 0 ? -1 : 0;
2921 Lisp_Object val
, tail
;
2922 register Lisp_Object elt
, tem
;
2923 struct gcpro gcpro1
, gcpro2
;
2924 /* 0 is the normal case.
2925 1 means this list is a doc reference; replace it with the number 0.
2926 2 means this list is a doc reference; replace it with the doc string. */
2927 int doc_reference
= 0;
2929 /* Initialize this to 1 if we are reading a list. */
2930 int first_in_list
= flag
<= 0;
2939 elt
= read1 (readcharfun
, &ch
, first_in_list
);
2944 /* While building, if the list starts with #$, treat it specially. */
2945 if (EQ (elt
, Vload_file_name
)
2947 && !NILP (Vpurify_flag
))
2949 if (NILP (Vdoc_file_name
))
2950 /* We have not yet called Snarf-documentation, so assume
2951 this file is described in the DOC-MM.NN file
2952 and Snarf-documentation will fill in the right value later.
2953 For now, replace the whole list with 0. */
2956 /* We have already called Snarf-documentation, so make a relative
2957 file name for this file, so it can be found properly
2958 in the installed Lisp directory.
2959 We don't use Fexpand_file_name because that would make
2960 the directory absolute now. */
2961 elt
= concat2 (build_string ("../lisp/"),
2962 Ffile_name_nondirectory (elt
));
2964 else if (EQ (elt
, Vload_file_name
)
2966 && load_force_doc_strings
)
2975 Fsignal (Qinvalid_read_syntax
,
2976 Fcons (make_string (") or . in a vector", 18), Qnil
));
2984 XSETCDR (tail
, read0 (readcharfun
));
2986 val
= read0 (readcharfun
);
2987 read1 (readcharfun
, &ch
, 0);
2991 if (doc_reference
== 1)
2992 return make_number (0);
2993 if (doc_reference
== 2)
2995 /* Get a doc string from the file we are loading.
2996 If it's in saved_doc_string, get it from there. */
2997 int pos
= XINT (XCDR (val
));
2998 /* Position is negative for user variables. */
2999 if (pos
< 0) pos
= -pos
;
3000 if (pos
>= saved_doc_string_position
3001 && pos
< (saved_doc_string_position
3002 + saved_doc_string_length
))
3004 int start
= pos
- saved_doc_string_position
;
3007 /* Process quoting with ^A,
3008 and find the end of the string,
3009 which is marked with ^_ (037). */
3010 for (from
= start
, to
= start
;
3011 saved_doc_string
[from
] != 037;)
3013 int c
= saved_doc_string
[from
++];
3016 c
= saved_doc_string
[from
++];
3018 saved_doc_string
[to
++] = c
;
3020 saved_doc_string
[to
++] = 0;
3022 saved_doc_string
[to
++] = 037;
3025 saved_doc_string
[to
++] = c
;
3028 return make_string (saved_doc_string
+ start
,
3031 /* Look in prev_saved_doc_string the same way. */
3032 else if (pos
>= prev_saved_doc_string_position
3033 && pos
< (prev_saved_doc_string_position
3034 + prev_saved_doc_string_length
))
3036 int start
= pos
- prev_saved_doc_string_position
;
3039 /* Process quoting with ^A,
3040 and find the end of the string,
3041 which is marked with ^_ (037). */
3042 for (from
= start
, to
= start
;
3043 prev_saved_doc_string
[from
] != 037;)
3045 int c
= prev_saved_doc_string
[from
++];
3048 c
= prev_saved_doc_string
[from
++];
3050 prev_saved_doc_string
[to
++] = c
;
3052 prev_saved_doc_string
[to
++] = 0;
3054 prev_saved_doc_string
[to
++] = 037;
3057 prev_saved_doc_string
[to
++] = c
;
3060 return make_string (prev_saved_doc_string
+ start
,
3064 return get_doc_string (val
, 0, 0);
3069 return Fsignal (Qinvalid_read_syntax
, Fcons (make_string (". in wrong context", 18), Qnil
));
3071 return Fsignal (Qinvalid_read_syntax
, Fcons (make_string ("] in a list", 11), Qnil
));
3073 tem
= (read_pure
&& flag
<= 0
3074 ? pure_cons (elt
, Qnil
)
3075 : Fcons (elt
, Qnil
));
3077 XSETCDR (tail
, tem
);
3082 defunflag
= EQ (elt
, Qdefun
);
3083 else if (defunflag
> 0)
3088 Lisp_Object Vobarray
;
3089 Lisp_Object initial_obarray
;
3091 /* oblookup stores the bucket number here, for the sake of Funintern. */
3093 int oblookup_last_bucket_number
;
3095 static int hash_string ();
3097 /* Get an error if OBARRAY is not an obarray.
3098 If it is one, return it. */
3101 check_obarray (obarray
)
3102 Lisp_Object obarray
;
3104 while (!VECTORP (obarray
) || XVECTOR (obarray
)->size
== 0)
3106 /* If Vobarray is now invalid, force it to be valid. */
3107 if (EQ (Vobarray
, obarray
)) Vobarray
= initial_obarray
;
3109 obarray
= wrong_type_argument (Qvectorp
, obarray
);
3114 /* Intern the C string STR: return a symbol with that name,
3115 interned in the current obarray. */
3122 int len
= strlen (str
);
3123 Lisp_Object obarray
;
3126 if (!VECTORP (obarray
) || XVECTOR (obarray
)->size
== 0)
3127 obarray
= check_obarray (obarray
);
3128 tem
= oblookup (obarray
, str
, len
, len
);
3131 return Fintern (make_string (str
, len
), obarray
);
3134 /* Create an uninterned symbol with name STR. */
3140 int len
= strlen (str
);
3142 return Fmake_symbol ((!NILP (Vpurify_flag
)
3143 ? make_pure_string (str
, len
, len
, 0)
3144 : make_string (str
, len
)));
3147 DEFUN ("intern", Fintern
, Sintern
, 1, 2, 0,
3148 doc
: /* Return the canonical symbol whose name is STRING.
3149 If there is none, one is created by this function and returned.
3150 A second optional argument specifies the obarray to use;
3151 it defaults to the value of `obarray'. */)
3153 Lisp_Object string
, obarray
;
3155 register Lisp_Object tem
, sym
, *ptr
;
3157 if (NILP (obarray
)) obarray
= Vobarray
;
3158 obarray
= check_obarray (obarray
);
3160 CHECK_STRING (string
);
3162 tem
= oblookup (obarray
, SDATA (string
),
3165 if (!INTEGERP (tem
))
3168 if (!NILP (Vpurify_flag
))
3169 string
= Fpurecopy (string
);
3170 sym
= Fmake_symbol (string
);
3172 if (EQ (obarray
, initial_obarray
))
3173 XSYMBOL (sym
)->interned
= SYMBOL_INTERNED_IN_INITIAL_OBARRAY
;
3175 XSYMBOL (sym
)->interned
= SYMBOL_INTERNED
;
3177 if ((SREF (string
, 0) == ':')
3178 && EQ (obarray
, initial_obarray
))
3180 XSYMBOL (sym
)->constant
= 1;
3181 XSYMBOL (sym
)->value
= sym
;
3184 ptr
= &XVECTOR (obarray
)->contents
[XINT (tem
)];
3186 XSYMBOL (sym
)->next
= XSYMBOL (*ptr
);
3188 XSYMBOL (sym
)->next
= 0;
3193 DEFUN ("intern-soft", Fintern_soft
, Sintern_soft
, 1, 2, 0,
3194 doc
: /* Return the canonical symbol named NAME, or nil if none exists.
3195 NAME may be a string or a symbol. If it is a symbol, that exact
3196 symbol is searched for.
3197 A second optional argument specifies the obarray to use;
3198 it defaults to the value of `obarray'. */)
3200 Lisp_Object name
, obarray
;
3202 register Lisp_Object tem
, string
;
3204 if (NILP (obarray
)) obarray
= Vobarray
;
3205 obarray
= check_obarray (obarray
);
3207 if (!SYMBOLP (name
))
3209 CHECK_STRING (name
);
3213 string
= SYMBOL_NAME (name
);
3215 tem
= oblookup (obarray
, SDATA (string
), SCHARS (string
), SBYTES (string
));
3216 if (INTEGERP (tem
) || (SYMBOLP (name
) && !EQ (name
, tem
)))
3222 DEFUN ("unintern", Funintern
, Sunintern
, 1, 2, 0,
3223 doc
: /* Delete the symbol named NAME, if any, from OBARRAY.
3224 The value is t if a symbol was found and deleted, nil otherwise.
3225 NAME may be a string or a symbol. If it is a symbol, that symbol
3226 is deleted, if it belongs to OBARRAY--no other symbol is deleted.
3227 OBARRAY defaults to the value of the variable `obarray'. */)
3229 Lisp_Object name
, obarray
;
3231 register Lisp_Object string
, tem
;
3234 if (NILP (obarray
)) obarray
= Vobarray
;
3235 obarray
= check_obarray (obarray
);
3238 string
= SYMBOL_NAME (name
);
3241 CHECK_STRING (name
);
3245 tem
= oblookup (obarray
, SDATA (string
),
3250 /* If arg was a symbol, don't delete anything but that symbol itself. */
3251 if (SYMBOLP (name
) && !EQ (name
, tem
))
3254 XSYMBOL (tem
)->interned
= SYMBOL_UNINTERNED
;
3255 XSYMBOL (tem
)->constant
= 0;
3256 XSYMBOL (tem
)->indirect_variable
= 0;
3258 hash
= oblookup_last_bucket_number
;
3260 if (EQ (XVECTOR (obarray
)->contents
[hash
], tem
))
3262 if (XSYMBOL (tem
)->next
)
3263 XSETSYMBOL (XVECTOR (obarray
)->contents
[hash
], XSYMBOL (tem
)->next
);
3265 XSETINT (XVECTOR (obarray
)->contents
[hash
], 0);
3269 Lisp_Object tail
, following
;
3271 for (tail
= XVECTOR (obarray
)->contents
[hash
];
3272 XSYMBOL (tail
)->next
;
3275 XSETSYMBOL (following
, XSYMBOL (tail
)->next
);
3276 if (EQ (following
, tem
))
3278 XSYMBOL (tail
)->next
= XSYMBOL (following
)->next
;
3287 /* Return the symbol in OBARRAY whose names matches the string
3288 of SIZE characters (SIZE_BYTE bytes) at PTR.
3289 If there is no such symbol in OBARRAY, return nil.
3291 Also store the bucket number in oblookup_last_bucket_number. */
3294 oblookup (obarray
, ptr
, size
, size_byte
)
3295 Lisp_Object obarray
;
3296 register const char *ptr
;
3297 int size
, size_byte
;
3301 register Lisp_Object tail
;
3302 Lisp_Object bucket
, tem
;
3304 if (!VECTORP (obarray
)
3305 || (obsize
= XVECTOR (obarray
)->size
) == 0)
3307 obarray
= check_obarray (obarray
);
3308 obsize
= XVECTOR (obarray
)->size
;
3310 /* This is sometimes needed in the middle of GC. */
3311 obsize
&= ~ARRAY_MARK_FLAG
;
3312 /* Combining next two lines breaks VMS C 2.3. */
3313 hash
= hash_string (ptr
, size_byte
);
3315 bucket
= XVECTOR (obarray
)->contents
[hash
];
3316 oblookup_last_bucket_number
= hash
;
3317 if (EQ (bucket
, make_number (0)))
3319 else if (!SYMBOLP (bucket
))
3320 error ("Bad data in guts of obarray"); /* Like CADR error message */
3322 for (tail
= bucket
; ; XSETSYMBOL (tail
, XSYMBOL (tail
)->next
))
3324 if (SBYTES (SYMBOL_NAME (tail
)) == size_byte
3325 && SCHARS (SYMBOL_NAME (tail
)) == size
3326 && !bcmp (SDATA (SYMBOL_NAME (tail
)), ptr
, size_byte
))
3328 else if (XSYMBOL (tail
)->next
== 0)
3331 XSETINT (tem
, hash
);
3336 hash_string (ptr
, len
)
3337 const unsigned char *ptr
;
3340 register const unsigned char *p
= ptr
;
3341 register const unsigned char *end
= p
+ len
;
3342 register unsigned char c
;
3343 register int hash
= 0;
3348 if (c
>= 0140) c
-= 40;
3349 hash
= ((hash
<<3) + (hash
>>28) + c
);
3351 return hash
& 07777777777;
3355 map_obarray (obarray
, fn
, arg
)
3356 Lisp_Object obarray
;
3357 void (*fn
) P_ ((Lisp_Object
, Lisp_Object
));
3361 register Lisp_Object tail
;
3362 CHECK_VECTOR (obarray
);
3363 for (i
= XVECTOR (obarray
)->size
- 1; i
>= 0; i
--)
3365 tail
= XVECTOR (obarray
)->contents
[i
];
3370 if (XSYMBOL (tail
)->next
== 0)
3372 XSETSYMBOL (tail
, XSYMBOL (tail
)->next
);
3378 mapatoms_1 (sym
, function
)
3379 Lisp_Object sym
, function
;
3381 call1 (function
, sym
);
3384 DEFUN ("mapatoms", Fmapatoms
, Smapatoms
, 1, 2, 0,
3385 doc
: /* Call FUNCTION on every symbol in OBARRAY.
3386 OBARRAY defaults to the value of `obarray'. */)
3388 Lisp_Object function
, obarray
;
3390 if (NILP (obarray
)) obarray
= Vobarray
;
3391 obarray
= check_obarray (obarray
);
3393 map_obarray (obarray
, mapatoms_1
, function
);
3397 #define OBARRAY_SIZE 1511
3402 Lisp_Object oblength
;
3406 XSETFASTINT (oblength
, OBARRAY_SIZE
);
3408 Qnil
= Fmake_symbol (make_pure_string ("nil", 3, 3, 0));
3409 Vobarray
= Fmake_vector (oblength
, make_number (0));
3410 initial_obarray
= Vobarray
;
3411 staticpro (&initial_obarray
);
3412 /* Intern nil in the obarray */
3413 XSYMBOL (Qnil
)->interned
= SYMBOL_INTERNED_IN_INITIAL_OBARRAY
;
3414 XSYMBOL (Qnil
)->constant
= 1;
3416 /* These locals are to kludge around a pyramid compiler bug. */
3417 hash
= hash_string ("nil", 3);
3418 /* Separate statement here to avoid VAXC bug. */
3419 hash
%= OBARRAY_SIZE
;
3420 tem
= &XVECTOR (Vobarray
)->contents
[hash
];
3423 Qunbound
= Fmake_symbol (make_pure_string ("unbound", 7, 7, 0));
3424 XSYMBOL (Qnil
)->function
= Qunbound
;
3425 XSYMBOL (Qunbound
)->value
= Qunbound
;
3426 XSYMBOL (Qunbound
)->function
= Qunbound
;
3429 XSYMBOL (Qnil
)->value
= Qnil
;
3430 XSYMBOL (Qnil
)->plist
= Qnil
;
3431 XSYMBOL (Qt
)->value
= Qt
;
3432 XSYMBOL (Qt
)->constant
= 1;
3434 /* Qt is correct even if CANNOT_DUMP. loadup.el will set to nil at end. */
3437 Qvariable_documentation
= intern ("variable-documentation");
3438 staticpro (&Qvariable_documentation
);
3440 read_buffer_size
= 100 + MAX_MULTIBYTE_LENGTH
;
3441 read_buffer
= (char *) xmalloc (read_buffer_size
);
3446 struct Lisp_Subr
*sname
;
3449 sym
= intern (sname
->symbol_name
);
3450 XSETSUBR (XSYMBOL (sym
)->function
, sname
);
3453 #ifdef NOTDEF /* use fset in subr.el now */
3455 defalias (sname
, string
)
3456 struct Lisp_Subr
*sname
;
3460 sym
= intern (string
);
3461 XSETSUBR (XSYMBOL (sym
)->function
, sname
);
3465 /* Define an "integer variable"; a symbol whose value is forwarded
3466 to a C variable of type int. Sample call: */
3467 /* DEFVAR_INT ("indent-tabs-mode", &indent_tabs_mode, "Documentation"); */
3469 defvar_int (namestring
, address
)
3473 Lisp_Object sym
, val
;
3474 sym
= intern (namestring
);
3475 val
= allocate_misc ();
3476 XMISCTYPE (val
) = Lisp_Misc_Intfwd
;
3477 XINTFWD (val
)->intvar
= address
;
3478 SET_SYMBOL_VALUE (sym
, val
);
3481 /* Similar but define a variable whose value is t if address contains 1,
3482 nil if address contains 0 */
3484 defvar_bool (namestring
, address
)
3488 Lisp_Object sym
, val
;
3489 sym
= intern (namestring
);
3490 val
= allocate_misc ();
3491 XMISCTYPE (val
) = Lisp_Misc_Boolfwd
;
3492 XBOOLFWD (val
)->boolvar
= address
;
3493 SET_SYMBOL_VALUE (sym
, val
);
3494 Vbyte_boolean_vars
= Fcons (sym
, Vbyte_boolean_vars
);
3497 /* Similar but define a variable whose value is the Lisp Object stored
3498 at address. Two versions: with and without gc-marking of the C
3499 variable. The nopro version is used when that variable will be
3500 gc-marked for some other reason, since marking the same slot twice
3501 can cause trouble with strings. */
3503 defvar_lisp_nopro (namestring
, address
)
3505 Lisp_Object
*address
;
3507 Lisp_Object sym
, val
;
3508 sym
= intern (namestring
);
3509 val
= allocate_misc ();
3510 XMISCTYPE (val
) = Lisp_Misc_Objfwd
;
3511 XOBJFWD (val
)->objvar
= address
;
3512 SET_SYMBOL_VALUE (sym
, val
);
3516 defvar_lisp (namestring
, address
)
3518 Lisp_Object
*address
;
3520 defvar_lisp_nopro (namestring
, address
);
3521 staticpro (address
);
3524 /* Similar but define a variable whose value is the Lisp Object stored in
3525 the current buffer. address is the address of the slot in the buffer
3526 that is current now. */
3529 defvar_per_buffer (namestring
, address
, type
, doc
)
3531 Lisp_Object
*address
;
3535 Lisp_Object sym
, val
;
3538 sym
= intern (namestring
);
3539 val
= allocate_misc ();
3540 offset
= (char *)address
- (char *)current_buffer
;
3542 XMISCTYPE (val
) = Lisp_Misc_Buffer_Objfwd
;
3543 XBUFFER_OBJFWD (val
)->offset
= offset
;
3544 SET_SYMBOL_VALUE (sym
, val
);
3545 PER_BUFFER_SYMBOL (offset
) = sym
;
3546 PER_BUFFER_TYPE (offset
) = type
;
3548 if (PER_BUFFER_IDX (offset
) == 0)
3549 /* Did a DEFVAR_PER_BUFFER without initializing the corresponding
3550 slot of buffer_local_flags */
3555 /* Similar but define a variable whose value is the Lisp Object stored
3556 at a particular offset in the current kboard object. */
3559 defvar_kboard (namestring
, offset
)
3563 Lisp_Object sym
, val
;
3564 sym
= intern (namestring
);
3565 val
= allocate_misc ();
3566 XMISCTYPE (val
) = Lisp_Misc_Kboard_Objfwd
;
3567 XKBOARD_OBJFWD (val
)->offset
= offset
;
3568 SET_SYMBOL_VALUE (sym
, val
);
3571 /* Record the value of load-path used at the start of dumping
3572 so we can see if the site changed it later during dumping. */
3573 static Lisp_Object dump_path
;
3579 int turn_off_warning
= 0;
3581 /* Compute the default load-path. */
3583 normal
= PATH_LOADSEARCH
;
3584 Vload_path
= decode_env_path (0, normal
);
3586 if (NILP (Vpurify_flag
))
3587 normal
= PATH_LOADSEARCH
;
3589 normal
= PATH_DUMPLOADSEARCH
;
3591 /* In a dumped Emacs, we normally have to reset the value of
3592 Vload_path from PATH_LOADSEARCH, since the value that was dumped
3593 uses ../lisp, instead of the path of the installed elisp
3594 libraries. However, if it appears that Vload_path was changed
3595 from the default before dumping, don't override that value. */
3598 if (! NILP (Fequal (dump_path
, Vload_path
)))
3600 Vload_path
= decode_env_path (0, normal
);
3601 if (!NILP (Vinstallation_directory
))
3603 Lisp_Object tem
, tem1
, sitelisp
;
3605 /* Remove site-lisp dirs from path temporarily and store
3606 them in sitelisp, then conc them on at the end so
3607 they're always first in path. */
3611 tem
= Fcar (Vload_path
);
3612 tem1
= Fstring_match (build_string ("site-lisp"),
3616 Vload_path
= Fcdr (Vload_path
);
3617 sitelisp
= Fcons (tem
, sitelisp
);
3623 /* Add to the path the lisp subdir of the
3624 installation dir, if it exists. */
3625 tem
= Fexpand_file_name (build_string ("lisp"),
3626 Vinstallation_directory
);
3627 tem1
= Ffile_exists_p (tem
);
3630 if (NILP (Fmember (tem
, Vload_path
)))
3632 turn_off_warning
= 1;
3633 Vload_path
= Fcons (tem
, Vload_path
);
3637 /* That dir doesn't exist, so add the build-time
3638 Lisp dirs instead. */
3639 Vload_path
= nconc2 (Vload_path
, dump_path
);
3641 /* Add leim under the installation dir, if it exists. */
3642 tem
= Fexpand_file_name (build_string ("leim"),
3643 Vinstallation_directory
);
3644 tem1
= Ffile_exists_p (tem
);
3647 if (NILP (Fmember (tem
, Vload_path
)))
3648 Vload_path
= Fcons (tem
, Vload_path
);
3651 /* Add site-list under the installation dir, if it exists. */
3652 tem
= Fexpand_file_name (build_string ("site-lisp"),
3653 Vinstallation_directory
);
3654 tem1
= Ffile_exists_p (tem
);
3657 if (NILP (Fmember (tem
, Vload_path
)))
3658 Vload_path
= Fcons (tem
, Vload_path
);
3661 /* If Emacs was not built in the source directory,
3662 and it is run from where it was built, add to load-path
3663 the lisp, leim and site-lisp dirs under that directory. */
3665 if (NILP (Fequal (Vinstallation_directory
, Vsource_directory
)))
3669 tem
= Fexpand_file_name (build_string ("src/Makefile"),
3670 Vinstallation_directory
);
3671 tem1
= Ffile_exists_p (tem
);
3673 /* Don't be fooled if they moved the entire source tree
3674 AFTER dumping Emacs. If the build directory is indeed
3675 different from the source dir, src/Makefile.in and
3676 src/Makefile will not be found together. */
3677 tem
= Fexpand_file_name (build_string ("src/Makefile.in"),
3678 Vinstallation_directory
);
3679 tem2
= Ffile_exists_p (tem
);
3680 if (!NILP (tem1
) && NILP (tem2
))
3682 tem
= Fexpand_file_name (build_string ("lisp"),
3685 if (NILP (Fmember (tem
, Vload_path
)))
3686 Vload_path
= Fcons (tem
, Vload_path
);
3688 tem
= Fexpand_file_name (build_string ("leim"),
3691 if (NILP (Fmember (tem
, Vload_path
)))
3692 Vload_path
= Fcons (tem
, Vload_path
);
3694 tem
= Fexpand_file_name (build_string ("site-lisp"),
3697 if (NILP (Fmember (tem
, Vload_path
)))
3698 Vload_path
= Fcons (tem
, Vload_path
);
3701 if (!NILP (sitelisp
))
3702 Vload_path
= nconc2 (Fnreverse (sitelisp
), Vload_path
);
3708 /* NORMAL refers to the lisp dir in the source directory. */
3709 /* We used to add ../lisp at the front here, but
3710 that caused trouble because it was copied from dump_path
3711 into Vload_path, aboe, when Vinstallation_directory was non-nil.
3712 It should be unnecessary. */
3713 Vload_path
= decode_env_path (0, normal
);
3714 dump_path
= Vload_path
;
3718 #if (!(defined(WINDOWSNT) || (defined(HAVE_CARBON))))
3719 /* When Emacs is invoked over network shares on NT, PATH_LOADSEARCH is
3720 almost never correct, thereby causing a warning to be printed out that
3721 confuses users. Since PATH_LOADSEARCH is always overridden by the
3722 EMACSLOADPATH environment variable below, disable the warning on NT.
3723 Also, when using the "self-contained" option for Carbon Emacs for MacOSX,
3724 the "standard" paths may not exist and would be overridden by
3725 EMACSLOADPATH as on NT. Since this depends on how the executable
3726 was build and packaged, turn off the warnings in general */
3728 /* Warn if dirs in the *standard* path don't exist. */
3729 if (!turn_off_warning
)
3731 Lisp_Object path_tail
;
3733 for (path_tail
= Vload_path
;
3735 path_tail
= XCDR (path_tail
))
3737 Lisp_Object dirfile
;
3738 dirfile
= Fcar (path_tail
);
3739 if (STRINGP (dirfile
))
3741 dirfile
= Fdirectory_file_name (dirfile
);
3742 if (access (SDATA (dirfile
), 0) < 0)
3743 dir_warning ("Warning: Lisp directory `%s' does not exist.\n",
3748 #endif /* !(WINDOWSNT || HAVE_CARBON) */
3750 /* If the EMACSLOADPATH environment variable is set, use its value.
3751 This doesn't apply if we're dumping. */
3753 if (NILP (Vpurify_flag
)
3754 && egetenv ("EMACSLOADPATH"))
3756 Vload_path
= decode_env_path ("EMACSLOADPATH", normal
);
3760 load_in_progress
= 0;
3761 Vload_file_name
= Qnil
;
3763 load_descriptor_list
= Qnil
;
3765 Vstandard_input
= Qt
;
3766 Vloads_in_progress
= Qnil
;
3769 /* Print a warning, using format string FORMAT, that directory DIRNAME
3770 does not exist. Print it on stderr and put it in *Message*. */
3773 dir_warning (format
, dirname
)
3775 Lisp_Object dirname
;
3778 = (char *) alloca (SCHARS (dirname
) + strlen (format
) + 5);
3780 fprintf (stderr
, format
, SDATA (dirname
));
3781 sprintf (buffer
, format
, SDATA (dirname
));
3782 /* Don't log the warning before we've initialized!! */
3784 message_dolog (buffer
, strlen (buffer
), 0, STRING_MULTIBYTE (dirname
));
3791 defsubr (&Sread_from_string
);
3793 defsubr (&Sintern_soft
);
3794 defsubr (&Sunintern
);
3796 defsubr (&Seval_buffer
);
3797 defsubr (&Seval_region
);
3798 defsubr (&Sread_char
);
3799 defsubr (&Sread_char_exclusive
);
3800 defsubr (&Sread_event
);
3801 defsubr (&Sget_file_char
);
3802 defsubr (&Smapatoms
);
3803 defsubr (&Slocate_file_internal
);
3805 DEFVAR_LISP ("obarray", &Vobarray
,
3806 doc
: /* Symbol table for use by `intern' and `read'.
3807 It is a vector whose length ought to be prime for best results.
3808 The vector's contents don't make sense if examined from Lisp programs;
3809 to find all the symbols in an obarray, use `mapatoms'. */);
3811 DEFVAR_LISP ("values", &Vvalues
,
3812 doc
: /* List of values of all expressions which were read, evaluated and printed.
3813 Order is reverse chronological. */);
3815 DEFVAR_LISP ("standard-input", &Vstandard_input
,
3816 doc
: /* Stream for read to get input from.
3817 See documentation of `read' for possible values. */);
3818 Vstandard_input
= Qt
;
3820 DEFVAR_LISP ("read-with-symbol-positions", &Vread_with_symbol_positions
,
3821 doc
: /* If non-nil, add position of read symbols to `read-symbol-positions-list'.
3823 If this variable is a buffer, then only forms read from that buffer
3824 will be added to `read-symbol-positions-list'.
3825 If this variable is t, then all read forms will be added.
3826 The effect of all other values other than nil are not currently
3827 defined, although they may be in the future.
3829 The positions are relative to the last call to `read' or
3830 `read-from-string'. It is probably a bad idea to set this variable at
3831 the toplevel; bind it instead. */);
3832 Vread_with_symbol_positions
= Qnil
;
3834 DEFVAR_LISP ("read-symbol-positions-list", &Vread_symbol_positions_list
,
3835 doc
: /* A list mapping read symbols to their positions.
3836 This variable is modified during calls to `read' or
3837 `read-from-string', but only when `read-with-symbol-positions' is
3840 Each element of the list looks like (SYMBOL . CHAR-POSITION), where
3841 CHAR-POSITION is an integer giving the offset of that occurrence of the
3842 symbol from the position where `read' or `read-from-string' started.
3844 Note that a symbol will appear multiple times in this list, if it was
3845 read multiple times. The list is in the same order as the symbols
3847 Vread_symbol_positions_list
= Qnil
;
3849 DEFVAR_LISP ("load-path", &Vload_path
,
3850 doc
: /* *List of directories to search for files to load.
3851 Each element is a string (directory name) or nil (try default directory).
3852 Initialized based on EMACSLOADPATH environment variable, if any,
3853 otherwise to default specified by file `epaths.h' when Emacs was built. */);
3855 DEFVAR_LISP ("load-suffixes", &Vload_suffixes
,
3856 doc
: /* *List of suffixes to try for files to load.
3857 This list should not include the empty string. */);
3858 Vload_suffixes
= Fcons (build_string (".elc"),
3859 Fcons (build_string (".el"), Qnil
));
3860 /* We don't use empty_string because it's not initialized yet. */
3861 default_suffixes
= Fcons (build_string (""), Qnil
);
3862 staticpro (&default_suffixes
);
3864 DEFVAR_BOOL ("load-in-progress", &load_in_progress
,
3865 doc
: /* Non-nil iff inside of `load'. */);
3867 DEFVAR_LISP ("after-load-alist", &Vafter_load_alist
,
3868 doc
: /* An alist of expressions to be evalled when particular files are loaded.
3869 Each element looks like (FILENAME FORMS...).
3870 When `load' is run and the file-name argument is FILENAME,
3871 the FORMS in the corresponding element are executed at the end of loading.
3873 FILENAME must match exactly! Normally FILENAME is the name of a library,
3874 with no directory specified, since that is how `load' is normally called.
3875 An error in FORMS does not undo the load,
3876 but does prevent execution of the rest of the FORMS.
3877 FILENAME can also be a symbol (a feature) and FORMS are then executed
3878 when the corresponding call to `provide' is made. */);
3879 Vafter_load_alist
= Qnil
;
3881 DEFVAR_LISP ("load-history", &Vload_history
,
3882 doc
: /* Alist mapping source file names to symbols and features.
3883 Each alist element is a list that starts with a file name,
3884 except for one element (optional) that starts with nil and describes
3885 definitions evaluated from buffers not visiting files.
3886 The remaining elements of each list are symbols defined as variables
3887 and cons cells of the form `(provide . FEATURE)', `(require . FEATURE)',
3888 `(defun . FUNCTION)', `(autoload . SYMBOL)', and `(t . SYMBOL)'.
3889 An element `(t . SYMBOL)' precedes an entry `(defun . FUNCTION)',
3890 and means that SYMBOL was an autoload before this file redefined it
3892 Vload_history
= Qnil
;
3894 DEFVAR_LISP ("load-file-name", &Vload_file_name
,
3895 doc
: /* Full name of file being loaded by `load'. */);
3896 Vload_file_name
= Qnil
;
3898 DEFVAR_LISP ("user-init-file", &Vuser_init_file
,
3899 doc
: /* File name, including directory, of user's initialization file.
3900 If the file loaded had extension `.elc', and the corresponding source file
3901 exists, this variable contains the name of source file, suitable for use
3902 by functions like `custom-save-all' which edit the init file. */);
3903 Vuser_init_file
= Qnil
;
3905 DEFVAR_LISP ("current-load-list", &Vcurrent_load_list
,
3906 doc
: /* Used for internal purposes by `load'. */);
3907 Vcurrent_load_list
= Qnil
;
3909 DEFVAR_LISP ("load-read-function", &Vload_read_function
,
3910 doc
: /* Function used by `load' and `eval-region' for reading expressions.
3911 The default is nil, which means use the function `read'. */);
3912 Vload_read_function
= Qnil
;
3914 DEFVAR_LISP ("load-source-file-function", &Vload_source_file_function
,
3915 doc
: /* Function called in `load' for loading an Emacs lisp source file.
3916 This function is for doing code conversion before reading the source file.
3917 If nil, loading is done without any code conversion.
3918 Arguments are FULLNAME, FILE, NOERROR, NOMESSAGE, where
3919 FULLNAME is the full name of FILE.
3920 See `load' for the meaning of the remaining arguments. */);
3921 Vload_source_file_function
= Qnil
;
3923 DEFVAR_BOOL ("load-force-doc-strings", &load_force_doc_strings
,
3924 doc
: /* Non-nil means `load' should force-load all dynamic doc strings.
3925 This is useful when the file being loaded is a temporary copy. */);
3926 load_force_doc_strings
= 0;
3928 DEFVAR_BOOL ("load-convert-to-unibyte", &load_convert_to_unibyte
,
3929 doc
: /* Non-nil means `read' converts strings to unibyte whenever possible.
3930 This is normally bound by `load' and `eval-buffer' to control `read',
3931 and is not meant for users to change. */);
3932 load_convert_to_unibyte
= 0;
3934 DEFVAR_LISP ("source-directory", &Vsource_directory
,
3935 doc
: /* Directory in which Emacs sources were found when Emacs was built.
3936 You cannot count on them to still be there! */);
3938 = Fexpand_file_name (build_string ("../"),
3939 Fcar (decode_env_path (0, PATH_DUMPLOADSEARCH
)));
3941 DEFVAR_LISP ("preloaded-file-list", &Vpreloaded_file_list
,
3942 doc
: /* List of files that were preloaded (when dumping Emacs). */);
3943 Vpreloaded_file_list
= Qnil
;
3945 DEFVAR_LISP ("byte-boolean-vars", &Vbyte_boolean_vars
,
3946 doc
: /* List of all DEFVAR_BOOL variables, used by the byte code optimizer. */);
3947 Vbyte_boolean_vars
= Qnil
;
3949 DEFVAR_BOOL ("load-dangerous-libraries", &load_dangerous_libraries
,
3950 doc
: /* Non-nil means load dangerous compiled Lisp files.
3951 Some versions of XEmacs use different byte codes than Emacs. These
3952 incompatible byte codes can make Emacs crash when it tries to execute
3954 load_dangerous_libraries
= 0;
3956 DEFVAR_LISP ("bytecomp-version-regexp", &Vbytecomp_version_regexp
,
3957 doc
: /* Regular expression matching safe to load compiled Lisp files.
3958 When Emacs loads a compiled Lisp file, it reads the first 512 bytes
3959 from the file, and matches them against this regular expression.
3960 When the regular expression matches, the file is considered to be safe
3961 to load. See also `load-dangerous-libraries'. */);
3962 Vbytecomp_version_regexp
3963 = build_string ("^;;;.\\(in Emacs version\\|bytecomp version FSF\\)");
3965 DEFVAR_LISP ("eval-buffer-list", &Veval_buffer_list
,
3966 doc
: /* List of buffers being read from by calls to `eval-buffer' and `eval-region'. */);
3967 Veval_buffer_list
= Qnil
;
3969 /* Vsource_directory was initialized in init_lread. */
3971 load_descriptor_list
= Qnil
;
3972 staticpro (&load_descriptor_list
);
3974 Qcurrent_load_list
= intern ("current-load-list");
3975 staticpro (&Qcurrent_load_list
);
3977 Qstandard_input
= intern ("standard-input");
3978 staticpro (&Qstandard_input
);
3980 Qread_char
= intern ("read-char");
3981 staticpro (&Qread_char
);
3983 Qget_file_char
= intern ("get-file-char");
3984 staticpro (&Qget_file_char
);
3986 Qbackquote
= intern ("`");
3987 staticpro (&Qbackquote
);
3988 Qcomma
= intern (",");
3989 staticpro (&Qcomma
);
3990 Qcomma_at
= intern (",@");
3991 staticpro (&Qcomma_at
);
3992 Qcomma_dot
= intern (",.");
3993 staticpro (&Qcomma_dot
);
3995 Qinhibit_file_name_operation
= intern ("inhibit-file-name-operation");
3996 staticpro (&Qinhibit_file_name_operation
);
3998 Qascii_character
= intern ("ascii-character");
3999 staticpro (&Qascii_character
);
4001 Qfunction
= intern ("function");
4002 staticpro (&Qfunction
);
4004 Qload
= intern ("load");
4007 Qload_file_name
= intern ("load-file-name");
4008 staticpro (&Qload_file_name
);
4010 Qeval_buffer_list
= intern ("eval-buffer-list");
4011 staticpro (&Qeval_buffer_list
);
4013 staticpro (&dump_path
);
4015 staticpro (&read_objects
);
4016 read_objects
= Qnil
;
4017 staticpro (&seen_list
);
4020 Vloads_in_progress
= Qnil
;
4021 staticpro (&Vloads_in_progress
);
4024 /* arch-tag: a0d02733-0f96-4844-a659-9fd53c4f414d
4025 (do not change this comment) */