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