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