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