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