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