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