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