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