Fix previous change.
[bpt/emacs.git] / src / lread.c
1 /* Lisp parsing and input streams.
2 Copyright (C) 1985, 1986, 1987, 1988, 1989,
3 1993, 1994, 1995 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22
23 #include <config.h>
24 #include <stdio.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <sys/file.h>
28 #include <errno.h>
29 #include "lisp.h"
30
31 #ifndef standalone
32 #include "buffer.h"
33 #include <paths.h>
34 #include "commands.h"
35 #include "keyboard.h"
36 #include "termhooks.h"
37 #endif
38
39 #ifdef lint
40 #include <sys/inode.h>
41 #endif /* lint */
42
43 #ifdef MSDOS
44 #if __DJGPP__ < 2
45 #include <unistd.h> /* to get X_OK */
46 #endif
47 #include "msdos.h"
48 #endif
49
50 #ifndef X_OK
51 #define X_OK 01
52 #endif
53
54 #ifdef LISP_FLOAT_TYPE
55 #ifdef STDC_HEADERS
56 #include <stdlib.h>
57 #endif
58
59 #include <math.h>
60 #endif /* LISP_FLOAT_TYPE */
61
62 #ifdef HAVE_SETLOCALE
63 #include <locale.h>
64 #endif /* HAVE_SETLOCALE */
65
66 #ifndef O_RDONLY
67 #define O_RDONLY 0
68 #endif
69
70 extern int errno;
71
72 Lisp_Object Qread_char, Qget_file_char, Qstandard_input, Qcurrent_load_list;
73 Lisp_Object Qvariable_documentation, Vvalues, Vstandard_input, Vafter_load_alist;
74 Lisp_Object Qascii_character, Qload, Qload_file_name;
75 Lisp_Object Qbackquote, Qcomma, Qcomma_at, Qcomma_dot, Qfunction;
76
77 extern Lisp_Object Qevent_symbol_element_mask;
78
79 /* non-zero if inside `load' */
80 int load_in_progress;
81
82 /* Directory in which the sources were found. */
83 Lisp_Object Vsource_directory;
84
85 /* Search path for files to be loaded. */
86 Lisp_Object Vload_path;
87
88 /* This is the user-visible association list that maps features to
89 lists of defs in their load files. */
90 Lisp_Object Vload_history;
91
92 /* This is used to build the load history. */
93 Lisp_Object Vcurrent_load_list;
94
95 /* Name of file actually being read by `load'. */
96 Lisp_Object Vload_file_name;
97
98 /* Function to use for reading, in `load' and friends. */
99 Lisp_Object Vload_read_function;
100
101 /* The association list of objects read with the #n=object form.
102 Each member of the list has the form (n . object), and is used to
103 look up the object for the corresponding #n# construct.
104 It must be set to nil before all top-level calls to read0. */
105 Lisp_Object read_objects;
106
107 /* Nonzero means load should forcibly load all dynamic doc strings. */
108 static int load_force_doc_strings;
109
110 /* List of descriptors now open for Fload. */
111 static Lisp_Object load_descriptor_list;
112
113 /* File for get_file_char to read from. Use by load. */
114 static FILE *instream;
115
116 /* When nonzero, read conses in pure space */
117 static int read_pure;
118
119 /* For use within read-from-string (this reader is non-reentrant!!) */
120 static int read_from_string_index;
121 static int read_from_string_limit;
122
123 /* This contains the last string skipped with #@. */
124 static char *saved_doc_string;
125 /* Length of buffer allocated in saved_doc_string. */
126 static int saved_doc_string_size;
127 /* Length of actual data in saved_doc_string. */
128 static int saved_doc_string_length;
129 /* This is the file position that string came from. */
130 static int saved_doc_string_position;
131
132 /* Nonzero means inside a new-style backquote
133 with no surrounding parentheses.
134 Fread initializes this to zero, so we need not specbind it
135 or worry about what happens to it when there is an error. */
136 static int new_backquote_flag;
137 \f
138 /* Handle unreading and rereading of characters.
139 Write READCHAR to read a character,
140 UNREAD(c) to unread c to be read again. */
141
142 #define READCHAR readchar (readcharfun)
143 #define UNREAD(c) unreadchar (readcharfun, c)
144
145 static int
146 readchar (readcharfun)
147 Lisp_Object readcharfun;
148 {
149 Lisp_Object tem;
150 register struct buffer *inbuffer;
151 register int c, mpos;
152
153 if (BUFFERP (readcharfun))
154 {
155 inbuffer = XBUFFER (readcharfun);
156
157 if (BUF_PT (inbuffer) >= BUF_ZV (inbuffer))
158 return -1;
159 c = *(unsigned char *) BUF_CHAR_ADDRESS (inbuffer, BUF_PT (inbuffer));
160 SET_BUF_PT (inbuffer, BUF_PT (inbuffer) + 1);
161
162 return c;
163 }
164 if (MARKERP (readcharfun))
165 {
166 inbuffer = XMARKER (readcharfun)->buffer;
167
168 mpos = marker_position (readcharfun);
169
170 if (mpos > BUF_ZV (inbuffer) - 1)
171 return -1;
172 c = *(unsigned char *) BUF_CHAR_ADDRESS (inbuffer, mpos);
173 if (mpos != BUF_GPT (inbuffer))
174 XMARKER (readcharfun)->bufpos++;
175 else
176 Fset_marker (readcharfun, make_number (mpos + 1),
177 Fmarker_buffer (readcharfun));
178 return c;
179 }
180 if (EQ (readcharfun, Qget_file_char))
181 {
182 c = getc (instream);
183 #ifdef EINTR
184 /* Interrupted reads have been observed while reading over the network */
185 while (c == EOF && ferror (instream) && errno == EINTR)
186 {
187 clearerr (instream);
188 c = getc (instream);
189 }
190 #endif
191 return c;
192 }
193
194 if (STRINGP (readcharfun))
195 {
196 register int c;
197 /* This used to be return of a conditional expression,
198 but that truncated -1 to a char on VMS. */
199 if (read_from_string_index < read_from_string_limit)
200 c = XSTRING (readcharfun)->data[read_from_string_index++];
201 else
202 c = -1;
203 return c;
204 }
205
206 tem = call0 (readcharfun);
207
208 if (NILP (tem))
209 return -1;
210 return XINT (tem);
211 }
212
213 /* Unread the character C in the way appropriate for the stream READCHARFUN.
214 If the stream is a user function, call it with the char as argument. */
215
216 static void
217 unreadchar (readcharfun, c)
218 Lisp_Object readcharfun;
219 int c;
220 {
221 if (c == -1)
222 /* Don't back up the pointer if we're unreading the end-of-input mark,
223 since readchar didn't advance it when we read it. */
224 ;
225 else if (BUFFERP (readcharfun))
226 {
227 if (XBUFFER (readcharfun) == current_buffer)
228 SET_PT (PT - 1);
229 else
230 SET_BUF_PT (XBUFFER (readcharfun), BUF_PT (XBUFFER (readcharfun)) - 1);
231 }
232 else if (MARKERP (readcharfun))
233 XMARKER (readcharfun)->bufpos--;
234 else if (STRINGP (readcharfun))
235 read_from_string_index--;
236 else if (EQ (readcharfun, Qget_file_char))
237 ungetc (c, instream);
238 else
239 call1 (readcharfun, make_number (c));
240 }
241
242 static Lisp_Object read0 (), read1 (), read_list (), read_vector ();
243 \f
244 /* get a character from the tty */
245
246 extern Lisp_Object read_char ();
247
248 /* Read input events until we get one that's acceptable for our purposes.
249
250 If NO_SWITCH_FRAME is non-zero, switch-frame events are stashed
251 until we get a character we like, and then stuffed into
252 unread_switch_frame.
253
254 If ASCII_REQUIRED is non-zero, we check function key events to see
255 if the unmodified version of the symbol has a Qascii_character
256 property, and use that character, if present.
257
258 If ERROR_NONASCII is non-zero, we signal an error if the input we
259 get isn't an ASCII character with modifiers. If it's zero but
260 ASCII_REQUIRED is non-zero, we just re-read until we get an ASCII
261 character. */
262
263 Lisp_Object
264 read_filtered_event (no_switch_frame, ascii_required, error_nonascii)
265 int no_switch_frame, ascii_required, error_nonascii;
266 {
267 #ifdef standalone
268 return make_number (getchar ());
269 #else
270 register Lisp_Object val, delayed_switch_frame;
271
272 delayed_switch_frame = Qnil;
273
274 /* Read until we get an acceptable event. */
275 retry:
276 val = read_char (0, 0, 0, Qnil, 0);
277
278 if (BUFFERP (val))
279 goto retry;
280
281 /* switch-frame events are put off until after the next ASCII
282 character. This is better than signaling an error just because
283 the last characters were typed to a separate minibuffer frame,
284 for example. Eventually, some code which can deal with
285 switch-frame events will read it and process it. */
286 if (no_switch_frame
287 && EVENT_HAS_PARAMETERS (val)
288 && EQ (EVENT_HEAD (val), Qswitch_frame))
289 {
290 delayed_switch_frame = val;
291 goto retry;
292 }
293
294 if (ascii_required)
295 {
296 /* Convert certain symbols to their ASCII equivalents. */
297 if (SYMBOLP (val))
298 {
299 Lisp_Object tem, tem1, tem2;
300 tem = Fget (val, Qevent_symbol_element_mask);
301 if (!NILP (tem))
302 {
303 tem1 = Fget (Fcar (tem), Qascii_character);
304 /* Merge this symbol's modifier bits
305 with the ASCII equivalent of its basic code. */
306 if (!NILP (tem1))
307 XSETFASTINT (val, XINT (tem1) | XINT (Fcar (Fcdr (tem))));
308 }
309 }
310
311 /* If we don't have a character now, deal with it appropriately. */
312 if (!INTEGERP (val))
313 {
314 if (error_nonascii)
315 {
316 Vunread_command_events = Fcons (val, Qnil);
317 error ("Non-character input-event");
318 }
319 else
320 goto retry;
321 }
322 }
323
324 if (! NILP (delayed_switch_frame))
325 unread_switch_frame = delayed_switch_frame;
326
327 return val;
328 #endif
329 }
330
331 DEFUN ("read-char", Fread_char, Sread_char, 0, 0, 0,
332 "Read a character from the command input (keyboard or macro).\n\
333 It is returned as a number.\n\
334 If the user generates an event which is not a character (i.e. a mouse\n\
335 click or function key event), `read-char' signals an error. As an\n\
336 exception, switch-frame events are put off until non-ASCII events can\n\
337 be read.\n\
338 If you want to read non-character events, or ignore them, call\n\
339 `read-event' or `read-char-exclusive' instead.")
340 ()
341 {
342 return read_filtered_event (1, 1, 1);
343 }
344
345 DEFUN ("read-event", Fread_event, Sread_event, 0, 0, 0,
346 "Read an event object from the input stream.")
347 ()
348 {
349 return read_filtered_event (0, 0, 0);
350 }
351
352 DEFUN ("read-char-exclusive", Fread_char_exclusive, Sread_char_exclusive, 0, 0, 0,
353 "Read a character from the command input (keyboard or macro).\n\
354 It is returned as a number. Non-character events are ignored.")
355 ()
356 {
357 return read_filtered_event (1, 1, 0);
358 }
359
360 DEFUN ("get-file-char", Fget_file_char, Sget_file_char, 0, 0, 0,
361 "Don't use this yourself.")
362 ()
363 {
364 register Lisp_Object val;
365 XSETINT (val, getc (instream));
366 return val;
367 }
368 \f
369 static void readevalloop ();
370 static Lisp_Object load_unwind ();
371 static Lisp_Object load_descriptor_unwind ();
372
373 DEFUN ("load", Fload, Sload, 1, 4, 0,
374 "Execute a file of Lisp code named FILE.\n\
375 First try FILE with `.elc' appended, then try with `.el',\n\
376 then try FILE unmodified.\n\
377 This function searches the directories in `load-path'.\n\
378 If optional second arg NOERROR is non-nil,\n\
379 report no error if FILE doesn't exist.\n\
380 Print messages at start and end of loading unless\n\
381 optional third arg NOMESSAGE is non-nil.\n\
382 If optional fourth arg NOSUFFIX is non-nil, don't try adding\n\
383 suffixes `.elc' or `.el' to the specified name FILE.\n\
384 Return t if file exists.")
385 (file, noerror, nomessage, nosuffix)
386 Lisp_Object file, noerror, nomessage, nosuffix;
387 {
388 register FILE *stream;
389 register int fd = -1;
390 register Lisp_Object lispstream;
391 int count = specpdl_ptr - specpdl;
392 Lisp_Object temp;
393 struct gcpro gcpro1;
394 Lisp_Object found;
395 /* 1 means we printed the ".el is newer" message. */
396 int newer = 0;
397 /* 1 means we are loading a compiled file. */
398 int compiled = 0;
399 Lisp_Object handler;
400 #ifdef DOS_NT
401 char *dosmode = "rt";
402 #endif /* DOS_NT */
403
404 CHECK_STRING (file, 0);
405
406 /* If file name is magic, call the handler. */
407 handler = Ffind_file_name_handler (file, Qload);
408 if (!NILP (handler))
409 return call5 (handler, Qload, file, noerror, nomessage, nosuffix);
410
411 /* Do this after the handler to avoid
412 the need to gcpro noerror, nomessage and nosuffix.
413 (Below here, we care only whether they are nil or not.) */
414 file = Fsubstitute_in_file_name (file);
415
416 /* Avoid weird lossage with null string as arg,
417 since it would try to load a directory as a Lisp file */
418 if (XSTRING (file)->size > 0)
419 {
420 GCPRO1 (file);
421 fd = openp (Vload_path, file, !NILP (nosuffix) ? "" : ".elc:.el:",
422 &found, 0);
423 UNGCPRO;
424 }
425
426 if (fd < 0)
427 {
428 if (NILP (noerror))
429 while (1)
430 Fsignal (Qfile_error, Fcons (build_string ("Cannot open load file"),
431 Fcons (file, Qnil)));
432 else
433 return Qnil;
434 }
435
436 if (!bcmp (&(XSTRING (found)->data[XSTRING (found)->size - 4]),
437 ".elc", 4))
438 {
439 struct stat s1, s2;
440 int result;
441
442 compiled = 1;
443
444 #ifdef DOS_NT
445 dosmode = "rb";
446 #endif /* DOS_NT */
447 stat ((char *)XSTRING (found)->data, &s1);
448 XSTRING (found)->data[XSTRING (found)->size - 1] = 0;
449 result = stat ((char *)XSTRING (found)->data, &s2);
450 if (result >= 0 && (unsigned) s1.st_mtime < (unsigned) s2.st_mtime)
451 {
452 /* Make the progress messages mention that source is newer. */
453 newer = 1;
454
455 /* If we won't print another message, mention this anyway. */
456 if (! NILP (nomessage))
457 message ("Source file `%s' newer than byte-compiled file",
458 XSTRING (found)->data);
459 }
460 XSTRING (found)->data[XSTRING (found)->size - 1] = 'c';
461 }
462
463 #ifdef DOS_NT
464 close (fd);
465 stream = fopen ((char *) XSTRING (found)->data, dosmode);
466 #else /* not DOS_NT */
467 stream = fdopen (fd, "r");
468 #endif /* not DOS_NT */
469 if (stream == 0)
470 {
471 close (fd);
472 error ("Failure to create stdio stream for %s", XSTRING (file)->data);
473 }
474
475 if (NILP (nomessage))
476 {
477 if (newer)
478 message ("Loading %s (compiled; note, source file is newer)...",
479 XSTRING (file)->data);
480 else if (compiled)
481 message ("Loading %s (compiled)...", XSTRING (file)->data);
482 else
483 message ("Loading %s...", XSTRING (file)->data);
484 }
485
486 GCPRO1 (file);
487 lispstream = Fcons (Qnil, Qnil);
488 XSETFASTINT (XCONS (lispstream)->car, (EMACS_UINT)stream >> 16);
489 XSETFASTINT (XCONS (lispstream)->cdr, (EMACS_UINT)stream & 0xffff);
490 record_unwind_protect (load_unwind, lispstream);
491 record_unwind_protect (load_descriptor_unwind, load_descriptor_list);
492 specbind (Qload_file_name, found);
493 load_descriptor_list
494 = Fcons (make_number (fileno (stream)), load_descriptor_list);
495 load_in_progress++;
496 readevalloop (Qget_file_char, stream, file, Feval, 0);
497 unbind_to (count, Qnil);
498
499 /* Run any load-hooks for this file. */
500 temp = Fassoc (file, Vafter_load_alist);
501 if (!NILP (temp))
502 Fprogn (Fcdr (temp));
503 UNGCPRO;
504
505 if (saved_doc_string)
506 free (saved_doc_string);
507 saved_doc_string = 0;
508 saved_doc_string_size = 0;
509
510 if (!noninteractive && NILP (nomessage))
511 {
512 if (newer)
513 message ("Loading %s (compiled; note, source file is newer)...done",
514 XSTRING (file)->data);
515 else if (compiled)
516 message ("Loading %s (compiled)...done", XSTRING (file)->data);
517 else
518 message ("Loading %s...done", XSTRING (file)->data);
519 }
520 return Qt;
521 }
522
523 static Lisp_Object
524 load_unwind (stream) /* used as unwind-protect function in load */
525 Lisp_Object stream;
526 {
527 fclose ((FILE *) (XFASTINT (XCONS (stream)->car) << 16
528 | XFASTINT (XCONS (stream)->cdr)));
529 if (--load_in_progress < 0) load_in_progress = 0;
530 return Qnil;
531 }
532
533 static Lisp_Object
534 load_descriptor_unwind (oldlist)
535 Lisp_Object oldlist;
536 {
537 load_descriptor_list = oldlist;
538 return Qnil;
539 }
540
541 /* Close all descriptors in use for Floads.
542 This is used when starting a subprocess. */
543
544 void
545 close_load_descs ()
546 {
547 #ifndef WINDOWSNT
548 Lisp_Object tail;
549 for (tail = load_descriptor_list; !NILP (tail); tail = XCONS (tail)->cdr)
550 close (XFASTINT (XCONS (tail)->car));
551 #endif
552 }
553 \f
554 static int
555 complete_filename_p (pathname)
556 Lisp_Object pathname;
557 {
558 register unsigned char *s = XSTRING (pathname)->data;
559 return (IS_DIRECTORY_SEP (s[0])
560 || (XSTRING (pathname)->size > 2
561 && IS_DEVICE_SEP (s[1]) && IS_DIRECTORY_SEP (s[2]))
562 #ifdef ALTOS
563 || *s == '@'
564 #endif
565 #ifdef VMS
566 || index (s, ':')
567 #endif /* VMS */
568 );
569 }
570
571 /* Search for a file whose name is STR, looking in directories
572 in the Lisp list PATH, and trying suffixes from SUFFIX.
573 SUFFIX is a string containing possible suffixes separated by colons.
574 On success, returns a file descriptor. On failure, returns -1.
575
576 EXEC_ONLY nonzero means don't open the files,
577 just look for one that is executable. In this case,
578 returns 1 on success.
579
580 If STOREPTR is nonzero, it points to a slot where the name of
581 the file actually found should be stored as a Lisp string.
582 Nil is stored there on failure. */
583
584 int
585 openp (path, str, suffix, storeptr, exec_only)
586 Lisp_Object path, str;
587 char *suffix;
588 Lisp_Object *storeptr;
589 int exec_only;
590 {
591 register int fd;
592 int fn_size = 100;
593 char buf[100];
594 register char *fn = buf;
595 int absolute = 0;
596 int want_size;
597 register Lisp_Object filename;
598 struct stat st;
599 struct gcpro gcpro1;
600
601 GCPRO1 (str);
602 if (storeptr)
603 *storeptr = Qnil;
604
605 if (complete_filename_p (str))
606 absolute = 1;
607
608 for (; !NILP (path); path = Fcdr (path))
609 {
610 char *nsuffix;
611
612 filename = Fexpand_file_name (str, Fcar (path));
613 if (!complete_filename_p (filename))
614 /* If there are non-absolute elts in PATH (eg ".") */
615 /* Of course, this could conceivably lose if luser sets
616 default-directory to be something non-absolute... */
617 {
618 filename = Fexpand_file_name (filename, current_buffer->directory);
619 if (!complete_filename_p (filename))
620 /* Give up on this path element! */
621 continue;
622 }
623
624 /* Calculate maximum size of any filename made from
625 this path element/specified file name and any possible suffix. */
626 want_size = strlen (suffix) + XSTRING (filename)->size + 1;
627 if (fn_size < want_size)
628 fn = (char *) alloca (fn_size = 100 + want_size);
629
630 nsuffix = suffix;
631
632 /* Loop over suffixes. */
633 while (1)
634 {
635 char *esuffix = (char *) index (nsuffix, ':');
636 int lsuffix = esuffix ? esuffix - nsuffix : strlen (nsuffix);
637
638 /* Concatenate path element/specified name with the suffix.
639 If the directory starts with /:, remove that. */
640 if (XSTRING (filename)->size > 2
641 && XSTRING (filename)->data[0] == '/'
642 && XSTRING (filename)->data[1] == ':')
643 {
644 strncpy (fn, XSTRING (filename)->data + 2,
645 XSTRING (filename)->size - 2);
646 fn[XSTRING (filename)->size - 2] = 0;
647 }
648 else
649 {
650 strncpy (fn, XSTRING (filename)->data, XSTRING (filename)->size);
651 fn[XSTRING (filename)->size] = 0;
652 }
653
654 if (lsuffix != 0) /* Bug happens on CCI if lsuffix is 0. */
655 strncat (fn, nsuffix, lsuffix);
656
657 /* Ignore file if it's a directory. */
658 if (stat (fn, &st) >= 0
659 && (st.st_mode & S_IFMT) != S_IFDIR)
660 {
661 /* Check that we can access or open it. */
662 if (exec_only)
663 fd = (access (fn, X_OK) == 0) ? 1 : -1;
664 else
665 fd = open (fn, O_RDONLY, 0);
666
667 if (fd >= 0)
668 {
669 /* We succeeded; return this descriptor and filename. */
670 if (storeptr)
671 *storeptr = build_string (fn);
672 UNGCPRO;
673 return fd;
674 }
675 }
676
677 /* Advance to next suffix. */
678 if (esuffix == 0)
679 break;
680 nsuffix += lsuffix + 1;
681 }
682 if (absolute)
683 break;
684 }
685
686 UNGCPRO;
687 return -1;
688 }
689
690 \f
691 /* Merge the list we've accumulated of globals from the current input source
692 into the load_history variable. The details depend on whether
693 the source has an associated file name or not. */
694
695 static void
696 build_load_history (stream, source)
697 FILE *stream;
698 Lisp_Object source;
699 {
700 register Lisp_Object tail, prev, newelt;
701 register Lisp_Object tem, tem2;
702 register int foundit, loading;
703
704 /* Don't bother recording anything for preloaded files. */
705 if (!NILP (Vpurify_flag))
706 return;
707
708 loading = stream || !NARROWED;
709
710 tail = Vload_history;
711 prev = Qnil;
712 foundit = 0;
713 while (!NILP (tail))
714 {
715 tem = Fcar (tail);
716
717 /* Find the feature's previous assoc list... */
718 if (!NILP (Fequal (source, Fcar (tem))))
719 {
720 foundit = 1;
721
722 /* If we're loading, remove it. */
723 if (loading)
724 {
725 if (NILP (prev))
726 Vload_history = Fcdr (tail);
727 else
728 Fsetcdr (prev, Fcdr (tail));
729 }
730
731 /* Otherwise, cons on new symbols that are not already members. */
732 else
733 {
734 tem2 = Vcurrent_load_list;
735
736 while (CONSP (tem2))
737 {
738 newelt = Fcar (tem2);
739
740 if (NILP (Fmemq (newelt, tem)))
741 Fsetcar (tail, Fcons (Fcar (tem),
742 Fcons (newelt, Fcdr (tem))));
743
744 tem2 = Fcdr (tem2);
745 QUIT;
746 }
747 }
748 }
749 else
750 prev = tail;
751 tail = Fcdr (tail);
752 QUIT;
753 }
754
755 /* If we're loading, cons the new assoc onto the front of load-history,
756 the most-recently-loaded position. Also do this if we didn't find
757 an existing member for the current source. */
758 if (loading || !foundit)
759 Vload_history = Fcons (Fnreverse (Vcurrent_load_list),
760 Vload_history);
761 }
762
763 Lisp_Object
764 unreadpure () /* Used as unwind-protect function in readevalloop */
765 {
766 read_pure = 0;
767 return Qnil;
768 }
769
770 static void
771 readevalloop (readcharfun, stream, sourcename, evalfun, printflag)
772 Lisp_Object readcharfun;
773 FILE *stream;
774 Lisp_Object sourcename;
775 Lisp_Object (*evalfun) ();
776 int printflag;
777 {
778 register int c;
779 register Lisp_Object val;
780 int count = specpdl_ptr - specpdl;
781 struct gcpro gcpro1;
782 struct buffer *b = 0;
783
784 if (BUFFERP (readcharfun))
785 b = XBUFFER (readcharfun);
786 else if (MARKERP (readcharfun))
787 b = XMARKER (readcharfun)->buffer;
788
789 specbind (Qstandard_input, readcharfun);
790 specbind (Qcurrent_load_list, Qnil);
791
792 GCPRO1 (sourcename);
793
794 LOADHIST_ATTACH (sourcename);
795
796 while (1)
797 {
798 if (b != 0 && NILP (b->name))
799 error ("Reading from killed buffer");
800
801 instream = stream;
802 c = READCHAR;
803 if (c == ';')
804 {
805 while ((c = READCHAR) != '\n' && c != -1);
806 continue;
807 }
808 if (c < 0) break;
809
810 /* Ignore whitespace here, so we can detect eof. */
811 if (c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r')
812 continue;
813
814 if (!NILP (Vpurify_flag) && c == '(')
815 {
816 int count1 = specpdl_ptr - specpdl;
817 record_unwind_protect (unreadpure, Qnil);
818 val = read_list (-1, readcharfun);
819 unbind_to (count1, Qnil);
820 }
821 else
822 {
823 UNREAD (c);
824 read_objects = Qnil;
825 if (NILP (Vload_read_function))
826 val = read0 (readcharfun);
827 else
828 val = call1 (Vload_read_function, readcharfun);
829 }
830
831 val = (*evalfun) (val);
832 if (printflag)
833 {
834 Vvalues = Fcons (val, Vvalues);
835 if (EQ (Vstandard_output, Qt))
836 Fprin1 (val, Qnil);
837 else
838 Fprint (val, Qnil);
839 }
840 }
841
842 build_load_history (stream, sourcename);
843 UNGCPRO;
844
845 unbind_to (count, Qnil);
846 }
847
848 #ifndef standalone
849
850 DEFUN ("eval-buffer", Feval_buffer, Seval_buffer, 0, 2, "",
851 "Execute the current buffer as Lisp code.\n\
852 Programs can pass two arguments, BUFFER and PRINTFLAG.\n\
853 BUFFER is the buffer to evaluate (nil means use current buffer).\n\
854 PRINTFLAG controls printing of output:\n\
855 nil means discard it; anything else is stream for print.\n\
856 \n\
857 If there is no error, point does not move. If there is an error,\n\
858 point remains at the end of the last character read from the buffer.")
859 (buffer, printflag)
860 Lisp_Object buffer, printflag;
861 {
862 int count = specpdl_ptr - specpdl;
863 Lisp_Object tem, buf;
864
865 if (NILP (buffer))
866 buf = Fcurrent_buffer ();
867 else
868 buf = Fget_buffer (buffer);
869 if (NILP (buf))
870 error ("No such buffer.");
871
872 if (NILP (printflag))
873 tem = Qsymbolp;
874 else
875 tem = printflag;
876 specbind (Qstandard_output, tem);
877 record_unwind_protect (save_excursion_restore, save_excursion_save ());
878 BUF_SET_PT (XBUFFER (buf), BUF_BEGV (XBUFFER (buf)));
879 readevalloop (buf, 0, XBUFFER (buf)->filename, Feval, !NILP (printflag));
880 unbind_to (count, Qnil);
881
882 return Qnil;
883 }
884
885 #if 0
886 DEFUN ("eval-current-buffer", Feval_current_buffer, Seval_current_buffer, 0, 1, "",
887 "Execute the current buffer as Lisp code.\n\
888 Programs can pass argument PRINTFLAG which controls printing of output:\n\
889 nil means discard it; anything else is stream for print.\n\
890 \n\
891 If there is no error, point does not move. If there is an error,\n\
892 point remains at the end of the last character read from the buffer.")
893 (printflag)
894 Lisp_Object printflag;
895 {
896 int count = specpdl_ptr - specpdl;
897 Lisp_Object tem, cbuf;
898
899 cbuf = Fcurrent_buffer ()
900
901 if (NILP (printflag))
902 tem = Qsymbolp;
903 else
904 tem = printflag;
905 specbind (Qstandard_output, tem);
906 record_unwind_protect (save_excursion_restore, save_excursion_save ());
907 SET_PT (BEGV);
908 readevalloop (cbuf, 0, XBUFFER (cbuf)->filename, Feval, !NILP (printflag));
909 return unbind_to (count, Qnil);
910 }
911 #endif
912
913 DEFUN ("eval-region", Feval_region, Seval_region, 2, 3, "r",
914 "Execute the region as Lisp code.\n\
915 When called from programs, expects two arguments,\n\
916 giving starting and ending indices in the current buffer\n\
917 of the text to be executed.\n\
918 Programs can pass third argument PRINTFLAG which controls output:\n\
919 nil means discard it; anything else is stream for printing it.\n\
920 \n\
921 If there is no error, point does not move. If there is an error,\n\
922 point remains at the end of the last character read from the buffer.")
923 (start, end, printflag)
924 Lisp_Object start, end, printflag;
925 {
926 int count = specpdl_ptr - specpdl;
927 Lisp_Object tem, cbuf;
928
929 cbuf = Fcurrent_buffer ();
930
931 if (NILP (printflag))
932 tem = Qsymbolp;
933 else
934 tem = printflag;
935 specbind (Qstandard_output, tem);
936
937 if (NILP (printflag))
938 record_unwind_protect (save_excursion_restore, save_excursion_save ());
939 record_unwind_protect (save_restriction_restore, save_restriction_save ());
940
941 /* This both uses start and checks its type. */
942 Fgoto_char (start);
943 Fnarrow_to_region (make_number (BEGV), end);
944 readevalloop (cbuf, 0, XBUFFER (cbuf)->filename, Feval, !NILP (printflag));
945
946 return unbind_to (count, Qnil);
947 }
948
949 #endif /* standalone */
950 \f
951 DEFUN ("read", Fread, Sread, 0, 1, 0,
952 "Read one Lisp expression as text from STREAM, return as Lisp object.\n\
953 If STREAM is nil, use the value of `standard-input' (which see).\n\
954 STREAM or the value of `standard-input' may be:\n\
955 a buffer (read from point and advance it)\n\
956 a marker (read from where it points and advance it)\n\
957 a function (call it with no arguments for each character,\n\
958 call it with a char as argument to push a char back)\n\
959 a string (takes text from string, starting at the beginning)\n\
960 t (read text line using minibuffer and use it).")
961 (stream)
962 Lisp_Object stream;
963 {
964 extern Lisp_Object Fread_minibuffer ();
965
966 if (NILP (stream))
967 stream = Vstandard_input;
968 if (EQ (stream, Qt))
969 stream = Qread_char;
970
971 new_backquote_flag = 0;
972 read_objects = Qnil;
973
974 #ifndef standalone
975 if (EQ (stream, Qread_char))
976 return Fread_minibuffer (build_string ("Lisp expression: "), Qnil);
977 #endif
978
979 if (STRINGP (stream))
980 return Fcar (Fread_from_string (stream, Qnil, Qnil));
981
982 return read0 (stream);
983 }
984
985 DEFUN ("read-from-string", Fread_from_string, Sread_from_string, 1, 3, 0,
986 "Read one Lisp expression which is represented as text by STRING.\n\
987 Returns a cons: (OBJECT-READ . FINAL-STRING-INDEX).\n\
988 START and END optionally delimit a substring of STRING from which to read;\n\
989 they default to 0 and (length STRING) respectively.")
990 (string, start, end)
991 Lisp_Object string, start, end;
992 {
993 int startval, endval;
994 Lisp_Object tem;
995
996 CHECK_STRING (string,0);
997
998 if (NILP (end))
999 endval = XSTRING (string)->size;
1000 else
1001 { CHECK_NUMBER (end,2);
1002 endval = XINT (end);
1003 if (endval < 0 || endval > XSTRING (string)->size)
1004 args_out_of_range (string, end);
1005 }
1006
1007 if (NILP (start))
1008 startval = 0;
1009 else
1010 { CHECK_NUMBER (start,1);
1011 startval = XINT (start);
1012 if (startval < 0 || startval > endval)
1013 args_out_of_range (string, start);
1014 }
1015
1016 read_from_string_index = startval;
1017 read_from_string_limit = endval;
1018
1019 new_backquote_flag = 0;
1020 read_objects = Qnil;
1021
1022 tem = read0 (string);
1023 return Fcons (tem, make_number (read_from_string_index));
1024 }
1025 \f
1026 /* Use this for recursive reads, in contexts where internal tokens
1027 are not allowed. */
1028 static Lisp_Object
1029 read0 (readcharfun)
1030 Lisp_Object readcharfun;
1031 {
1032 register Lisp_Object val;
1033 char c;
1034
1035 val = read1 (readcharfun, &c, 0);
1036 if (c)
1037 Fsignal (Qinvalid_read_syntax, Fcons (make_string (&c, 1), Qnil));
1038
1039 return val;
1040 }
1041 \f
1042 static int read_buffer_size;
1043 static char *read_buffer;
1044
1045 static int
1046 read_escape (readcharfun)
1047 Lisp_Object readcharfun;
1048 {
1049 register int c = READCHAR;
1050 switch (c)
1051 {
1052 case -1:
1053 error ("End of file");
1054
1055 case 'a':
1056 return '\007';
1057 case 'b':
1058 return '\b';
1059 case 'd':
1060 return 0177;
1061 case 'e':
1062 return 033;
1063 case 'f':
1064 return '\f';
1065 case 'n':
1066 return '\n';
1067 case 'r':
1068 return '\r';
1069 case 't':
1070 return '\t';
1071 case 'v':
1072 return '\v';
1073 case '\n':
1074 return -1;
1075
1076 case 'M':
1077 c = READCHAR;
1078 if (c != '-')
1079 error ("Invalid escape character syntax");
1080 c = READCHAR;
1081 if (c == '\\')
1082 c = read_escape (readcharfun);
1083 return c | meta_modifier;
1084
1085 case 'S':
1086 c = READCHAR;
1087 if (c != '-')
1088 error ("Invalid escape character syntax");
1089 c = READCHAR;
1090 if (c == '\\')
1091 c = read_escape (readcharfun);
1092 return c | shift_modifier;
1093
1094 case 'H':
1095 c = READCHAR;
1096 if (c != '-')
1097 error ("Invalid escape character syntax");
1098 c = READCHAR;
1099 if (c == '\\')
1100 c = read_escape (readcharfun);
1101 return c | hyper_modifier;
1102
1103 case 'A':
1104 c = READCHAR;
1105 if (c != '-')
1106 error ("Invalid escape character syntax");
1107 c = READCHAR;
1108 if (c == '\\')
1109 c = read_escape (readcharfun);
1110 return c | alt_modifier;
1111
1112 case 's':
1113 c = READCHAR;
1114 if (c != '-')
1115 error ("Invalid escape character syntax");
1116 c = READCHAR;
1117 if (c == '\\')
1118 c = read_escape (readcharfun);
1119 return c | super_modifier;
1120
1121 case 'C':
1122 c = READCHAR;
1123 if (c != '-')
1124 error ("Invalid escape character syntax");
1125 case '^':
1126 c = READCHAR;
1127 if (c == '\\')
1128 c = read_escape (readcharfun);
1129 if ((c & 0177) == '?')
1130 return 0177 | c;
1131 /* ASCII control chars are made from letters (both cases),
1132 as well as the non-letters within 0100...0137. */
1133 else if ((c & 0137) >= 0101 && (c & 0137) <= 0132)
1134 return (c & (037 | ~0177));
1135 else if ((c & 0177) >= 0100 && (c & 0177) <= 0137)
1136 return (c & (037 | ~0177));
1137 else
1138 return c | ctrl_modifier;
1139
1140 case '0':
1141 case '1':
1142 case '2':
1143 case '3':
1144 case '4':
1145 case '5':
1146 case '6':
1147 case '7':
1148 /* An octal escape, as in ANSI C. */
1149 {
1150 register int i = c - '0';
1151 register int count = 0;
1152 while (++count < 3)
1153 {
1154 if ((c = READCHAR) >= '0' && c <= '7')
1155 {
1156 i *= 8;
1157 i += c - '0';
1158 }
1159 else
1160 {
1161 UNREAD (c);
1162 break;
1163 }
1164 }
1165 return i;
1166 }
1167
1168 case 'x':
1169 /* A hex escape, as in ANSI C. */
1170 {
1171 int i = 0;
1172 while (1)
1173 {
1174 c = READCHAR;
1175 if (c >= '0' && c <= '9')
1176 {
1177 i *= 16;
1178 i += c - '0';
1179 }
1180 else if ((c >= 'a' && c <= 'f')
1181 || (c >= 'A' && c <= 'F'))
1182 {
1183 i *= 16;
1184 if (c >= 'a' && c <= 'f')
1185 i += c - 'a' + 10;
1186 else
1187 i += c - 'A' + 10;
1188 }
1189 else
1190 {
1191 UNREAD (c);
1192 break;
1193 }
1194 }
1195 return i;
1196 }
1197
1198 default:
1199 return c;
1200 }
1201 }
1202
1203 /* If the next token is ')' or ']' or '.', we store that character
1204 in *PCH and the return value is not interesting. Else, we store
1205 zero in *PCH and we read and return one lisp object.
1206
1207 FIRST_IN_LIST is nonzero if this is the first element of a list. */
1208
1209 static Lisp_Object
1210 read1 (readcharfun, pch, first_in_list)
1211 register Lisp_Object readcharfun;
1212 char *pch;
1213 int first_in_list;
1214 {
1215 register int c;
1216 int uninterned_symbol = 0;
1217
1218 *pch = 0;
1219
1220 retry:
1221
1222 c = READCHAR;
1223 if (c < 0) return Fsignal (Qend_of_file, Qnil);
1224
1225 switch (c)
1226 {
1227 case '(':
1228 return read_list (0, readcharfun);
1229
1230 case '[':
1231 return read_vector (readcharfun);
1232
1233 case ')':
1234 case ']':
1235 {
1236 *pch = c;
1237 return Qnil;
1238 }
1239
1240 case '#':
1241 c = READCHAR;
1242 if (c == '^')
1243 {
1244 c = READCHAR;
1245 if (c == '[')
1246 {
1247 Lisp_Object tmp;
1248 tmp = read_vector (readcharfun);
1249 if (XVECTOR (tmp)->size < CHAR_TABLE_STANDARD_SLOTS
1250 || XVECTOR (tmp)->size > CHAR_TABLE_STANDARD_SLOTS + 10)
1251 error ("Invalid size char-table");
1252 XSETCHAR_TABLE (tmp, XCHAR_TABLE (tmp));
1253 return tmp;
1254 }
1255 Fsignal (Qinvalid_read_syntax, Fcons (make_string ("#^", 2), Qnil));
1256 }
1257 if (c == '&')
1258 {
1259 Lisp_Object length;
1260 length = read1 (readcharfun, pch, first_in_list);
1261 c = READCHAR;
1262 if (c == '"')
1263 {
1264 Lisp_Object tmp, val;
1265 int size_in_chars = ((XFASTINT (length) + BITS_PER_CHAR)
1266 / BITS_PER_CHAR);
1267
1268 UNREAD (c);
1269 tmp = read1 (readcharfun, pch, first_in_list);
1270 if (size_in_chars != XSTRING (tmp)->size)
1271 Fsignal (Qinvalid_read_syntax,
1272 Fcons (make_string ("#&...", 5), Qnil));
1273
1274 val = Fmake_bool_vector (length, Qnil);
1275 bcopy (XSTRING (tmp)->data, XBOOL_VECTOR (val)->data,
1276 size_in_chars);
1277 return val;
1278 }
1279 Fsignal (Qinvalid_read_syntax, Fcons (make_string ("#&...", 5),
1280 Qnil));
1281 }
1282 if (c == '[')
1283 {
1284 /* Accept compiled functions at read-time so that we don't have to
1285 build them using function calls. */
1286 Lisp_Object tmp;
1287 tmp = read_vector (readcharfun);
1288 return Fmake_byte_code (XVECTOR (tmp)->size,
1289 XVECTOR (tmp)->contents);
1290 }
1291 #ifdef USE_TEXT_PROPERTIES
1292 if (c == '(')
1293 {
1294 Lisp_Object tmp;
1295 struct gcpro gcpro1;
1296 char ch;
1297
1298 /* Read the string itself. */
1299 tmp = read1 (readcharfun, &ch, 0);
1300 if (ch != 0 || !STRINGP (tmp))
1301 Fsignal (Qinvalid_read_syntax, Fcons (make_string ("#", 1), Qnil));
1302 GCPRO1 (tmp);
1303 /* Read the intervals and their properties. */
1304 while (1)
1305 {
1306 Lisp_Object beg, end, plist;
1307
1308 beg = read1 (readcharfun, &ch, 0);
1309 if (ch == ')')
1310 break;
1311 if (ch == 0)
1312 end = read1 (readcharfun, &ch, 0);
1313 if (ch == 0)
1314 plist = read1 (readcharfun, &ch, 0);
1315 if (ch)
1316 Fsignal (Qinvalid_read_syntax,
1317 Fcons (build_string ("invalid string property list"),
1318 Qnil));
1319 Fset_text_properties (beg, end, plist, tmp);
1320 }
1321 UNGCPRO;
1322 return tmp;
1323 }
1324 #endif
1325 /* #@NUMBER is used to skip NUMBER following characters.
1326 That's used in .elc files to skip over doc strings
1327 and function definitions. */
1328 if (c == '@')
1329 {
1330 int i, nskip = 0;
1331
1332 /* Read a decimal integer. */
1333 while ((c = READCHAR) >= 0
1334 && c >= '0' && c <= '9')
1335 {
1336 nskip *= 10;
1337 nskip += c - '0';
1338 }
1339 if (c >= 0)
1340 UNREAD (c);
1341
1342 #ifndef DOS_NT /* I don't know if filepos works right on MSDOS and Windoze. */
1343 if (load_force_doc_strings && EQ (readcharfun, Qget_file_char))
1344 {
1345 /* If we are supposed to force doc strings into core right now,
1346 record the last string that we skipped,
1347 and record where in the file it comes from. */
1348 if (saved_doc_string_size == 0)
1349 {
1350 saved_doc_string_size = nskip + 100;
1351 saved_doc_string = (char *) xmalloc (saved_doc_string_size);
1352 }
1353 if (nskip > saved_doc_string_size)
1354 {
1355 saved_doc_string_size = nskip + 100;
1356 saved_doc_string = (char *) xrealloc (saved_doc_string,
1357 saved_doc_string_size);
1358 }
1359
1360 saved_doc_string_position = ftell (instream);
1361
1362 /* Copy that many characters into saved_doc_string. */
1363 for (i = 0; i < nskip && c >= 0; i++)
1364 saved_doc_string[i] = c = READCHAR;
1365
1366 saved_doc_string_length = i;
1367 }
1368 else
1369 #endif /* not DOS_NT */
1370 {
1371 /* Skip that many characters. */
1372 for (i = 0; i < nskip && c >= 0; i++)
1373 c = READCHAR;
1374 }
1375 goto retry;
1376 }
1377 if (c == '$')
1378 return Vload_file_name;
1379 if (c == '\'')
1380 return Fcons (Qfunction, Fcons (read0 (readcharfun), Qnil));
1381 /* #:foo is the uninterned symbol named foo. */
1382 if (c == ':')
1383 {
1384 uninterned_symbol = 1;
1385 c = READCHAR;
1386 goto default_label;
1387 }
1388 /* Reader forms that can reuse previously read objects. */
1389 if (c >= '0' && c <= '9')
1390 {
1391 int n = 0;
1392 Lisp_Object tem;
1393
1394 /* Read a non-negative integer. */
1395 while (c >= '0' && c <= '9')
1396 {
1397 n *= 10;
1398 n += c - '0';
1399 c = READCHAR;
1400 }
1401 /* #n=object returns object, but associates it with n for #n#. */
1402 if (c == '=')
1403 {
1404 tem = read0 (readcharfun);
1405 read_objects = Fcons (Fcons (make_number (n), tem), read_objects);
1406 return tem;
1407 }
1408 /* #n# returns a previously read object. */
1409 if (c == '#')
1410 {
1411 tem = Fassq (make_number (n), read_objects);
1412 if (CONSP (tem))
1413 return XCDR (tem);
1414 /* Fall through to error message. */
1415 }
1416 /* Fall through to error message. */
1417 }
1418
1419 UNREAD (c);
1420 Fsignal (Qinvalid_read_syntax, Fcons (make_string ("#", 1), Qnil));
1421
1422 case ';':
1423 while ((c = READCHAR) >= 0 && c != '\n');
1424 goto retry;
1425
1426 case '\'':
1427 {
1428 return Fcons (Qquote, Fcons (read0 (readcharfun), Qnil));
1429 }
1430
1431 case '`':
1432 if (first_in_list)
1433 goto default_label;
1434 else
1435 {
1436 Lisp_Object value;
1437
1438 new_backquote_flag = 1;
1439 value = read0 (readcharfun);
1440 new_backquote_flag = 0;
1441
1442 return Fcons (Qbackquote, Fcons (value, Qnil));
1443 }
1444
1445 case ',':
1446 if (new_backquote_flag)
1447 {
1448 Lisp_Object comma_type = Qnil;
1449 Lisp_Object value;
1450 int ch = READCHAR;
1451
1452 if (ch == '@')
1453 comma_type = Qcomma_at;
1454 else if (ch == '.')
1455 comma_type = Qcomma_dot;
1456 else
1457 {
1458 if (ch >= 0) UNREAD (ch);
1459 comma_type = Qcomma;
1460 }
1461
1462 new_backquote_flag = 0;
1463 value = read0 (readcharfun);
1464 new_backquote_flag = 1;
1465 return Fcons (comma_type, Fcons (value, Qnil));
1466 }
1467 else
1468 goto default_label;
1469
1470 case '?':
1471 {
1472 register Lisp_Object val;
1473
1474 c = READCHAR;
1475 if (c < 0) return Fsignal (Qend_of_file, Qnil);
1476
1477 if (c == '\\')
1478 XSETINT (val, read_escape (readcharfun));
1479 else
1480 XSETINT (val, c);
1481
1482 return val;
1483 }
1484
1485 case '\"':
1486 {
1487 register char *p = read_buffer;
1488 register char *end = read_buffer + read_buffer_size;
1489 register int c;
1490 int cancel = 0;
1491
1492 while ((c = READCHAR) >= 0
1493 && c != '\"')
1494 {
1495 if (p == end)
1496 {
1497 char *new = (char *) xrealloc (read_buffer, read_buffer_size *= 2);
1498 p += new - read_buffer;
1499 read_buffer += new - read_buffer;
1500 end = read_buffer + read_buffer_size;
1501 }
1502 if (c == '\\')
1503 c = read_escape (readcharfun);
1504 /* c is -1 if \ newline has just been seen */
1505 if (c == -1)
1506 {
1507 if (p == read_buffer)
1508 cancel = 1;
1509 }
1510 else
1511 {
1512 /* Allow `\C- ' and `\C-?'. */
1513 if (c == (CHAR_CTL | ' '))
1514 c = 0;
1515 else if (c == (CHAR_CTL | '?'))
1516 c = 127;
1517
1518 if (c & CHAR_META)
1519 /* Move the meta bit to the right place for a string. */
1520 c = (c & ~CHAR_META) | 0x80;
1521 if (c & ~0xff)
1522 error ("Invalid modifier in string");
1523 *p++ = c;
1524 }
1525 }
1526 if (c < 0) return Fsignal (Qend_of_file, Qnil);
1527
1528 /* If purifying, and string starts with \ newline,
1529 return zero instead. This is for doc strings
1530 that we are really going to find in etc/DOC.nn.nn */
1531 if (!NILP (Vpurify_flag) && NILP (Vdoc_file_name) && cancel)
1532 return make_number (0);
1533
1534 if (read_pure)
1535 return make_pure_string (read_buffer, p - read_buffer);
1536 else
1537 return make_string (read_buffer, p - read_buffer);
1538 }
1539
1540 case '.':
1541 {
1542 #ifdef LISP_FLOAT_TYPE
1543 /* If a period is followed by a number, then we should read it
1544 as a floating point number. Otherwise, it denotes a dotted
1545 pair. */
1546 int next_char = READCHAR;
1547 UNREAD (next_char);
1548
1549 if (! (next_char >= '0' && next_char <= '9'))
1550 #endif
1551 {
1552 *pch = c;
1553 return Qnil;
1554 }
1555
1556 /* Otherwise, we fall through! Note that the atom-reading loop
1557 below will now loop at least once, assuring that we will not
1558 try to UNREAD two characters in a row. */
1559 }
1560 default:
1561 default_label:
1562 if (c <= 040) goto retry;
1563 {
1564 register char *p = read_buffer;
1565 int quoted = 0;
1566
1567 {
1568 register char *end = read_buffer + read_buffer_size;
1569
1570 while (c > 040 &&
1571 !(c == '\"' || c == '\'' || c == ';' || c == '?'
1572 || c == '(' || c == ')'
1573 #ifndef LISP_FLOAT_TYPE
1574 /* If we have floating-point support, then we need
1575 to allow <digits><dot><digits>. */
1576 || c =='.'
1577 #endif /* not LISP_FLOAT_TYPE */
1578 || c == '[' || c == ']' || c == '#'
1579 ))
1580 {
1581 if (p == end)
1582 {
1583 register char *new = (char *) xrealloc (read_buffer, read_buffer_size *= 2);
1584 p += new - read_buffer;
1585 read_buffer += new - read_buffer;
1586 end = read_buffer + read_buffer_size;
1587 }
1588 if (c == '\\')
1589 {
1590 c = READCHAR;
1591 quoted = 1;
1592 }
1593 *p++ = c;
1594 c = READCHAR;
1595 }
1596
1597 if (p == end)
1598 {
1599 char *new = (char *) xrealloc (read_buffer, read_buffer_size *= 2);
1600 p += new - read_buffer;
1601 read_buffer += new - read_buffer;
1602 /* end = read_buffer + read_buffer_size; */
1603 }
1604 *p = 0;
1605 if (c >= 0)
1606 UNREAD (c);
1607 }
1608
1609 if (!quoted && !uninterned_symbol)
1610 {
1611 register char *p1;
1612 register Lisp_Object val;
1613 p1 = read_buffer;
1614 if (*p1 == '+' || *p1 == '-') p1++;
1615 /* Is it an integer? */
1616 if (p1 != p)
1617 {
1618 while (p1 != p && (c = *p1) >= '0' && c <= '9') p1++;
1619 #ifdef LISP_FLOAT_TYPE
1620 /* Integers can have trailing decimal points. */
1621 if (p1 > read_buffer && p1 < p && *p1 == '.') p1++;
1622 #endif
1623 if (p1 == p)
1624 /* It is an integer. */
1625 {
1626 #ifdef LISP_FLOAT_TYPE
1627 if (p1[-1] == '.')
1628 p1[-1] = '\0';
1629 #endif
1630 if (sizeof (int) == sizeof (EMACS_INT))
1631 XSETINT (val, atoi (read_buffer));
1632 else if (sizeof (long) == sizeof (EMACS_INT))
1633 XSETINT (val, atol (read_buffer));
1634 else
1635 abort ();
1636 return val;
1637 }
1638 }
1639 #ifdef LISP_FLOAT_TYPE
1640 if (isfloat_string (read_buffer))
1641 return make_float (atof (read_buffer));
1642 #endif
1643 }
1644
1645 if (uninterned_symbol)
1646 return make_symbol (read_buffer);
1647 else
1648 return intern (read_buffer);
1649 }
1650 }
1651 }
1652 \f
1653 #ifdef LISP_FLOAT_TYPE
1654
1655 #define LEAD_INT 1
1656 #define DOT_CHAR 2
1657 #define TRAIL_INT 4
1658 #define E_CHAR 8
1659 #define EXP_INT 16
1660
1661 int
1662 isfloat_string (cp)
1663 register char *cp;
1664 {
1665 register state;
1666
1667 state = 0;
1668 if (*cp == '+' || *cp == '-')
1669 cp++;
1670
1671 if (*cp >= '0' && *cp <= '9')
1672 {
1673 state |= LEAD_INT;
1674 while (*cp >= '0' && *cp <= '9')
1675 cp++;
1676 }
1677 if (*cp == '.')
1678 {
1679 state |= DOT_CHAR;
1680 cp++;
1681 }
1682 if (*cp >= '0' && *cp <= '9')
1683 {
1684 state |= TRAIL_INT;
1685 while (*cp >= '0' && *cp <= '9')
1686 cp++;
1687 }
1688 if (*cp == 'e' || *cp == 'E')
1689 {
1690 state |= E_CHAR;
1691 cp++;
1692 if (*cp == '+' || *cp == '-')
1693 cp++;
1694 }
1695
1696 if (*cp >= '0' && *cp <= '9')
1697 {
1698 state |= EXP_INT;
1699 while (*cp >= '0' && *cp <= '9')
1700 cp++;
1701 }
1702 return (((*cp == 0) || (*cp == ' ') || (*cp == '\t') || (*cp == '\n') || (*cp == '\r') || (*cp == '\f'))
1703 && (state == (LEAD_INT|DOT_CHAR|TRAIL_INT)
1704 || state == (DOT_CHAR|TRAIL_INT)
1705 || state == (LEAD_INT|E_CHAR|EXP_INT)
1706 || state == (LEAD_INT|DOT_CHAR|TRAIL_INT|E_CHAR|EXP_INT)
1707 || state == (DOT_CHAR|TRAIL_INT|E_CHAR|EXP_INT)));
1708 }
1709 #endif /* LISP_FLOAT_TYPE */
1710 \f
1711 static Lisp_Object
1712 read_vector (readcharfun)
1713 Lisp_Object readcharfun;
1714 {
1715 register int i;
1716 register int size;
1717 register Lisp_Object *ptr;
1718 register Lisp_Object tem, vector;
1719 register struct Lisp_Cons *otem;
1720 Lisp_Object len;
1721
1722 tem = read_list (1, readcharfun);
1723 len = Flength (tem);
1724 vector = (read_pure ? make_pure_vector (XINT (len)) : Fmake_vector (len, Qnil));
1725
1726
1727 size = XVECTOR (vector)->size;
1728 ptr = XVECTOR (vector)->contents;
1729 for (i = 0; i < size; i++)
1730 {
1731 ptr[i] = read_pure ? Fpurecopy (Fcar (tem)) : Fcar (tem);
1732 otem = XCONS (tem);
1733 tem = Fcdr (tem);
1734 free_cons (otem);
1735 }
1736 return vector;
1737 }
1738
1739 /* flag = 1 means check for ] to terminate rather than ) and .
1740 flag = -1 means check for starting with defun
1741 and make structure pure. */
1742
1743 static Lisp_Object
1744 read_list (flag, readcharfun)
1745 int flag;
1746 register Lisp_Object readcharfun;
1747 {
1748 /* -1 means check next element for defun,
1749 0 means don't check,
1750 1 means already checked and found defun. */
1751 int defunflag = flag < 0 ? -1 : 0;
1752 Lisp_Object val, tail;
1753 register Lisp_Object elt, tem;
1754 struct gcpro gcpro1, gcpro2;
1755 /* 0 is the normal case.
1756 1 means this list is a doc reference; replace it with the number 0.
1757 2 means this list is a doc reference; replace it with the doc string. */
1758 int doc_reference = 0;
1759
1760 /* Initialize this to 1 if we are reading a list. */
1761 int first_in_list = flag <= 0;
1762
1763 val = Qnil;
1764 tail = Qnil;
1765
1766 while (1)
1767 {
1768 char ch;
1769 GCPRO2 (val, tail);
1770 elt = read1 (readcharfun, &ch, first_in_list);
1771 UNGCPRO;
1772
1773 first_in_list = 0;
1774
1775 /* While building, if the list starts with #$, treat it specially. */
1776 if (EQ (elt, Vload_file_name)
1777 && !NILP (Vpurify_flag))
1778 {
1779 if (NILP (Vdoc_file_name))
1780 /* We have not yet called Snarf-documentation, so assume
1781 this file is described in the DOC-MM.NN file
1782 and Snarf-documentation will fill in the right value later.
1783 For now, replace the whole list with 0. */
1784 doc_reference = 1;
1785 else
1786 /* We have already called Snarf-documentation, so make a relative
1787 file name for this file, so it can be found properly
1788 in the installed Lisp directory.
1789 We don't use Fexpand_file_name because that would make
1790 the directory absolute now. */
1791 elt = concat2 (build_string ("../lisp/"),
1792 Ffile_name_nondirectory (elt));
1793 }
1794 else if (EQ (elt, Vload_file_name)
1795 && load_force_doc_strings)
1796 doc_reference = 2;
1797
1798 if (ch)
1799 {
1800 if (flag > 0)
1801 {
1802 if (ch == ']')
1803 return val;
1804 Fsignal (Qinvalid_read_syntax,
1805 Fcons (make_string (") or . in a vector", 18), Qnil));
1806 }
1807 if (ch == ')')
1808 return val;
1809 if (ch == '.')
1810 {
1811 GCPRO2 (val, tail);
1812 if (!NILP (tail))
1813 XCONS (tail)->cdr = read0 (readcharfun);
1814 else
1815 val = read0 (readcharfun);
1816 read1 (readcharfun, &ch, 0);
1817 UNGCPRO;
1818 if (ch == ')')
1819 {
1820 if (doc_reference == 1)
1821 return make_number (0);
1822 if (doc_reference == 2)
1823 {
1824 /* Get a doc string from the file we are loading.
1825 If it's in saved_doc_string, get it from there. */
1826 int pos = XINT (XCONS (val)->cdr);
1827 if (pos >= saved_doc_string_position
1828 && pos < (saved_doc_string_position
1829 + saved_doc_string_length))
1830 {
1831 int start = pos - saved_doc_string_position;
1832 int from, to;
1833
1834 /* Process quoting with ^A,
1835 and find the end of the string,
1836 which is marked with ^_ (037). */
1837 for (from = start, to = start;
1838 saved_doc_string[from] != 037;)
1839 {
1840 int c = saved_doc_string[from++];
1841 if (c == 1)
1842 {
1843 c = saved_doc_string[from++];
1844 if (c == 1)
1845 saved_doc_string[to++] = c;
1846 else if (c == '0')
1847 saved_doc_string[to++] = 0;
1848 else if (c == '_')
1849 saved_doc_string[to++] = 037;
1850 }
1851 else
1852 saved_doc_string[to++] = c;
1853 }
1854
1855 return make_string (saved_doc_string + start,
1856 to - start);
1857 }
1858 else
1859 return read_doc_string (val);
1860 }
1861
1862 return val;
1863 }
1864 return Fsignal (Qinvalid_read_syntax, Fcons (make_string (". in wrong context", 18), Qnil));
1865 }
1866 return Fsignal (Qinvalid_read_syntax, Fcons (make_string ("] in a list", 11), Qnil));
1867 }
1868 tem = (read_pure && flag <= 0
1869 ? pure_cons (elt, Qnil)
1870 : Fcons (elt, Qnil));
1871 if (!NILP (tail))
1872 XCONS (tail)->cdr = tem;
1873 else
1874 val = tem;
1875 tail = tem;
1876 if (defunflag < 0)
1877 defunflag = EQ (elt, Qdefun);
1878 else if (defunflag > 0)
1879 read_pure = 1;
1880 }
1881 }
1882 \f
1883 Lisp_Object Vobarray;
1884 Lisp_Object initial_obarray;
1885
1886 /* oblookup stores the bucket number here, for the sake of Funintern. */
1887
1888 int oblookup_last_bucket_number;
1889
1890 static int hash_string ();
1891 Lisp_Object oblookup ();
1892
1893 /* Get an error if OBARRAY is not an obarray.
1894 If it is one, return it. */
1895
1896 Lisp_Object
1897 check_obarray (obarray)
1898 Lisp_Object obarray;
1899 {
1900 while (!VECTORP (obarray) || XVECTOR (obarray)->size == 0)
1901 {
1902 /* If Vobarray is now invalid, force it to be valid. */
1903 if (EQ (Vobarray, obarray)) Vobarray = initial_obarray;
1904
1905 obarray = wrong_type_argument (Qvectorp, obarray);
1906 }
1907 return obarray;
1908 }
1909
1910 /* Intern the C string STR: return a symbol with that name,
1911 interned in the current obarray. */
1912
1913 Lisp_Object
1914 intern (str)
1915 char *str;
1916 {
1917 Lisp_Object tem;
1918 int len = strlen (str);
1919 Lisp_Object obarray;
1920
1921 obarray = Vobarray;
1922 if (!VECTORP (obarray) || XVECTOR (obarray)->size == 0)
1923 obarray = check_obarray (obarray);
1924 tem = oblookup (obarray, str, len);
1925 if (SYMBOLP (tem))
1926 return tem;
1927 return Fintern ((!NILP (Vpurify_flag)
1928 ? make_pure_string (str, len)
1929 : make_string (str, len)),
1930 obarray);
1931 }
1932
1933 /* Create an uninterned symbol with name STR. */
1934
1935 Lisp_Object
1936 make_symbol (str)
1937 char *str;
1938 {
1939 int len = strlen (str);
1940
1941 return Fmake_symbol ((!NILP (Vpurify_flag)
1942 ? make_pure_string (str, len)
1943 : make_string (str, len)));
1944 }
1945 \f
1946 DEFUN ("intern", Fintern, Sintern, 1, 2, 0,
1947 "Return the canonical symbol whose name is STRING.\n\
1948 If there is none, one is created by this function and returned.\n\
1949 A second optional argument specifies the obarray to use;\n\
1950 it defaults to the value of `obarray'.")
1951 (string, obarray)
1952 Lisp_Object string, obarray;
1953 {
1954 register Lisp_Object tem, sym, *ptr;
1955
1956 if (NILP (obarray)) obarray = Vobarray;
1957 obarray = check_obarray (obarray);
1958
1959 CHECK_STRING (string, 0);
1960
1961 tem = oblookup (obarray, XSTRING (string)->data, XSTRING (string)->size);
1962 if (!INTEGERP (tem))
1963 return tem;
1964
1965 if (!NILP (Vpurify_flag))
1966 string = Fpurecopy (string);
1967 sym = Fmake_symbol (string);
1968 XSYMBOL (sym)->obarray = obarray;
1969
1970 ptr = &XVECTOR (obarray)->contents[XINT (tem)];
1971 if (SYMBOLP (*ptr))
1972 XSYMBOL (sym)->next = XSYMBOL (*ptr);
1973 else
1974 XSYMBOL (sym)->next = 0;
1975 *ptr = sym;
1976 return sym;
1977 }
1978
1979 DEFUN ("intern-soft", Fintern_soft, Sintern_soft, 1, 2, 0,
1980 "Return the canonical symbol whose name is STRING, or nil if none exists.\n\
1981 A second optional argument specifies the obarray to use;\n\
1982 it defaults to the value of `obarray'.")
1983 (string, obarray)
1984 Lisp_Object string, obarray;
1985 {
1986 register Lisp_Object tem;
1987
1988 if (NILP (obarray)) obarray = Vobarray;
1989 obarray = check_obarray (obarray);
1990
1991 CHECK_STRING (string, 0);
1992
1993 tem = oblookup (obarray, XSTRING (string)->data, XSTRING (string)->size);
1994 if (!INTEGERP (tem))
1995 return tem;
1996 return Qnil;
1997 }
1998 \f
1999 DEFUN ("unintern", Funintern, Sunintern, 1, 2, 0,
2000 "Delete the symbol named NAME, if any, from OBARRAY.\n\
2001 The value is t if a symbol was found and deleted, nil otherwise.\n\
2002 NAME may be a string or a symbol. If it is a symbol, that symbol\n\
2003 is deleted, if it belongs to OBARRAY--no other symbol is deleted.\n\
2004 OBARRAY defaults to the value of the variable `obarray'.")
2005 (name, obarray)
2006 Lisp_Object name, obarray;
2007 {
2008 register Lisp_Object string, tem;
2009 int hash;
2010
2011 if (NILP (obarray)) obarray = Vobarray;
2012 obarray = check_obarray (obarray);
2013
2014 if (SYMBOLP (name))
2015 XSETSTRING (string, XSYMBOL (name)->name);
2016 else
2017 {
2018 CHECK_STRING (name, 0);
2019 string = name;
2020 }
2021
2022 tem = oblookup (obarray, XSTRING (string)->data, XSTRING (string)->size);
2023 if (INTEGERP (tem))
2024 return Qnil;
2025 /* If arg was a symbol, don't delete anything but that symbol itself. */
2026 if (SYMBOLP (name) && !EQ (name, tem))
2027 return Qnil;
2028
2029 hash = oblookup_last_bucket_number;
2030
2031 if (EQ (XVECTOR (obarray)->contents[hash], tem))
2032 {
2033 if (XSYMBOL (tem)->next)
2034 XSETSYMBOL (XVECTOR (obarray)->contents[hash], XSYMBOL (tem)->next);
2035 else
2036 XSETINT (XVECTOR (obarray)->contents[hash], 0);
2037 }
2038 else
2039 {
2040 Lisp_Object tail, following;
2041
2042 for (tail = XVECTOR (obarray)->contents[hash];
2043 XSYMBOL (tail)->next;
2044 tail = following)
2045 {
2046 XSETSYMBOL (following, XSYMBOL (tail)->next);
2047 if (EQ (following, tem))
2048 {
2049 XSYMBOL (tail)->next = XSYMBOL (following)->next;
2050 break;
2051 }
2052 }
2053 }
2054
2055 return Qt;
2056 }
2057 \f
2058 /* Return the symbol in OBARRAY whose names matches the string
2059 of SIZE characters at PTR. If there is no such symbol in OBARRAY,
2060 return nil.
2061
2062 Also store the bucket number in oblookup_last_bucket_number. */
2063
2064 Lisp_Object
2065 oblookup (obarray, ptr, size)
2066 Lisp_Object obarray;
2067 register char *ptr;
2068 register int size;
2069 {
2070 int hash;
2071 int obsize;
2072 register Lisp_Object tail;
2073 Lisp_Object bucket, tem;
2074
2075 if (!VECTORP (obarray)
2076 || (obsize = XVECTOR (obarray)->size) == 0)
2077 {
2078 obarray = check_obarray (obarray);
2079 obsize = XVECTOR (obarray)->size;
2080 }
2081 /* This is sometimes needed in the middle of GC. */
2082 obsize &= ~ARRAY_MARK_FLAG;
2083 /* Combining next two lines breaks VMS C 2.3. */
2084 hash = hash_string (ptr, size);
2085 hash %= obsize;
2086 bucket = XVECTOR (obarray)->contents[hash];
2087 oblookup_last_bucket_number = hash;
2088 if (XFASTINT (bucket) == 0)
2089 ;
2090 else if (!SYMBOLP (bucket))
2091 error ("Bad data in guts of obarray"); /* Like CADR error message */
2092 else
2093 for (tail = bucket; ; XSETSYMBOL (tail, XSYMBOL (tail)->next))
2094 {
2095 if (XSYMBOL (tail)->name->size == size
2096 && !bcmp (XSYMBOL (tail)->name->data, ptr, size))
2097 return tail;
2098 else if (XSYMBOL (tail)->next == 0)
2099 break;
2100 }
2101 XSETINT (tem, hash);
2102 return tem;
2103 }
2104
2105 static int
2106 hash_string (ptr, len)
2107 unsigned char *ptr;
2108 int len;
2109 {
2110 register unsigned char *p = ptr;
2111 register unsigned char *end = p + len;
2112 register unsigned char c;
2113 register int hash = 0;
2114
2115 while (p != end)
2116 {
2117 c = *p++;
2118 if (c >= 0140) c -= 40;
2119 hash = ((hash<<3) + (hash>>28) + c);
2120 }
2121 return hash & 07777777777;
2122 }
2123 \f
2124 void
2125 map_obarray (obarray, fn, arg)
2126 Lisp_Object obarray;
2127 int (*fn) ();
2128 Lisp_Object arg;
2129 {
2130 register int i;
2131 register Lisp_Object tail;
2132 CHECK_VECTOR (obarray, 1);
2133 for (i = XVECTOR (obarray)->size - 1; i >= 0; i--)
2134 {
2135 tail = XVECTOR (obarray)->contents[i];
2136 if (XFASTINT (tail) != 0)
2137 while (1)
2138 {
2139 (*fn) (tail, arg);
2140 if (XSYMBOL (tail)->next == 0)
2141 break;
2142 XSETSYMBOL (tail, XSYMBOL (tail)->next);
2143 }
2144 }
2145 }
2146
2147 mapatoms_1 (sym, function)
2148 Lisp_Object sym, function;
2149 {
2150 call1 (function, sym);
2151 }
2152
2153 DEFUN ("mapatoms", Fmapatoms, Smapatoms, 1, 2, 0,
2154 "Call FUNCTION on every symbol in OBARRAY.\n\
2155 OBARRAY defaults to the value of `obarray'.")
2156 (function, obarray)
2157 Lisp_Object function, obarray;
2158 {
2159 Lisp_Object tem;
2160
2161 if (NILP (obarray)) obarray = Vobarray;
2162 obarray = check_obarray (obarray);
2163
2164 map_obarray (obarray, mapatoms_1, function);
2165 return Qnil;
2166 }
2167
2168 #define OBARRAY_SIZE 1511
2169
2170 void
2171 init_obarray ()
2172 {
2173 Lisp_Object oblength;
2174 int hash;
2175 Lisp_Object *tem;
2176
2177 XSETFASTINT (oblength, OBARRAY_SIZE);
2178
2179 Qnil = Fmake_symbol (make_pure_string ("nil", 3));
2180 Vobarray = Fmake_vector (oblength, make_number (0));
2181 initial_obarray = Vobarray;
2182 staticpro (&initial_obarray);
2183 /* Intern nil in the obarray */
2184 XSYMBOL (Qnil)->obarray = Vobarray;
2185 /* These locals are to kludge around a pyramid compiler bug. */
2186 hash = hash_string ("nil", 3);
2187 /* Separate statement here to avoid VAXC bug. */
2188 hash %= OBARRAY_SIZE;
2189 tem = &XVECTOR (Vobarray)->contents[hash];
2190 *tem = Qnil;
2191
2192 Qunbound = Fmake_symbol (make_pure_string ("unbound", 7));
2193 XSYMBOL (Qnil)->function = Qunbound;
2194 XSYMBOL (Qunbound)->value = Qunbound;
2195 XSYMBOL (Qunbound)->function = Qunbound;
2196
2197 Qt = intern ("t");
2198 XSYMBOL (Qnil)->value = Qnil;
2199 XSYMBOL (Qnil)->plist = Qnil;
2200 XSYMBOL (Qt)->value = Qt;
2201
2202 /* Qt is correct even if CANNOT_DUMP. loadup.el will set to nil at end. */
2203 Vpurify_flag = Qt;
2204
2205 Qvariable_documentation = intern ("variable-documentation");
2206 staticpro (&Qvariable_documentation);
2207
2208 read_buffer_size = 100;
2209 read_buffer = (char *) malloc (read_buffer_size);
2210 }
2211 \f
2212 void
2213 defsubr (sname)
2214 struct Lisp_Subr *sname;
2215 {
2216 Lisp_Object sym;
2217 sym = intern (sname->symbol_name);
2218 XSETSUBR (XSYMBOL (sym)->function, sname);
2219 }
2220
2221 #ifdef NOTDEF /* use fset in subr.el now */
2222 void
2223 defalias (sname, string)
2224 struct Lisp_Subr *sname;
2225 char *string;
2226 {
2227 Lisp_Object sym;
2228 sym = intern (string);
2229 XSETSUBR (XSYMBOL (sym)->function, sname);
2230 }
2231 #endif /* NOTDEF */
2232
2233 /* Define an "integer variable"; a symbol whose value is forwarded
2234 to a C variable of type int. Sample call: */
2235 /* DEFVAR_INT ("indent-tabs-mode", &indent_tabs_mode, "Documentation"); */
2236 void
2237 defvar_int (namestring, address)
2238 char *namestring;
2239 int *address;
2240 {
2241 Lisp_Object sym, val;
2242 sym = intern (namestring);
2243 val = allocate_misc ();
2244 XMISCTYPE (val) = Lisp_Misc_Intfwd;
2245 XINTFWD (val)->intvar = address;
2246 XSYMBOL (sym)->value = val;
2247 }
2248
2249 /* Similar but define a variable whose value is T if address contains 1,
2250 NIL if address contains 0 */
2251 void
2252 defvar_bool (namestring, address)
2253 char *namestring;
2254 int *address;
2255 {
2256 Lisp_Object sym, val;
2257 sym = intern (namestring);
2258 val = allocate_misc ();
2259 XMISCTYPE (val) = Lisp_Misc_Boolfwd;
2260 XBOOLFWD (val)->boolvar = address;
2261 XSYMBOL (sym)->value = val;
2262 }
2263
2264 /* Similar but define a variable whose value is the Lisp Object stored
2265 at address. Two versions: with and without gc-marking of the C
2266 variable. The nopro version is used when that variable will be
2267 gc-marked for some other reason, since marking the same slot twice
2268 can cause trouble with strings. */
2269 void
2270 defvar_lisp_nopro (namestring, address)
2271 char *namestring;
2272 Lisp_Object *address;
2273 {
2274 Lisp_Object sym, val;
2275 sym = intern (namestring);
2276 val = allocate_misc ();
2277 XMISCTYPE (val) = Lisp_Misc_Objfwd;
2278 XOBJFWD (val)->objvar = address;
2279 XSYMBOL (sym)->value = val;
2280 }
2281
2282 void
2283 defvar_lisp (namestring, address)
2284 char *namestring;
2285 Lisp_Object *address;
2286 {
2287 defvar_lisp_nopro (namestring, address);
2288 staticpro (address);
2289 }
2290
2291 #ifndef standalone
2292
2293 /* Similar but define a variable whose value is the Lisp Object stored in
2294 the current buffer. address is the address of the slot in the buffer
2295 that is current now. */
2296
2297 void
2298 defvar_per_buffer (namestring, address, type, doc)
2299 char *namestring;
2300 Lisp_Object *address;
2301 Lisp_Object type;
2302 char *doc;
2303 {
2304 Lisp_Object sym, val;
2305 int offset;
2306 extern struct buffer buffer_local_symbols;
2307
2308 sym = intern (namestring);
2309 val = allocate_misc ();
2310 offset = (char *)address - (char *)current_buffer;
2311
2312 XMISCTYPE (val) = Lisp_Misc_Buffer_Objfwd;
2313 XBUFFER_OBJFWD (val)->offset = offset;
2314 XSYMBOL (sym)->value = val;
2315 *(Lisp_Object *)(offset + (char *)&buffer_local_symbols) = sym;
2316 *(Lisp_Object *)(offset + (char *)&buffer_local_types) = type;
2317 if (XINT (*(Lisp_Object *)(offset + (char *)&buffer_local_flags)) == 0)
2318 /* Did a DEFVAR_PER_BUFFER without initializing the corresponding
2319 slot of buffer_local_flags */
2320 abort ();
2321 }
2322
2323 #endif /* standalone */
2324
2325 /* Similar but define a variable whose value is the Lisp Object stored
2326 at a particular offset in the current kboard object. */
2327
2328 void
2329 defvar_kboard (namestring, offset)
2330 char *namestring;
2331 int offset;
2332 {
2333 Lisp_Object sym, val;
2334 sym = intern (namestring);
2335 val = allocate_misc ();
2336 XMISCTYPE (val) = Lisp_Misc_Kboard_Objfwd;
2337 XKBOARD_OBJFWD (val)->offset = offset;
2338 XSYMBOL (sym)->value = val;
2339 }
2340 \f
2341 /* Record the value of load-path used at the start of dumping
2342 so we can see if the site changed it later during dumping. */
2343 static Lisp_Object dump_path;
2344
2345 init_lread ()
2346 {
2347 char *normal;
2348 int turn_off_warning = 0;
2349
2350 #ifdef HAVE_SETLOCALE
2351 /* Make sure numbers are parsed as we expect. */
2352 setlocale (LC_NUMERIC, "C");
2353 #endif /* HAVE_SETLOCALE */
2354
2355 /* Compute the default load-path. */
2356 #ifdef CANNOT_DUMP
2357 normal = PATH_LOADSEARCH;
2358 Vload_path = decode_env_path (0, normal);
2359 #else
2360 if (NILP (Vpurify_flag))
2361 normal = PATH_LOADSEARCH;
2362 else
2363 normal = PATH_DUMPLOADSEARCH;
2364
2365 /* In a dumped Emacs, we normally have to reset the value of
2366 Vload_path from PATH_LOADSEARCH, since the value that was dumped
2367 uses ../lisp, instead of the path of the installed elisp
2368 libraries. However, if it appears that Vload_path was changed
2369 from the default before dumping, don't override that value. */
2370 if (initialized)
2371 {
2372 if (! NILP (Fequal (dump_path, Vload_path)))
2373 {
2374 Vload_path = decode_env_path (0, normal);
2375 if (!NILP (Vinstallation_directory))
2376 {
2377 /* Add to the path the lisp subdir of the
2378 installation dir, if it exists. */
2379 Lisp_Object tem, tem1;
2380 tem = Fexpand_file_name (build_string ("lisp"),
2381 Vinstallation_directory);
2382 tem1 = Ffile_exists_p (tem);
2383 if (!NILP (tem1))
2384 {
2385 if (NILP (Fmember (tem, Vload_path)))
2386 {
2387 turn_off_warning = 1;
2388 Vload_path = nconc2 (Vload_path, Fcons (tem, Qnil));
2389 }
2390 }
2391 else
2392 /* That dir doesn't exist, so add the build-time
2393 Lisp dirs instead. */
2394 Vload_path = nconc2 (Vload_path, dump_path);
2395
2396 /* Add site-list under the installation dir, if it exists. */
2397 tem = Fexpand_file_name (build_string ("site-lisp"),
2398 Vinstallation_directory);
2399 tem1 = Ffile_exists_p (tem);
2400 if (!NILP (tem1))
2401 {
2402 if (NILP (Fmember (tem, Vload_path)))
2403 Vload_path = nconc2 (Vload_path, Fcons (tem, Qnil));
2404 }
2405 }
2406 }
2407 }
2408 else
2409 {
2410 /* ../lisp refers to the build directory.
2411 NORMAL refers to the lisp dir in the source directory. */
2412 Vload_path = Fcons (build_string ("../lisp"),
2413 decode_env_path (0, normal));
2414 dump_path = Vload_path;
2415 }
2416 #endif
2417
2418 #ifndef WINDOWSNT
2419 /* When Emacs is invoked over network shares on NT, PATH_LOADSEARCH is
2420 almost never correct, thereby causing a warning to be printed out that
2421 confuses users. Since PATH_LOADSEARCH is always overridden by the
2422 EMACSLOADPATH environment variable below, disable the warning on NT. */
2423
2424 /* Warn if dirs in the *standard* path don't exist. */
2425 if (!turn_off_warning)
2426 {
2427 Lisp_Object path_tail;
2428
2429 for (path_tail = Vload_path;
2430 !NILP (path_tail);
2431 path_tail = XCONS (path_tail)->cdr)
2432 {
2433 Lisp_Object dirfile;
2434 dirfile = Fcar (path_tail);
2435 if (STRINGP (dirfile))
2436 {
2437 dirfile = Fdirectory_file_name (dirfile);
2438 if (access (XSTRING (dirfile)->data, 0) < 0)
2439 dir_warning ("Warning: Lisp directory `%s' does not exist.\n",
2440 XCONS (path_tail)->car);
2441 }
2442 }
2443 }
2444 #endif /* WINDOWSNT */
2445
2446 /* If the EMACSLOADPATH environment variable is set, use its value.
2447 This doesn't apply if we're dumping. */
2448 #ifndef CANNOT_DUMP
2449 if (NILP (Vpurify_flag)
2450 && egetenv ("EMACSLOADPATH"))
2451 #endif
2452 Vload_path = decode_env_path ("EMACSLOADPATH", normal);
2453
2454 Vvalues = Qnil;
2455
2456 load_in_progress = 0;
2457 Vload_file_name = Qnil;
2458
2459 load_descriptor_list = Qnil;
2460 }
2461
2462 /* Print a warning, using format string FORMAT, that directory DIRNAME
2463 does not exist. Print it on stderr and put it in *Message*. */
2464
2465 dir_warning (format, dirname)
2466 char *format;
2467 Lisp_Object dirname;
2468 {
2469 char *buffer
2470 = (char *) alloca (XSTRING (dirname)->size + strlen (format) + 5);
2471
2472 fprintf (stderr, format, XSTRING (dirname)->data);
2473 sprintf (buffer, format, XSTRING (dirname)->data);
2474 message_dolog (buffer, strlen (buffer), 0);
2475 }
2476
2477 void
2478 syms_of_lread ()
2479 {
2480 defsubr (&Sread);
2481 defsubr (&Sread_from_string);
2482 defsubr (&Sintern);
2483 defsubr (&Sintern_soft);
2484 defsubr (&Sunintern);
2485 defsubr (&Sload);
2486 defsubr (&Seval_buffer);
2487 defsubr (&Seval_region);
2488 defsubr (&Sread_char);
2489 defsubr (&Sread_char_exclusive);
2490 defsubr (&Sread_event);
2491 defsubr (&Sget_file_char);
2492 defsubr (&Smapatoms);
2493
2494 DEFVAR_LISP ("obarray", &Vobarray,
2495 "Symbol table for use by `intern' and `read'.\n\
2496 It is a vector whose length ought to be prime for best results.\n\
2497 The vector's contents don't make sense if examined from Lisp programs;\n\
2498 to find all the symbols in an obarray, use `mapatoms'.");
2499
2500 DEFVAR_LISP ("values", &Vvalues,
2501 "List of values of all expressions which were read, evaluated and printed.\n\
2502 Order is reverse chronological.");
2503
2504 DEFVAR_LISP ("standard-input", &Vstandard_input,
2505 "Stream for read to get input from.\n\
2506 See documentation of `read' for possible values.");
2507 Vstandard_input = Qt;
2508
2509 DEFVAR_LISP ("load-path", &Vload_path,
2510 "*List of directories to search for files to load.\n\
2511 Each element is a string (directory name) or nil (try default directory).\n\
2512 Initialized based on EMACSLOADPATH environment variable, if any,\n\
2513 otherwise to default specified by file `paths.h' when Emacs was built.");
2514
2515 DEFVAR_BOOL ("load-in-progress", &load_in_progress,
2516 "Non-nil iff inside of `load'.");
2517
2518 DEFVAR_LISP ("after-load-alist", &Vafter_load_alist,
2519 "An alist of expressions to be evalled when particular files are loaded.\n\
2520 Each element looks like (FILENAME FORMS...).\n\
2521 When `load' is run and the file-name argument is FILENAME,\n\
2522 the FORMS in the corresponding element are executed at the end of loading.\n\n\
2523 FILENAME must match exactly! Normally FILENAME is the name of a library,\n\
2524 with no directory specified, since that is how `load' is normally called.\n\
2525 An error in FORMS does not undo the load,\n\
2526 but does prevent execution of the rest of the FORMS.");
2527 Vafter_load_alist = Qnil;
2528
2529 DEFVAR_LISP ("load-history", &Vload_history,
2530 "Alist mapping source file names to symbols and features.\n\
2531 Each alist element is a list that starts with a file name,\n\
2532 except for one element (optional) that starts with nil and describes\n\
2533 definitions evaluated from buffers not visiting files.\n\
2534 The remaining elements of each list are symbols defined as functions\n\
2535 or variables, and cons cells `(provide . FEATURE)' and `(require . FEATURE)'.");
2536 Vload_history = Qnil;
2537
2538 DEFVAR_LISP ("load-file-name", &Vload_file_name,
2539 "Full name of file being loaded by `load'.");
2540 Vload_file_name = Qnil;
2541
2542 DEFVAR_LISP ("current-load-list", &Vcurrent_load_list,
2543 "Used for internal purposes by `load'.");
2544 Vcurrent_load_list = Qnil;
2545
2546 DEFVAR_LISP ("load-read-function", &Vload_read_function,
2547 "Function used by `load' and `eval-region' for reading expressions.\n\
2548 The default is nil, which means use the function `read'.");
2549 Vload_read_function = Qnil;
2550
2551 DEFVAR_BOOL ("load-force-doc-strings", &load_force_doc_strings,
2552 "Non-nil means `load' should force-load all dynamic doc strings.\n\
2553 This is useful when the file being loaded is a temporary copy.");
2554 load_force_doc_strings = 0;
2555
2556 DEFVAR_LISP ("source-directory", &Vsource_directory,
2557 "Directory in which Emacs sources were found when Emacs was built.\n\
2558 You cannot count on them to still be there!");
2559 Vsource_directory
2560 = Fexpand_file_name (build_string ("../"),
2561 Fcar (decode_env_path (0, PATH_DUMPLOADSEARCH)));
2562
2563 /* Vsource_directory was initialized in init_lread. */
2564
2565 load_descriptor_list = Qnil;
2566 staticpro (&load_descriptor_list);
2567
2568 Qcurrent_load_list = intern ("current-load-list");
2569 staticpro (&Qcurrent_load_list);
2570
2571 Qstandard_input = intern ("standard-input");
2572 staticpro (&Qstandard_input);
2573
2574 Qread_char = intern ("read-char");
2575 staticpro (&Qread_char);
2576
2577 Qget_file_char = intern ("get-file-char");
2578 staticpro (&Qget_file_char);
2579
2580 Qbackquote = intern ("`");
2581 staticpro (&Qbackquote);
2582 Qcomma = intern (",");
2583 staticpro (&Qcomma);
2584 Qcomma_at = intern (",@");
2585 staticpro (&Qcomma_at);
2586 Qcomma_dot = intern (",.");
2587 staticpro (&Qcomma_dot);
2588
2589 Qascii_character = intern ("ascii-character");
2590 staticpro (&Qascii_character);
2591
2592 Qfunction = intern ("function");
2593 staticpro (&Qfunction);
2594
2595 Qload = intern ("load");
2596 staticpro (&Qload);
2597
2598 Qload_file_name = intern ("load-file-name");
2599 staticpro (&Qload_file_name);
2600
2601 staticpro (&dump_path);
2602
2603 staticpro (&read_objects);
2604 read_objects = Qnil;
2605 }