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