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