0
|
1 /* Lisp parsing and input streams.
|
|
2 Copyright (C) 1985-1989, 1992-1995 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1995 Tinker Systems.
|
|
4 Copyright (C) 1996 Ben Wing.
|
|
5
|
|
6 This file is part of XEmacs.
|
|
7
|
|
8 XEmacs is free software; you can redistribute it and/or modify it
|
|
9 under the terms of the GNU General Public License as published by the
|
|
10 Free Software Foundation; either version 2, or (at your option) any
|
|
11 later version.
|
|
12
|
|
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
16 for more details.
|
|
17
|
|
18 You should have received a copy of the GNU General Public License
|
|
19 along with XEmacs; see the file COPYING. If not, write to
|
|
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
21 Boston, MA 02111-1307, USA. */
|
|
22
|
|
23 /* Synched up with: Mule 2.0, FSF 19.30. */
|
|
24
|
|
25 /* This file has been Mule-ized. */
|
|
26
|
|
27 #include <config.h>
|
|
28 #include "lisp.h"
|
|
29
|
|
30 #include "buffer.h"
|
|
31 #include "bytecode.h"
|
|
32 #include "commands.h"
|
|
33 #include "insdel.h"
|
|
34 #include "lstream.h"
|
|
35 #include "opaque.h"
|
159
|
36 #include <paths.h>
|
259
|
37 #ifdef FILE_CODING
|
|
38 #include "file-coding.h"
|
70
|
39 #endif
|
0
|
40
|
|
41 #include "sysfile.h"
|
|
42
|
|
43 #ifdef LISP_FLOAT_TYPE
|
|
44 #define THIS_FILENAME lread
|
|
45 #include "sysfloat.h"
|
|
46 #endif /* LISP_FLOAT_TYPE */
|
|
47
|
|
48 Lisp_Object Qread_char, Qstandard_input;
|
|
49 Lisp_Object Qvariable_documentation;
|
|
50 #define LISP_BACKQUOTES
|
|
51 #ifdef LISP_BACKQUOTES
|
251
|
52 /*
|
0
|
53 Nonzero means inside a new-style backquote
|
|
54 with no surrounding parentheses.
|
|
55 Fread initializes this to zero, so we need not specbind it
|
|
56 or worry about what happens to it when there is an error.
|
|
57
|
251
|
58 XEmacs:
|
|
59 Nested backquotes are perfectly legal and fail utterly with
|
0
|
60 this silliness. */
|
|
61 static int new_backquote_flag, old_backquote_flag;
|
|
62 Lisp_Object Qbackquote, Qbacktick, Qcomma, Qcomma_at, Qcomma_dot;
|
173
|
63 #endif
|
0
|
64 Lisp_Object Qvariable_domain; /* I18N3 */
|
|
65 Lisp_Object Vvalues, Vstandard_input, Vafter_load_alist;
|
|
66 Lisp_Object Qcurrent_load_list;
|
|
67 Lisp_Object Qload, Qload_file_name;
|
|
68 Lisp_Object Qlocate_file_hash_table;
|
|
69 Lisp_Object Qfset;
|
|
70
|
282
|
71 /* See read_escape() for an explanation of this. */
|
|
72 #if 0
|
272
|
73 int fail_on_bucky_bit_character_escapes;
|
282
|
74 #endif
|
0
|
75
|
140
|
76 /* This symbol is also used in fns.c */
|
|
77 #define FEATUREP_SYNTAX
|
|
78
|
|
79 #ifdef FEATUREP_SYNTAX
|
209
|
80 Lisp_Object Qfeaturep;
|
140
|
81 #endif
|
|
82
|
0
|
83 /* non-zero if inside `load' */
|
|
84 int load_in_progress;
|
|
85
|
|
86 /* Whether Fload_internal() should check whether the .el is newer
|
|
87 when loading .elc */
|
|
88 int load_warn_when_source_newer;
|
|
89 /* Whether Fload_internal() should check whether the .elc doesn't exist */
|
|
90 int load_warn_when_source_only;
|
|
91 /* Whether Fload_internal() should ignore .elc files when no suffix is given */
|
|
92 int load_ignore_elc_files;
|
|
93
|
|
94 /* Search path for files to be loaded. */
|
|
95 Lisp_Object Vload_path;
|
|
96
|
|
97 /* Search path for files when dumping. */
|
|
98 /* Lisp_Object Vdump_load_path; */
|
|
99
|
|
100 /* This is the user-visible association list that maps features to
|
|
101 lists of defs in their load files. */
|
|
102 Lisp_Object Vload_history;
|
|
103
|
|
104 /* This is used to build the load history. */
|
|
105 Lisp_Object Vcurrent_load_list;
|
|
106
|
|
107 /* Name of file actually being read by `load'. */
|
|
108 Lisp_Object Vload_file_name;
|
|
109
|
|
110 /* Same as Vload_file_name but not Lisp-accessible. This ensures that
|
|
111 our #$ checks are reliable. */
|
|
112 Lisp_Object Vload_file_name_internal;
|
|
113
|
|
114 Lisp_Object Vload_file_name_internal_the_purecopy;
|
|
115
|
|
116 /* Function to use for reading, in `load' and friends. */
|
|
117 Lisp_Object Vload_read_function;
|
|
118
|
245
|
119 /* The association list of objects read with the #n=object form.
|
|
120 Each member of the list has the form (n . object), and is used to
|
|
121 look up the object for the corresponding #n# construct.
|
|
122 It must be set to nil before all top-level calls to read0. */
|
|
123 Lisp_Object read_objects;
|
|
124
|
0
|
125 /* Nonzero means load should forcibly load all dynamic doc strings. */
|
|
126 /* Note that this always happens (with some special behavior) when
|
|
127 purify_flag is set. */
|
|
128 static int load_force_doc_strings;
|
|
129
|
|
130 /* List of descriptors now open for Fload_internal. */
|
|
131 static Lisp_Object Vload_descriptor_list;
|
|
132
|
|
133 /* In order to implement "load_force_doc_strings", we keep
|
|
134 a list of all the compiled-function objects and such
|
|
135 that we have created in the process of loading this file.
|
|
136 See the rant below.
|
|
137
|
|
138 We specbind this just like Vload_file_name, so there's no
|
|
139 problems with recursive loading. */
|
|
140 static Lisp_Object Vload_force_doc_string_list;
|
|
141
|
|
142 /* A resizing-buffer stream used to temporarily hold data while reading */
|
|
143 static Lisp_Object Vread_buffer_stream;
|
|
144
|
|
145 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
|
|
146 Lisp_Object Vcurrent_compiled_function_annotation;
|
|
147 #endif
|
|
148
|
16
|
149 static int load_byte_code_version;
|
|
150
|
0
|
151 /* An array describing all known built-in structure types */
|
185
|
152 static structure_type_dynarr *the_structure_type_dynarr;
|
0
|
153
|
251
|
154 #if 0 /* FSF defun hack */
|
0
|
155 /* When nonzero, read conses in pure space */
|
|
156 static int read_pure;
|
|
157 #endif
|
|
158
|
251
|
159 #if 0 /* FSF stuff */
|
0
|
160 /* For use within read-from-string (this reader is non-reentrant!!) */
|
|
161 static int read_from_string_index;
|
|
162 static int read_from_string_limit;
|
|
163 #endif
|
|
164
|
|
165 #if 0 /* More FSF implementation kludges. */
|
|
166 /* In order to implement load-force-doc-string, FSF saves the
|
|
167 #@-quoted string when it's seen, and goes back and retrieves
|
|
168 it later.
|
|
169
|
|
170 This approach is not only kludgy, but it in general won't work
|
|
171 correctly because there's no stack of remembered #@-quoted-strings
|
|
172 and those strings don't generally appear in the file in the same
|
|
173 order as their #$ references. (Yes, that is amazingly stupid too.
|
251
|
174
|
|
175 It would be trivially easy to always encode the #@ string
|
0
|
176 [which is a comment, anyway] in the middle of the (#$ . INT) cons
|
|
177 reference. That way, it would be really easy to implement
|
|
178 load-force-doc-string in a non-kludgy way by just retrieving the
|
|
179 string immediately, because it's delivered on a silver platter.)
|
|
180
|
|
181 And finally, this stupid approach doesn't work under Mule, or
|
|
182 under MS-DOS or Windows NT, or under VMS, or any other place
|
|
183 where you either can't do an ftell() or don't get back a byte
|
|
184 count.
|
|
185
|
|
186 Oh, and one more lossage in this approach: If you attempt to
|
|
187 dump any ELC files that were compiled with `byte-compile-dynamic'
|
|
188 (as opposed to just `byte-compile-dynamic-docstring'), you
|
|
189 get hosed. FMH! (as the illustrious JWZ was prone to utter)
|
|
190
|
|
191 The approach we use is clean, solves all of these problems, and is
|
|
192 probably easier to implement anyway. We just save a list of all
|
|
193 the containing objects that have (#$ . INT) conses in them (this
|
|
194 will only be compiled-function objects and lists), and when the
|
|
195 file is finished loading, we go through and fill in all the
|
|
196 doc strings at once. */
|
|
197
|
|
198 /* This contains the last string skipped with #@. */
|
|
199 static char *saved_doc_string;
|
|
200 /* Length of buffer allocated in saved_doc_string. */
|
|
201 static int saved_doc_string_size;
|
|
202 /* Length of actual data in saved_doc_string. */
|
|
203 static int saved_doc_string_length;
|
|
204 /* This is the file position that string came from. */
|
|
205 static int saved_doc_string_position;
|
|
206 #endif
|
|
207
|
272
|
208 EXFUN (Fread_from_string, 3);
|
|
209
|
265
|
210 /* When errors are signaled, the actual readcharfun should not be used
|
|
211 as an argument if it is an lstream, so that lstreams don't escape
|
|
212 to the Lisp level. */
|
|
213 #define READCHARFUN_MAYBE(x) (LSTREAMP (x) \
|
|
214 ? (build_string ("internal input stream")) \
|
|
215 : (x))
|
0
|
216
|
|
217
|
|
218 static DOESNT_RETURN
|
|
219 syntax_error (CONST char *string)
|
|
220 {
|
|
221 signal_error (Qinvalid_read_syntax,
|
|
222 list1 (build_translated_string (string)));
|
|
223 }
|
|
224
|
|
225 static Lisp_Object
|
|
226 continuable_syntax_error (CONST char *string)
|
|
227 {
|
|
228 return Fsignal (Qinvalid_read_syntax,
|
|
229 list1 (build_translated_string (string)));
|
|
230 }
|
|
231
|
|
232
|
|
233 /* Handle unreading and rereading of characters. */
|
|
234 static Emchar
|
|
235 readchar (Lisp_Object readcharfun)
|
|
236 {
|
|
237 /* This function can GC */
|
|
238
|
|
239 if (BUFFERP (readcharfun))
|
|
240 {
|
|
241 Emchar c;
|
|
242 struct buffer *b = XBUFFER (readcharfun);
|
173
|
243
|
0
|
244 if (!BUFFER_LIVE_P (b))
|
|
245 error ("Reading from killed buffer");
|
|
246
|
|
247 if (BUF_PT (b) >= BUF_ZV (b))
|
|
248 return -1;
|
|
249 c = BUF_FETCH_CHAR (b, BUF_PT (b));
|
|
250 BUF_SET_PT (b, BUF_PT (b) + 1);
|
|
251
|
|
252 return c;
|
|
253 }
|
|
254 else if (LSTREAMP (readcharfun))
|
|
255 {
|
16
|
256 Emchar c = Lstream_get_emchar (XLSTREAM (readcharfun));
|
|
257 #ifdef DEBUG_XEMACS /* testing Mule */
|
|
258 static int testing_mule = 0; /* Change via debugger */
|
|
259 if (testing_mule) {
|
|
260 if (c >= 0x20 && c <= 0x7E) fprintf (stderr, "%c", c);
|
|
261 else if (c == '\n') fprintf (stderr, "\\n\n");
|
|
262 else fprintf (stderr, "\\%o ", c);
|
|
263 }
|
|
264 #endif
|
|
265 return c;
|
0
|
266 }
|
|
267 else if (MARKERP (readcharfun))
|
|
268 {
|
|
269 Emchar c;
|
|
270 Bufpos mpos = marker_position (readcharfun);
|
|
271 struct buffer *inbuffer = XMARKER (readcharfun)->buffer;
|
|
272
|
|
273 if (mpos >= BUF_ZV (inbuffer))
|
|
274 return -1;
|
|
275 c = BUF_FETCH_CHAR (inbuffer, mpos);
|
|
276 set_marker_position (readcharfun, mpos + 1);
|
|
277 return c;
|
|
278 }
|
|
279 else
|
|
280 {
|
|
281 Lisp_Object tem = call0 (readcharfun);
|
|
282
|
|
283 if (!CHAR_OR_CHAR_INTP (tem))
|
|
284 return -1;
|
|
285 return XCHAR_OR_CHAR_INT (tem);
|
|
286 }
|
|
287 }
|
|
288
|
|
289 /* Unread the character C in the way appropriate for the stream READCHARFUN.
|
|
290 If the stream is a user function, call it with the char as argument. */
|
|
291
|
|
292 static void
|
|
293 unreadchar (Lisp_Object readcharfun, Emchar c)
|
|
294 {
|
|
295 if (c == -1)
|
|
296 /* Don't back up the pointer if we're unreading the end-of-input mark,
|
|
297 since readchar didn't advance it when we read it. */
|
|
298 ;
|
|
299 else if (BUFFERP (readcharfun))
|
|
300 BUF_SET_PT (XBUFFER (readcharfun), BUF_PT (XBUFFER (readcharfun)) - 1);
|
|
301 else if (LSTREAMP (readcharfun))
|
|
302 {
|
|
303 Lstream_unget_emchar (XLSTREAM (readcharfun), c);
|
16
|
304 #ifdef DEBUG_XEMACS /* testing Mule */
|
|
305 {
|
|
306 static int testing_mule = 0; /* Set this using debugger */
|
|
307 if (testing_mule)
|
|
308 fprintf (stderr,
|
|
309 (c >= 0x20 && c <= 0x7E) ? "UU%c" :
|
|
310 ((c == '\n') ? "UU\\n\n" : "UU\\%o"), c);
|
|
311 }
|
|
312 #endif
|
0
|
313 }
|
|
314 else if (MARKERP (readcharfun))
|
|
315 set_marker_position (readcharfun, marker_position (readcharfun) - 1);
|
|
316 else
|
|
317 call1 (readcharfun, make_char (c));
|
|
318 }
|
|
319
|
|
320 static Lisp_Object read0 (Lisp_Object readcharfun);
|
|
321 static Lisp_Object read1 (Lisp_Object readcharfun);
|
|
322 /* allow_dotted_lists means that something like (foo bar . baz)
|
|
323 is acceptable. If -1, means check for starting with defun
|
|
324 and make structure pure. (not implemented, probably for very
|
|
325 good reasons)
|
|
326 */
|
|
327 /*
|
|
328 If check_for_doc_references, look for (#$ . INT) doc references
|
|
329 in the list and record if load_force_doc_strings is non-zero.
|
|
330 (Such doc references will be destroyed during the loadup phase
|
|
331 by replacing with Qzero, because Snarf-documentation will fill
|
|
332 them in again.)
|
|
333
|
|
334 WARNING: If you set this, you sure as hell better not call
|
|
335 free_list() on the returned list here. */
|
|
336
|
|
337 static Lisp_Object read_list (Lisp_Object readcharfun,
|
|
338 Emchar terminator,
|
|
339 int allow_dotted_lists,
|
|
340 int check_for_doc_references);
|
|
341
|
173
|
342 static void readevalloop (Lisp_Object readcharfun,
|
0
|
343 Lisp_Object sourcefile,
|
|
344 Lisp_Object (*evalfun) (Lisp_Object),
|
|
345 int printflag);
|
|
346
|
|
347 static Lisp_Object
|
|
348 load_unwind (Lisp_Object stream) /* used as unwind-protect function in load */
|
|
349 {
|
|
350 Lstream_close (XLSTREAM (stream));
|
|
351 if (--load_in_progress < 0)
|
|
352 load_in_progress = 0;
|
|
353 return Qnil;
|
|
354 }
|
|
355
|
|
356 static Lisp_Object
|
|
357 load_descriptor_unwind (Lisp_Object oldlist)
|
|
358 {
|
|
359 Vload_descriptor_list = oldlist;
|
|
360 return Qnil;
|
|
361 }
|
|
362
|
|
363 static Lisp_Object
|
|
364 load_file_name_internal_unwind (Lisp_Object oldval)
|
|
365 {
|
|
366 Vload_file_name_internal = oldval;
|
|
367 return Qnil;
|
|
368 }
|
|
369
|
|
370 static Lisp_Object
|
|
371 load_file_name_internal_the_purecopy_unwind (Lisp_Object oldval)
|
|
372 {
|
|
373 Vload_file_name_internal_the_purecopy = oldval;
|
|
374 return Qnil;
|
|
375 }
|
|
376
|
|
377 static Lisp_Object
|
70
|
378 load_byte_code_version_unwind (Lisp_Object oldval)
|
|
379 {
|
|
380 load_byte_code_version = XINT (oldval);
|
|
381 return Qnil;
|
|
382 }
|
|
383
|
|
384 /* The plague is coming.
|
|
385
|
|
386 Ring around the rosy, pocket full of posy,
|
|
387 Ashes ashes, they all fall down.
|
|
388 */
|
|
389 void
|
|
390 ebolify_bytecode_constants (Lisp_Object vector)
|
|
391 {
|
173
|
392 int len = XVECTOR_LENGTH (vector);
|
70
|
393 int i;
|
|
394
|
|
395 for (i = 0; i < len; i++)
|
|
396 {
|
173
|
397 Lisp_Object el = XVECTOR_DATA (vector)[i];
|
70
|
398
|
|
399 /* We don't check for `eq', `equal', and the others that have
|
|
400 bytecode opcodes. This might lose if someone passes #'eq or
|
|
401 something to `funcall', but who would really do that? As
|
|
402 they say in law, we've made a "good-faith effort" to
|
|
403 unfuckify ourselves. And doing it this way avoids screwing
|
|
404 up args to `make-hashtable' and such. As it is, we have to
|
|
405 add an extra Ebola check in decode_weak_list_type(). --ben */
|
|
406 if (EQ (el, Qassoc))
|
|
407 el = Qold_assoc;
|
|
408 if (EQ (el, Qdelq))
|
|
409 el = Qold_delq;
|
|
410 #if 0
|
|
411 /* I think this is a bad idea because it will probably mess
|
|
412 with keymap code. */
|
|
413 if (EQ (el, Qdelete))
|
|
414 el = Qold_delete;
|
|
415 #endif
|
|
416 if (EQ (el, Qrassq))
|
|
417 el = Qold_rassq;
|
|
418 if (EQ (el, Qrassoc))
|
|
419 el = Qold_rassoc;
|
173
|
420 XVECTOR_DATA (vector)[i] = el;
|
70
|
421 }
|
|
422 }
|
|
423
|
|
424 static Lisp_Object
|
0
|
425 pas_de_lache_ici (int fd, Lisp_Object victim)
|
|
426 {
|
|
427 Lisp_Object tem;
|
|
428 EMACS_INT pos;
|
|
429
|
|
430 if (!INTP (XCDR (victim)))
|
|
431 signal_simple_error ("Bogus doc string reference", victim);
|
|
432 pos = XINT (XCDR (victim));
|
|
433 if (pos < 0)
|
|
434 pos = -pos; /* kludge to mark a user variable */
|
|
435 tem = unparesseuxify_doc_string (fd, pos, 0, Vload_file_name_internal);
|
|
436 if (!STRINGP (tem))
|
|
437 signal_error (Qerror, tem);
|
|
438 return tem;
|
|
439 }
|
|
440
|
|
441 static Lisp_Object
|
|
442 load_force_doc_string_unwind (Lisp_Object oldlist)
|
|
443 {
|
|
444 struct gcpro gcpro1;
|
|
445 Lisp_Object list = Vload_force_doc_string_list;
|
|
446 Lisp_Object tail;
|
|
447 int fd = XINT (XCAR (Vload_descriptor_list));
|
|
448 /* NOTE: If purify_flag is true, we're in-place modifying objects that
|
|
449 may be in purespace (and if not, they will be). Therefore, we have
|
|
450 to be VERY careful to make sure that all objects that we create
|
|
451 are purecopied -- objects in purespace are not marked for GC, and
|
|
452 if we leave any impure objects inside of pure ones, we're really
|
|
453 screwed. */
|
|
454
|
|
455 GCPRO1 (list);
|
|
456 /* restore the old value first just in case an error occurs. */
|
|
457 Vload_force_doc_string_list = oldlist;
|
|
458
|
|
459 LIST_LOOP (tail, list)
|
|
460 {
|
|
461 Lisp_Object john = Fcar (tail);
|
|
462 if (CONSP (john))
|
|
463 {
|
|
464 assert (CONSP (XCAR (john)));
|
|
465 assert (!purify_flag); /* should have been handled in read_list() */
|
|
466 XCAR (john) = pas_de_lache_ici (fd, XCAR (john));
|
|
467 }
|
|
468 else
|
|
469 {
|
|
470 Lisp_Object doc;
|
|
471
|
|
472 assert (COMPILED_FUNCTIONP (john));
|
|
473 if (CONSP (XCOMPILED_FUNCTION (john)->bytecodes))
|
|
474 {
|
|
475 struct gcpro ngcpro1;
|
|
476 Lisp_Object juan = (pas_de_lache_ici
|
|
477 (fd, XCOMPILED_FUNCTION (john)->bytecodes));
|
|
478 Lisp_Object ivan;
|
|
479
|
|
480 NGCPRO1 (juan);
|
|
481 ivan = Fread (juan);
|
|
482 if (!CONSP (ivan))
|
|
483 signal_simple_error ("invalid lazy-loaded byte code", ivan);
|
|
484 /* Remember to purecopy; see above. */
|
|
485 XCOMPILED_FUNCTION (john)->bytecodes = Fpurecopy (XCAR (ivan));
|
70
|
486 /* v18 or v19 bytecode file. Need to Ebolify. */
|
|
487 if (XCOMPILED_FUNCTION (john)->flags.ebolified
|
|
488 && VECTORP (XCDR (ivan)))
|
|
489 ebolify_bytecode_constants (XCDR (ivan));
|
0
|
490 XCOMPILED_FUNCTION (john)->constants = Fpurecopy (XCDR (ivan));
|
|
491 NUNGCPRO;
|
|
492 }
|
|
493 doc = compiled_function_documentation (XCOMPILED_FUNCTION (john));
|
|
494 if (CONSP (doc))
|
|
495 {
|
|
496 assert (!purify_flag); /* should have been handled in
|
|
497 read_compiled_function() */
|
|
498 doc = pas_de_lache_ici (fd, doc);
|
|
499 set_compiled_function_documentation (XCOMPILED_FUNCTION (john),
|
|
500 doc);
|
|
501 }
|
|
502 }
|
|
503 }
|
|
504
|
|
505 if (!NILP (list))
|
|
506 free_list (list);
|
|
507
|
|
508 UNGCPRO;
|
|
509 return Qnil;
|
|
510 }
|
|
511
|
|
512 /* Close all descriptors in use for Fload_internal.
|
|
513 This is used when starting a subprocess. */
|
|
514
|
|
515 void
|
|
516 close_load_descs (void)
|
|
517 {
|
|
518 Lisp_Object tail;
|
|
519 LIST_LOOP (tail, Vload_descriptor_list)
|
|
520 close (XINT (XCAR (tail)));
|
|
521 }
|
|
522
|
|
523 #ifdef I18N3
|
|
524 Lisp_Object Vfile_domain;
|
|
525
|
|
526 Lisp_Object
|
|
527 restore_file_domain (Lisp_Object val)
|
|
528 {
|
|
529 Vfile_domain = val;
|
|
530 return Qnil;
|
|
531 }
|
|
532 #endif /* I18N3 */
|
|
533
|
70
|
534 DEFUN ("load-internal", Fload_internal, 1, 6, 0, /*
|
|
535 Execute a file of Lisp code named FILE; no coding-system frobbing.
|
|
536 This function is identical to `load' except for the handling of the
|
|
537 CODESYS and USED-CODESYS arguments under XEmacs/Mule. (When Mule
|
|
538 support is not present, both functions are identical and ignore the
|
|
539 CODESYS and USED-CODESYS arguments.)
|
|
540
|
|
541 If support for Mule exists in this Emacs, the file is decoded
|
|
542 according to CODESYS; if omitted, no conversion happens. If
|
|
543 USED-CODESYS is non-nil, it should be a symbol, and the actual coding
|
|
544 system that was used for the decoding is stored into it. It will in
|
|
545 general be different from CODESYS if CODESYS specifies automatic
|
|
546 encoding detection or end-of-line detection.
|
20
|
547 */
|
70
|
548 (file, no_error, nomessage, nosuffix, codesys, used_codesys))
|
0
|
549 {
|
|
550 /* This function can GC */
|
|
551 int fd = -1;
|
|
552 int speccount = specpdl_depth ();
|
|
553 int source_only = 0;
|
|
554 Lisp_Object newer = Qnil;
|
|
555 Lisp_Object handler = Qnil;
|
|
556 Lisp_Object found = Qnil;
|
|
557 struct gcpro gcpro1, gcpro2, gcpro3;
|
16
|
558 int reading_elc = 0;
|
|
559 int message_p = NILP (nomessage);
|
249
|
560 /*#ifdef DEBUG_XEMACS*/
|
16
|
561 static Lisp_Object last_file_loaded;
|
272
|
562 size_t pure_usage = 0;
|
249
|
563 /*#endif*/
|
118
|
564 struct stat s1, s2;
|
0
|
565 GCPRO3 (file, newer, found);
|
|
566
|
|
567 CHECK_STRING (file);
|
|
568
|
249
|
569 /*#ifdef DEBUG_XEMACS*/
|
0
|
570 if (purify_flag && noninteractive)
|
16
|
571 {
|
|
572 message_p = 1;
|
|
573 last_file_loaded = file;
|
|
574 pure_usage = purespace_usage ();
|
|
575 }
|
251
|
576 /*#endif / * DEBUG_XEMACS */
|
0
|
577
|
|
578 /* If file name is magic, call the handler. */
|
|
579 handler = Ffind_file_name_handler (file, Qload);
|
|
580 if (!NILP (handler))
|
74
|
581 RETURN_UNGCPRO (call5 (handler, Qload, file, no_error,
|
82
|
582 nomessage, nosuffix));
|
0
|
583
|
|
584 /* Do this after the handler to avoid
|
|
585 the need to gcpro noerror, nomessage and nosuffix.
|
|
586 (Below here, we care only whether they are nil or not.) */
|
|
587 file = Fsubstitute_in_file_name (file);
|
259
|
588 #ifdef FILE_CODING
|
70
|
589 if (!NILP (used_codesys))
|
|
590 CHECK_SYMBOL (used_codesys);
|
|
591 #endif
|
16
|
592
|
0
|
593 /* Avoid weird lossage with null string as arg,
|
|
594 since it would try to load a directory as a Lisp file.
|
|
595 Unix truly sucks. */
|
16
|
596 if (XSTRING_LENGTH (file) > 0)
|
0
|
597 {
|
|
598 char *foundstr;
|
|
599 int foundlen;
|
|
600
|
173
|
601 fd = locate_file (Vload_path, file,
|
0
|
602 ((!NILP (nosuffix)) ? "" :
|
|
603 load_ignore_elc_files ? ".el:" :
|
|
604 ".elc:.el:"),
|
|
605 &found,
|
|
606 -1);
|
|
607
|
|
608 if (fd < 0)
|
|
609 {
|
|
610 if (NILP (no_error))
|
|
611 signal_file_error ("Cannot open load file", file);
|
|
612 else
|
|
613 {
|
|
614 UNGCPRO;
|
|
615 return Qnil;
|
|
616 }
|
|
617 }
|
|
618
|
16
|
619 foundstr = (char *) alloca (XSTRING_LENGTH (found) + 1);
|
|
620 strcpy (foundstr, (char *) XSTRING_DATA (found));
|
0
|
621 foundlen = strlen (foundstr);
|
|
622
|
|
623 /* The omniscient JWZ thinks this is worthless, but I beg to
|
|
624 differ. --ben */
|
|
625 if (load_ignore_elc_files)
|
|
626 {
|
|
627 newer = Ffile_name_nondirectory (found);
|
|
628 }
|
|
629 else if (load_warn_when_source_newer &&
|
|
630 !memcmp (".elc", foundstr + foundlen - 4, 4))
|
|
631 {
|
|
632 if (! fstat (fd, &s1)) /* can't fail, right? */
|
|
633 {
|
|
634 int result;
|
|
635 /* temporarily hack the 'c' off the end of the filename */
|
|
636 foundstr[foundlen - 1] = '\0';
|
|
637 result = stat (foundstr, &s2);
|
|
638 if (result >= 0 &&
|
|
639 (unsigned) s1.st_mtime < (unsigned) s2.st_mtime)
|
|
640 {
|
|
641 Lisp_Object newer_name = make_string ((Bufbyte *) foundstr,
|
|
642 foundlen - 1);
|
|
643 struct gcpro nngcpro1;
|
|
644 NNGCPRO1 (newer_name);
|
|
645 newer = Ffile_name_nondirectory (newer_name);
|
|
646 NNUNGCPRO;
|
|
647 }
|
|
648 /* put the 'c' back on (kludge-o-rama) */
|
|
649 foundstr[foundlen - 1] = 'c';
|
|
650 }
|
|
651 }
|
|
652 else if (load_warn_when_source_only &&
|
|
653 /* `found' ends in ".el" */
|
|
654 !memcmp (".el", foundstr + foundlen - 3, 3) &&
|
|
655 /* `file' does not end in ".el" */
|
|
656 memcmp (".el",
|
16
|
657 XSTRING_DATA (file) + XSTRING_LENGTH (file) - 3,
|
0
|
658 3))
|
|
659 {
|
|
660 source_only = 1;
|
|
661 }
|
16
|
662
|
|
663 if (!memcmp (".elc", foundstr + foundlen - 4, 4))
|
|
664 reading_elc = 1;
|
118
|
665 }
|
16
|
666
|
82
|
667 #define PRINT_LOADING_MESSAGE(done) do { \
|
|
668 if (load_ignore_elc_files) \
|
|
669 { \
|
|
670 if (message_p) \
|
|
671 message ("Loading %s..." done, XSTRING_DATA (newer)); \
|
|
672 } \
|
|
673 else if (!NILP (newer)) \
|
|
674 message ("Loading %s..." done " (file %s is newer)", \
|
|
675 XSTRING_DATA (file), \
|
|
676 XSTRING_DATA (newer)); \
|
|
677 else if (source_only) \
|
16
|
678 message ("Loading %s..." done " (file %s.elc does not exist)", \
|
82
|
679 XSTRING_DATA (file), \
|
|
680 XSTRING_DATA (Ffile_name_nondirectory (file))); \
|
|
681 else if (message_p) \
|
|
682 message ("Loading %s..." done, XSTRING_DATA (file)); \
|
16
|
683 } while (0)
|
|
684
|
|
685 PRINT_LOADING_MESSAGE ("");
|
0
|
686
|
|
687 {
|
|
688 /* Lisp_Object's must be malloc'ed, not stack-allocated */
|
|
689 Lisp_Object lispstream = Qnil;
|
|
690 CONST int block_size = 8192;
|
|
691 struct gcpro ngcpro1;
|
|
692
|
|
693 NGCPRO1 (lispstream);
|
|
694 lispstream = make_filedesc_input_stream (fd, 0, -1, LSTR_CLOSING);
|
|
695 /* 64K is used for normal files; 8K should be OK here because Lisp
|
|
696 files aren't really all that big. */
|
|
697 Lstream_set_buffering (XLSTREAM (lispstream), LSTREAM_BLOCKN_BUFFERED,
|
|
698 block_size);
|
259
|
699 #ifdef FILE_CODING
|
70
|
700 lispstream = make_decoding_input_stream
|
|
701 (XLSTREAM (lispstream), Fget_coding_system (codesys));
|
|
702 Lstream_set_buffering (XLSTREAM (lispstream), LSTREAM_BLOCKN_BUFFERED,
|
|
703 block_size);
|
259
|
704 #endif
|
0
|
705 /* NOTE: Order of these is very important. Don't rearrange them. */
|
|
706 record_unwind_protect (load_unwind, lispstream);
|
|
707 record_unwind_protect (load_descriptor_unwind, Vload_descriptor_list);
|
|
708 record_unwind_protect (load_file_name_internal_unwind,
|
|
709 Vload_file_name_internal);
|
|
710 record_unwind_protect (load_file_name_internal_the_purecopy_unwind,
|
|
711 Vload_file_name_internal_the_purecopy);
|
|
712 record_unwind_protect (load_force_doc_string_unwind,
|
|
713 Vload_force_doc_string_list);
|
|
714 Vload_file_name_internal = found;
|
|
715 Vload_file_name_internal_the_purecopy = Qnil;
|
|
716 specbind (Qload_file_name, found);
|
16
|
717 Vload_descriptor_list = Fcons (make_int (fd), Vload_descriptor_list);
|
0
|
718 Vload_force_doc_string_list = Qnil;
|
|
719 #ifdef I18N3
|
|
720 record_unwind_protect (restore_file_domain, Vfile_domain);
|
|
721 Vfile_domain = Qnil; /* set it to nil; a call to #'domain will set it. */
|
|
722 #endif
|
|
723 load_in_progress++;
|
70
|
724
|
|
725 /* Now determine what sort of ELC file we're reading in. */
|
|
726 record_unwind_protect (load_byte_code_version_unwind,
|
|
727 make_int (load_byte_code_version));
|
|
728 if (reading_elc)
|
|
729 {
|
|
730 char elc_header[8];
|
|
731 int num_read;
|
|
732
|
|
733 num_read = Lstream_read (XLSTREAM (lispstream), elc_header, 8);
|
|
734 if (num_read < 8
|
|
735 || strncmp (elc_header, ";ELC", 4))
|
|
736 {
|
|
737 /* Huh? Probably not a valid ELC file. */
|
|
738 load_byte_code_version = 100; /* no Ebolification needed */
|
|
739 Lstream_unread (XLSTREAM (lispstream), elc_header, num_read);
|
|
740 }
|
|
741 else
|
|
742 load_byte_code_version = elc_header[4];
|
|
743 }
|
|
744 else
|
|
745 load_byte_code_version = 100; /* no Ebolification needed */
|
173
|
746
|
0
|
747 readevalloop (lispstream, file, Feval, 0);
|
259
|
748 #ifdef FILE_CODING
|
70
|
749 if (!NILP (used_codesys))
|
|
750 Fset (used_codesys,
|
|
751 XCODING_SYSTEM_NAME
|
|
752 (decoding_stream_coding_system (XLSTREAM (lispstream))));
|
259
|
753 #endif
|
0
|
754 unbind_to (speccount, Qnil);
|
|
755
|
|
756 NUNGCPRO;
|
|
757 }
|
|
758
|
|
759 {
|
|
760 Lisp_Object tem;
|
|
761 /* #### Disgusting kludge */
|
|
762 /* Run any load-hooks for this file. */
|
229
|
763 /* #### An even more disgusting kludge. There is horrible code */
|
249
|
764 /* that is relying on the fact that dumped lisp files are found */
|
229
|
765 /* via `load-path' search. */
|
|
766 Lisp_Object name = file;
|
|
767
|
|
768 if (!NILP(Ffile_name_absolute_p(file)))
|
|
769 {
|
|
770 name = Ffile_name_nondirectory(file);
|
|
771 }
|
|
772
|
249
|
773 {
|
|
774 struct gcpro ngcpro1;
|
|
775
|
|
776 NGCPRO1 (name);
|
|
777 tem = Fassoc (name, Vafter_load_alist);
|
|
778 NUNGCPRO;
|
|
779 }
|
0
|
780 if (!NILP (tem))
|
|
781 {
|
|
782 struct gcpro ngcpro1;
|
|
783
|
|
784 NGCPRO1 (tem);
|
|
785 /* Use eval so that errors give a semi-meaningful backtrace. --Stig */
|
|
786 tem = Fcons (Qprogn, Fcdr (tem));
|
|
787 Feval (tem);
|
|
788 NUNGCPRO;
|
|
789 }
|
|
790 }
|
|
791
|
249
|
792 /*#ifdef DEBUG_XEMACS*/
|
16
|
793 if (purify_flag && noninteractive)
|
0
|
794 {
|
16
|
795 if (EQ (last_file_loaded, file))
|
306
|
796 message_append (" (%ld)",
|
|
797 (unsigned long) (purespace_usage() - pure_usage));
|
16
|
798 else
|
306
|
799 message ("Loading %s ...done (%ld)", XSTRING_DATA (file),
|
|
800 (unsigned long) (purespace_usage() - pure_usage));
|
0
|
801 }
|
251
|
802 /*#endif / * DEBUG_XEMACS */
|
0
|
803
|
16
|
804 if (!noninteractive)
|
|
805 PRINT_LOADING_MESSAGE ("done");
|
173
|
806
|
0
|
807 UNGCPRO;
|
|
808 return Qt;
|
|
809 }
|
|
810
|
|
811
|
|
812 #if 0 /* FSFmacs */
|
|
813 /* not used */
|
|
814 static int
|
|
815 complete_filename_p (Lisp_Object pathname)
|
|
816 {
|
16
|
817 REGISTER unsigned char *s = XSTRING_DATA (pathname);
|
0
|
818 return (IS_DIRECTORY_SEP (s[0])
|
16
|
819 || (XSTRING_LENGTH (pathname) > 2
|
0
|
820 && IS_DEVICE_SEP (s[1]) && IS_DIRECTORY_SEP (s[2]))
|
|
821 #ifdef ALTOS
|
|
822 || *s == '@'
|
|
823 #endif
|
|
824 );
|
|
825 }
|
|
826 #endif /* 0 */
|
|
827
|
20
|
828 DEFUN ("locate-file", Flocate_file, 2, 4, 0, /*
|
0
|
829 Search for FILENAME through PATH-LIST, expanded by one of the optional
|
185
|
830 SUFFIXES (string of suffixes separated by ":"s), checking for access
|
0
|
831 MODE (0|1|2|4 = exists|executable|writeable|readable), default readable.
|
|
832
|
|
833 `locate-file' keeps hash tables of the directories it searches through,
|
|
834 in order to speed things up. It tries valiantly to not get confused in
|
|
835 the face of a changing and unpredictable environment, but can occasionally
|
|
836 get tripped up. In this case, you will have to call
|
|
837 `locate-file-clear-hashing' to get it back on track. See that function
|
|
838 for details.
|
20
|
839 */
|
|
840 (filename, path_list, suffixes, mode))
|
0
|
841 {
|
|
842 /* This function can GC */
|
|
843 Lisp_Object tp;
|
|
844
|
|
845 CHECK_STRING (filename);
|
|
846 if (!NILP (suffixes))
|
272
|
847 CHECK_STRING (suffixes);
|
|
848 if (!NILP (mode))
|
|
849 CHECK_NATNUM (mode);
|
|
850
|
173
|
851 locate_file (path_list, filename,
|
0
|
852 ((NILP (suffixes)) ? "" :
|
16
|
853 (char *) (XSTRING_DATA (suffixes))),
|
0
|
854 &tp, (NILP (mode) ? R_OK : XINT (mode)));
|
|
855 return tp;
|
|
856 }
|
|
857
|
|
858 /* recalculate the hash table for the given string */
|
|
859
|
|
860 static Lisp_Object
|
|
861 locate_file_refresh_hashing (Lisp_Object str)
|
|
862 {
|
|
863 Lisp_Object hash =
|
16
|
864 make_directory_hash_table ((char *) XSTRING_DATA (str));
|
0
|
865 Fput (str, Qlocate_file_hash_table, hash);
|
|
866 return hash;
|
|
867 }
|
|
868
|
|
869 /* find the hash table for the given string, recalculating if necessary */
|
|
870
|
|
871 static Lisp_Object
|
|
872 locate_file_find_directory_hash_table (Lisp_Object str)
|
|
873 {
|
|
874 Lisp_Object hash = Fget (str, Qlocate_file_hash_table, Qnil);
|
|
875 if (NILP (Fhashtablep (hash)))
|
|
876 return locate_file_refresh_hashing (str);
|
|
877 return hash;
|
|
878 }
|
|
879
|
|
880 /* look for STR in PATH, optionally adding suffixes in SUFFIX */
|
|
881
|
|
882 static int
|
|
883 locate_file_in_directory (Lisp_Object path, Lisp_Object str,
|
|
884 CONST char *suffix, Lisp_Object *storeptr,
|
|
885 int mode)
|
|
886 {
|
|
887 /* This function can GC */
|
|
888 int fd;
|
|
889 int fn_size = 100;
|
|
890 char buf[100];
|
|
891 char *fn = buf;
|
|
892 int want_size;
|
|
893 struct stat st;
|
|
894 Lisp_Object filename = Qnil;
|
|
895 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
896 CONST char *nsuffix;
|
|
897
|
|
898 GCPRO3 (path, str, filename);
|
|
899
|
|
900 filename = Fexpand_file_name (str, path);
|
|
901 if (NILP (filename) || NILP (Ffile_name_absolute_p (filename)))
|
|
902 /* If there are non-absolute elts in PATH (eg ".") */
|
|
903 /* Of course, this could conceivably lose if luser sets
|
|
904 default-directory to be something non-absolute ... */
|
|
905 {
|
|
906 if (NILP (filename))
|
|
907 /* NIL means current dirctory */
|
|
908 filename = current_buffer->directory;
|
|
909 else
|
|
910 filename = Fexpand_file_name (filename,
|
|
911 current_buffer->directory);
|
|
912 if (NILP (Ffile_name_absolute_p (filename)))
|
|
913 {
|
|
914 /* Give up on this path element! */
|
|
915 UNGCPRO;
|
|
916 return -1;
|
|
917 }
|
|
918 }
|
|
919 /* Calculate maximum size of any filename made from
|
|
920 this path element/specified file name and any possible suffix. */
|
16
|
921 want_size = strlen (suffix) + XSTRING_LENGTH (filename) + 1;
|
0
|
922 if (fn_size < want_size)
|
|
923 fn = (char *) alloca (fn_size = 100 + want_size);
|
173
|
924
|
0
|
925 nsuffix = suffix;
|
173
|
926
|
0
|
927 /* Loop over suffixes. */
|
|
928 while (1)
|
|
929 {
|
|
930 char *esuffix = (char *) strchr (nsuffix, ':');
|
|
931 int lsuffix = ((esuffix) ? (esuffix - nsuffix) : strlen (nsuffix));
|
173
|
932
|
0
|
933 /* Concatenate path element/specified name with the suffix. */
|
173
|
934 strncpy (fn, (char *) XSTRING_DATA (filename),
|
16
|
935 XSTRING_LENGTH (filename));
|
|
936 fn[XSTRING_LENGTH (filename)] = 0;
|
0
|
937 if (lsuffix != 0) /* Bug happens on CCI if lsuffix is 0. */
|
|
938 strncat (fn, nsuffix, lsuffix);
|
173
|
939
|
0
|
940 /* Ignore file if it's a directory. */
|
|
941 if (stat (fn, &st) >= 0
|
|
942 && (st.st_mode & S_IFMT) != S_IFDIR)
|
|
943 {
|
|
944 /* Check that we can access or open it. */
|
|
945 if (mode >= 0)
|
|
946 fd = access (fn, mode);
|
|
947 else
|
251
|
948 fd = open (fn, O_RDONLY | OPEN_BINARY, 0);
|
173
|
949
|
0
|
950 if (fd >= 0)
|
|
951 {
|
|
952 /* We succeeded; return this descriptor and filename. */
|
|
953 if (storeptr)
|
|
954 *storeptr = build_string (fn);
|
|
955 UNGCPRO;
|
173
|
956
|
265
|
957 #ifndef WINDOWSNT
|
0
|
958 /* If we actually opened the file, set close-on-exec flag
|
|
959 on the new descriptor so that subprocesses can't whack
|
|
960 at it. */
|
|
961 if (mode < 0)
|
|
962 (void) fcntl (fd, F_SETFD, FD_CLOEXEC);
|
118
|
963 #endif
|
173
|
964
|
0
|
965 return fd;
|
|
966 }
|
|
967 }
|
173
|
968
|
0
|
969 /* Advance to next suffix. */
|
|
970 if (esuffix == 0)
|
|
971 break;
|
|
972 nsuffix += lsuffix + 1;
|
|
973 }
|
173
|
974
|
0
|
975 UNGCPRO;
|
|
976 return -1;
|
|
977 }
|
|
978
|
|
979 /* do the same as locate_file() but don't use any hash tables. */
|
|
980
|
|
981 static int
|
|
982 locate_file_without_hash (Lisp_Object path, Lisp_Object str,
|
|
983 CONST char *suffix, Lisp_Object *storeptr,
|
|
984 int mode)
|
|
985 {
|
|
986 /* This function can GC */
|
|
987 int absolute;
|
|
988 struct gcpro gcpro1;
|
|
989
|
|
990 /* is this necessary? */
|
|
991 GCPRO1 (path);
|
|
992
|
|
993 absolute = !NILP (Ffile_name_absolute_p (str));
|
|
994
|
|
995 for (; !NILP (path); path = Fcdr (path))
|
|
996 {
|
|
997 int val = locate_file_in_directory (Fcar (path), str, suffix,
|
|
998 storeptr, mode);
|
|
999 if (val >= 0)
|
|
1000 {
|
|
1001 UNGCPRO;
|
|
1002 return val;
|
|
1003 }
|
|
1004 if (absolute)
|
|
1005 break;
|
|
1006 }
|
173
|
1007
|
0
|
1008 UNGCPRO;
|
|
1009 return -1;
|
|
1010 }
|
|
1011
|
|
1012 /* Construct a list of all files to search for. */
|
|
1013
|
|
1014 static Lisp_Object
|
|
1015 locate_file_construct_suffixed_files (Lisp_Object str, CONST char *suffix)
|
|
1016 {
|
|
1017 int want_size;
|
|
1018 int fn_size = 100;
|
|
1019 char buf[100];
|
|
1020 char *fn = buf;
|
|
1021 CONST char *nsuffix;
|
|
1022 Lisp_Object suffixtab = Qnil;
|
173
|
1023
|
0
|
1024 /* Calculate maximum size of any filename made from
|
|
1025 this path element/specified file name and any possible suffix. */
|
16
|
1026 want_size = strlen (suffix) + XSTRING_LENGTH (str) + 1;
|
0
|
1027 if (fn_size < want_size)
|
|
1028 fn = (char *) alloca (fn_size = 100 + want_size);
|
173
|
1029
|
0
|
1030 nsuffix = suffix;
|
173
|
1031
|
0
|
1032 while (1)
|
|
1033 {
|
|
1034 char *esuffix = (char *) strchr (nsuffix, ':');
|
|
1035 int lsuffix = ((esuffix) ? (esuffix - nsuffix) : strlen (nsuffix));
|
173
|
1036
|
0
|
1037 /* Concatenate path element/specified name with the suffix. */
|
16
|
1038 strncpy (fn, (char *) XSTRING_DATA (str), XSTRING_LENGTH (str));
|
|
1039 fn[XSTRING_LENGTH (str)] = 0;
|
0
|
1040 if (lsuffix != 0) /* Bug happens on CCI if lsuffix is 0. */
|
|
1041 strncat (fn, nsuffix, lsuffix);
|
173
|
1042
|
0
|
1043 suffixtab = Fcons (build_string (fn), suffixtab);
|
|
1044 /* Advance to next suffix. */
|
|
1045 if (esuffix == 0)
|
|
1046 break;
|
|
1047 nsuffix += lsuffix + 1;
|
|
1048 }
|
|
1049 return Fnreverse (suffixtab);
|
|
1050 }
|
|
1051
|
272
|
1052 DEFUN ("locate-file-clear-hashing", Flocate_file_clear_hashing, 1, 1, 0, /*
|
|
1053 Clear the hash records for the specified list of directories.
|
|
1054 `locate-file' uses a hashing scheme to speed lookup, and will correctly
|
|
1055 track the following environmental changes:
|
|
1056
|
|
1057 -- changes of any sort to the list of directories to be searched.
|
|
1058 -- addition and deletion of non-shadowing files (see below) from the
|
|
1059 directories in the list.
|
|
1060 -- byte-compilation of a .el file into a .elc file.
|
|
1061
|
|
1062 `locate-file' will primarily get confused if you add a file that shadows
|
|
1063 \(i.e. has the same name as) another file further down in the directory list.
|
|
1064 In this case, you must call `locate-file-clear-hashing'.
|
|
1065 */
|
|
1066 (path))
|
|
1067 {
|
|
1068 Lisp_Object pathtail;
|
|
1069
|
|
1070 for (pathtail = path; !NILP (pathtail); pathtail = Fcdr (pathtail))
|
|
1071 {
|
|
1072 Lisp_Object pathel = Fcar (pathtail);
|
|
1073 if (!purified (pathel))
|
|
1074 Fput (pathel, Qlocate_file_hash_table, Qnil);
|
|
1075 }
|
|
1076 return Qnil;
|
|
1077 }
|
|
1078
|
0
|
1079 /* Search for a file whose name is STR, looking in directories
|
|
1080 in the Lisp list PATH, and trying suffixes from SUFFIX.
|
|
1081 SUFFIX is a string containing possible suffixes separated by colons.
|
|
1082 On success, returns a file descriptor. On failure, returns -1.
|
|
1083
|
|
1084 MODE nonnegative means don't open the files,
|
|
1085 just look for one for which access(file,MODE) succeeds. In this case,
|
|
1086 returns 1 on success.
|
|
1087
|
|
1088 If STOREPTR is nonzero, it points to a slot where the name of
|
|
1089 the file actually found should be stored as a Lisp string.
|
|
1090 Nil is stored there on failure.
|
|
1091
|
|
1092 Called openp() in FSFmacs. */
|
|
1093
|
|
1094 int
|
|
1095 locate_file (Lisp_Object path, Lisp_Object str, CONST char *suffix,
|
|
1096 Lisp_Object *storeptr, int mode)
|
|
1097 {
|
|
1098 /* This function can GC */
|
|
1099 Lisp_Object suffixtab = Qnil;
|
|
1100 Lisp_Object pathtail;
|
|
1101 int val;
|
|
1102 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1103
|
|
1104 if (storeptr)
|
|
1105 *storeptr = Qnil;
|
|
1106
|
|
1107 /* if this filename has directory components, it's too complicated
|
|
1108 to try and use the hash tables. */
|
|
1109 if (!NILP (Ffile_name_directory (str)))
|
|
1110 return locate_file_without_hash (path, str, suffix, storeptr,
|
|
1111 mode);
|
|
1112
|
|
1113 /* Is it really necessary to gcpro path and str? It shouldn't be
|
|
1114 unless some caller has fucked up. */
|
|
1115 GCPRO3 (path, str, suffixtab);
|
|
1116
|
|
1117 suffixtab = locate_file_construct_suffixed_files (str, suffix);
|
|
1118
|
|
1119 for (pathtail = path; !NILP (pathtail); pathtail = Fcdr (pathtail))
|
|
1120 {
|
|
1121 Lisp_Object pathel = Fcar (pathtail);
|
|
1122 Lisp_Object hashtab;
|
|
1123 Lisp_Object tail;
|
|
1124 int found;
|
|
1125
|
|
1126 /* If this path element is relative, we have to look by hand.
|
|
1127 Can't set string property in a pure string. */
|
|
1128 if (NILP (pathel) || NILP (Ffile_name_absolute_p (pathel)) ||
|
|
1129 purified (pathel))
|
|
1130 {
|
|
1131 val = locate_file_in_directory (pathel, str, suffix, storeptr,
|
|
1132 mode);
|
|
1133 if (val >= 0)
|
|
1134 {
|
|
1135 UNGCPRO;
|
|
1136 return val;
|
|
1137 }
|
|
1138 continue;
|
|
1139 }
|
|
1140
|
|
1141 hashtab = locate_file_find_directory_hash_table (pathel);
|
|
1142
|
|
1143 /* Loop over suffixes. */
|
195
|
1144 for (tail = suffixtab, found = 0; !found && CONSP (tail);
|
|
1145 tail = XCDR (tail))
|
0
|
1146 {
|
195
|
1147 if (!NILP (Fgethash (XCAR (tail), hashtab, Qnil)))
|
0
|
1148 found = 1;
|
|
1149 }
|
|
1150
|
|
1151 if (found)
|
|
1152 {
|
|
1153 /* This is a likely candidate. Look by hand in this directory
|
|
1154 so we don't get thrown off if someone byte-compiles a file. */
|
|
1155 val = locate_file_in_directory (pathel, str, suffix, storeptr,
|
|
1156 mode);
|
|
1157 if (val >= 0)
|
|
1158 {
|
|
1159 UNGCPRO;
|
|
1160 return val;
|
|
1161 }
|
|
1162
|
|
1163 /* Hmm ... the file isn't actually there. (Or possibly it's
|
|
1164 a directory ...) So refresh our hashing. */
|
|
1165 locate_file_refresh_hashing (pathel);
|
|
1166 }
|
|
1167 }
|
|
1168
|
|
1169 /* File is probably not there, but check the hard way just in case. */
|
|
1170 val = locate_file_without_hash (path, str, suffix, storeptr,
|
|
1171 mode);
|
|
1172 if (val >= 0)
|
|
1173 {
|
|
1174 /* Sneaky user added a file without telling us. */
|
|
1175 Flocate_file_clear_hashing (path);
|
|
1176 }
|
|
1177
|
|
1178 UNGCPRO;
|
|
1179 return val;
|
|
1180 }
|
|
1181
|
|
1182
|
|
1183 #ifdef LOADHIST
|
|
1184
|
|
1185 /* Merge the list we've accumulated of globals from the current input source
|
|
1186 into the load_history variable. The details depend on whether
|
|
1187 the source has an associated file name or not. */
|
|
1188
|
|
1189 static void
|
|
1190 build_load_history (int loading, Lisp_Object source)
|
|
1191 {
|
|
1192 REGISTER Lisp_Object tail, prev, newelt;
|
|
1193 REGISTER Lisp_Object tem, tem2;
|
|
1194 int foundit;
|
|
1195
|
233
|
1196 #if !defined(LOADHIST_DUMPED)
|
0
|
1197 /* Don't bother recording anything for preloaded files. */
|
|
1198 if (purify_flag)
|
|
1199 return;
|
233
|
1200 #endif
|
0
|
1201
|
|
1202 tail = Vload_history;
|
|
1203 prev = Qnil;
|
|
1204 foundit = 0;
|
|
1205 while (!NILP (tail))
|
|
1206 {
|
|
1207 tem = Fcar (tail);
|
|
1208
|
|
1209 /* Find the feature's previous assoc list... */
|
195
|
1210 if (internal_equal (source, Fcar (tem), 0))
|
0
|
1211 {
|
|
1212 foundit = 1;
|
|
1213
|
|
1214 /* If we're loading, remove it. */
|
|
1215 if (loading)
|
173
|
1216 {
|
0
|
1217 if (NILP (prev))
|
|
1218 Vload_history = Fcdr (tail);
|
|
1219 else
|
|
1220 Fsetcdr (prev, Fcdr (tail));
|
|
1221 }
|
|
1222
|
|
1223 /* Otherwise, cons on new symbols that are not already members. */
|
|
1224 else
|
|
1225 {
|
|
1226 tem2 = Vcurrent_load_list;
|
|
1227
|
|
1228 while (CONSP (tem2))
|
|
1229 {
|
195
|
1230 newelt = XCAR (tem2);
|
0
|
1231
|
|
1232 if (NILP (Fmemq (newelt, tem)))
|
|
1233 Fsetcar (tail, Fcons (Fcar (tem),
|
|
1234 Fcons (newelt, Fcdr (tem))));
|
|
1235
|
195
|
1236 tem2 = XCDR (tem2);
|
0
|
1237 QUIT;
|
|
1238 }
|
|
1239 }
|
|
1240 }
|
|
1241 else
|
|
1242 prev = tail;
|
|
1243 tail = Fcdr (tail);
|
|
1244 QUIT;
|
|
1245 }
|
|
1246
|
|
1247 /* If we're loading, cons the new assoc onto the front of load-history,
|
|
1248 the most-recently-loaded position. Also do this if we didn't find
|
|
1249 an existing member for the current source. */
|
|
1250 if (loading || !foundit)
|
|
1251 Vload_history = Fcons (Fnreverse (Vcurrent_load_list),
|
|
1252 Vload_history);
|
|
1253 }
|
|
1254
|
|
1255 #else /* !LOADHIST */
|
|
1256 #define build_load_history(x,y)
|
|
1257 #endif /* !LOADHIST */
|
|
1258
|
|
1259
|
|
1260 #if 0 /* FSFmacs defun hack */
|
|
1261 Lisp_Object
|
|
1262 unreadpure (void) /* Used as unwind-protect function in readevalloop */
|
|
1263 {
|
|
1264 read_pure = 0;
|
|
1265 return Qnil;
|
|
1266 }
|
|
1267 #endif /* 0 */
|
|
1268
|
|
1269 static void
|
173
|
1270 readevalloop (Lisp_Object readcharfun,
|
0
|
1271 Lisp_Object sourcename,
|
|
1272 Lisp_Object (*evalfun) (Lisp_Object),
|
|
1273 int printflag)
|
|
1274 {
|
|
1275 /* This function can GC */
|
|
1276 REGISTER Emchar c;
|
|
1277 REGISTER Lisp_Object val;
|
|
1278 int speccount = specpdl_depth ();
|
|
1279 struct gcpro gcpro1;
|
|
1280 struct buffer *b = 0;
|
|
1281
|
|
1282 if (BUFFERP (readcharfun))
|
|
1283 b = XBUFFER (readcharfun);
|
|
1284 else if (MARKERP (readcharfun))
|
|
1285 b = XMARKER (readcharfun)->buffer;
|
|
1286
|
267
|
1287 /* Don't do this. It is not necessary, and it needlessly exposes
|
|
1288 READCHARFUN (which can be a stream) to Lisp. --hniksic */
|
|
1289 /*specbind (Qstandard_input, readcharfun);*/
|
|
1290
|
0
|
1291 specbind (Qcurrent_load_list, Qnil);
|
|
1292
|
|
1293 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
|
|
1294 Vcurrent_compiled_function_annotation = Qnil;
|
|
1295 #endif
|
|
1296 GCPRO1 (sourcename);
|
|
1297
|
|
1298 LOADHIST_ATTACH (sourcename);
|
|
1299
|
|
1300 while (1)
|
|
1301 {
|
|
1302 QUIT;
|
|
1303
|
|
1304 if (b != 0 && !BUFFER_LIVE_P (b))
|
|
1305 error ("Reading from killed buffer");
|
|
1306
|
|
1307 c = readchar (readcharfun);
|
|
1308 if (c == ';')
|
|
1309 {
|
|
1310 /* Skip comment */
|
|
1311 while ((c = readchar (readcharfun)) != '\n' && c != -1)
|
|
1312 QUIT;
|
|
1313 continue;
|
|
1314 }
|
|
1315 if (c < 0)
|
|
1316 break;
|
|
1317
|
|
1318 /* Ignore whitespace here, so we can detect eof. */
|
|
1319 if (c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r')
|
|
1320 continue;
|
|
1321
|
|
1322 #if 0 /* FSFmacs defun hack */
|
|
1323 if (purify_flag && c == '(')
|
|
1324 {
|
|
1325 int count1 = specpdl_depth ();
|
|
1326 record_unwind_protect (unreadpure, Qnil);
|
|
1327 val = read_list (readcharfun, ')', -1, 1);
|
|
1328 unbind_to (count1, Qnil);
|
|
1329 }
|
|
1330 else
|
|
1331 #else /* No "defun hack" -- Emacs 19 uses read-time syntax for bytecodes */
|
|
1332 {
|
|
1333 unreadchar (readcharfun, c);
|
245
|
1334 read_objects = Qnil;
|
0
|
1335 if (NILP (Vload_read_function))
|
|
1336 val = read0 (readcharfun);
|
|
1337 else
|
|
1338 val = call1 (Vload_read_function, readcharfun);
|
|
1339 }
|
|
1340 #endif
|
|
1341 val = (*evalfun) (val);
|
|
1342 if (printflag)
|
|
1343 {
|
|
1344 Vvalues = Fcons (val, Vvalues);
|
|
1345 if (EQ (Vstandard_output, Qt))
|
|
1346 Fprin1 (val, Qnil);
|
|
1347 else
|
|
1348 Fprint (val, Qnil);
|
|
1349 }
|
|
1350 }
|
|
1351
|
|
1352 build_load_history (LSTREAMP (readcharfun) ||
|
|
1353 /* This looks weird, but it's what's in FSFmacs */
|
|
1354 (b ? BUF_NARROWED (b) : BUF_NARROWED (current_buffer)),
|
|
1355 sourcename);
|
|
1356 UNGCPRO;
|
|
1357
|
|
1358 unbind_to (speccount, Qnil);
|
|
1359 }
|
|
1360
|
20
|
1361 DEFUN ("eval-buffer", Feval_buffer, 0, 2, "bBuffer: ", /*
|
0
|
1362 Execute BUFFER as Lisp code.
|
|
1363 Programs can pass two arguments, BUFFER and PRINTFLAG.
|
|
1364 BUFFER is the buffer to evaluate (nil means use current buffer).
|
|
1365 PRINTFLAG controls printing of output:
|
|
1366 nil means discard it; anything else is stream for print.
|
|
1367
|
|
1368 If there is no error, point does not move. If there is an error,
|
|
1369 point remains at the end of the last character read from the buffer.
|
|
1370 Execute BUFFER as Lisp code.
|
20
|
1371 */
|
|
1372 (bufname, printflag))
|
0
|
1373 {
|
|
1374 /* This function can GC */
|
|
1375 int speccount = specpdl_depth ();
|
|
1376 Lisp_Object tem, buf;
|
|
1377
|
|
1378 if (NILP (bufname))
|
|
1379 buf = Fcurrent_buffer ();
|
|
1380 else
|
|
1381 buf = Fget_buffer (bufname);
|
|
1382 if (NILP (buf))
|
|
1383 error ("No such buffer.");
|
|
1384
|
|
1385 if (NILP (printflag))
|
|
1386 tem = Qsymbolp; /* #### #@[]*&$#*[& SI:NULL-STREAM */
|
|
1387 else
|
|
1388 tem = printflag;
|
|
1389 specbind (Qstandard_output, tem);
|
|
1390 record_unwind_protect (save_excursion_restore, save_excursion_save ());
|
|
1391 BUF_SET_PT (XBUFFER (buf), BUF_BEGV (XBUFFER (buf)));
|
|
1392 readevalloop (buf, XBUFFER (buf)->filename, Feval,
|
|
1393 !NILP (printflag));
|
|
1394
|
|
1395 return unbind_to (speccount, Qnil);
|
|
1396 }
|
|
1397
|
|
1398 #if 0
|
149
|
1399 xxDEFUN ("eval-current-buffer", Feval_current_buffer, 0, 1, "", /*
|
0
|
1400 Execute the current buffer as Lisp code.
|
|
1401 Programs can pass argument PRINTFLAG which controls printing of output:
|
|
1402 nil means discard it; anything else is stream for print.
|
|
1403
|
|
1404 If there is no error, point does not move. If there is an error,
|
|
1405 point remains at the end of the last character read from the buffer.
|
149
|
1406 */
|
|
1407 (printflag))
|
0
|
1408 {
|
|
1409 code omitted;
|
|
1410 }
|
149
|
1411 #endif /* 0 */
|
0
|
1412
|
20
|
1413 DEFUN ("eval-region", Feval_region, 2, 3, "r", /*
|
0
|
1414 Execute the region as Lisp code.
|
|
1415 When called from programs, expects two arguments,
|
|
1416 giving starting and ending indices in the current buffer
|
|
1417 of the text to be executed.
|
|
1418 Programs can pass third argument PRINTFLAG which controls output:
|
|
1419 nil means discard it; anything else is stream for printing it.
|
|
1420
|
|
1421 If there is no error, point does not move. If there is an error,
|
|
1422 point remains at the end of the last character read from the buffer.
|
|
1423
|
|
1424 Note: Before evaling the region, this function narrows the buffer to it.
|
|
1425 If the code being eval'd should happen to trigger a redisplay you may
|
|
1426 see some text temporarily disappear because of this.
|
20
|
1427 */
|
|
1428 (b, e, printflag))
|
0
|
1429 {
|
|
1430 /* This function can GC */
|
|
1431 int speccount = specpdl_depth ();
|
|
1432 Lisp_Object tem;
|
|
1433 Lisp_Object cbuf = Fcurrent_buffer ();
|
|
1434
|
|
1435 if (NILP (printflag))
|
|
1436 tem = Qsymbolp; /* #### #@[]*&$#*[& SI:NULL-STREAM */
|
|
1437 else
|
|
1438 tem = printflag;
|
|
1439 specbind (Qstandard_output, tem);
|
|
1440
|
|
1441 if (NILP (printflag))
|
|
1442 record_unwind_protect (save_excursion_restore, save_excursion_save ());
|
|
1443 record_unwind_protect (save_restriction_restore, save_restriction_save ());
|
|
1444
|
|
1445 /* This both uses b and checks its type. */
|
|
1446 Fgoto_char (b, cbuf);
|
|
1447 Fnarrow_to_region (make_int (BUF_BEGV (current_buffer)), e, cbuf);
|
|
1448 readevalloop (cbuf, XBUFFER (cbuf)->filename, Feval,
|
|
1449 !NILP (printflag));
|
|
1450
|
|
1451 return unbind_to (speccount, Qnil);
|
|
1452 }
|
|
1453
|
20
|
1454 DEFUN ("read", Fread, 0, 1, 0, /*
|
0
|
1455 Read one Lisp expression as text from STREAM, return as Lisp object.
|
|
1456 If STREAM is nil, use the value of `standard-input' (which see).
|
|
1457 STREAM or the value of `standard-input' may be:
|
|
1458 a buffer (read from point and advance it)
|
|
1459 a marker (read from where it points and advance it)
|
|
1460 a function (call it with no arguments for each character,
|
|
1461 call it with a char as argument to push a char back)
|
|
1462 a string (takes text from string, starting at the beginning)
|
|
1463 t (read text line using minibuffer and use it).
|
20
|
1464 */
|
|
1465 (stream))
|
0
|
1466 {
|
|
1467 if (NILP (stream))
|
|
1468 stream = Vstandard_input;
|
|
1469 if (EQ (stream, Qt))
|
|
1470 stream = Qread_char;
|
|
1471
|
245
|
1472 read_objects = Qnil;
|
|
1473
|
0
|
1474 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
|
|
1475 Vcurrent_compiled_function_annotation = Qnil;
|
|
1476 #endif
|
|
1477 if (EQ (stream, Qread_char))
|
|
1478 {
|
173
|
1479 Lisp_Object val = call1 (Qread_from_minibuffer,
|
0
|
1480 build_translated_string ("Lisp expression: "));
|
173
|
1481 return Fcar (Fread_from_string (val, Qnil, Qnil));
|
0
|
1482 }
|
|
1483
|
|
1484 if (STRINGP (stream))
|
|
1485 return Fcar (Fread_from_string (stream, Qnil, Qnil));
|
|
1486
|
|
1487 return read0 (stream);
|
|
1488 }
|
|
1489
|
20
|
1490 DEFUN ("read-from-string", Fread_from_string, 1, 3, 0, /*
|
0
|
1491 Read one Lisp expression which is represented as text by STRING.
|
|
1492 Returns a cons: (OBJECT-READ . FINAL-STRING-INDEX).
|
|
1493 START and END optionally delimit a substring of STRING from which to read;
|
|
1494 they default to 0 and (length STRING) respectively.
|
20
|
1495 */
|
|
1496 (string, start, end))
|
0
|
1497 {
|
|
1498 Bytecount startval, endval;
|
|
1499 Lisp_Object tem;
|
|
1500 Lisp_Object lispstream = Qnil;
|
|
1501 struct gcpro gcpro1;
|
|
1502
|
|
1503 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
|
|
1504 Vcurrent_compiled_function_annotation = Qnil;
|
|
1505 #endif
|
|
1506 GCPRO1 (lispstream);
|
|
1507 CHECK_STRING (string);
|
|
1508 get_string_range_byte (string, start, end, &startval, &endval,
|
|
1509 GB_HISTORICAL_STRING_BEHAVIOR);
|
|
1510 lispstream = make_lisp_string_input_stream (string, startval,
|
|
1511 endval - startval);
|
|
1512
|
245
|
1513 read_objects = Qnil;
|
|
1514
|
0
|
1515 tem = read0 (lispstream);
|
|
1516 /* Yeah, it's ugly. Gonna make something of it?
|
|
1517 At least our reader is reentrant ... */
|
|
1518 tem =
|
|
1519 (Fcons (tem, make_int
|
|
1520 (bytecount_to_charcount
|
16
|
1521 (XSTRING_DATA (string),
|
0
|
1522 startval + Lstream_byte_count (XLSTREAM (lispstream))))));
|
|
1523 Lstream_delete (XLSTREAM (lispstream));
|
|
1524 UNGCPRO;
|
|
1525 return tem;
|
|
1526 }
|
|
1527
|
|
1528
|
|
1529 #ifdef LISP_BACKQUOTES
|
|
1530
|
|
1531 static Lisp_Object
|
|
1532 backquote_unwind (Lisp_Object ptr)
|
|
1533 { /* used as unwind-protect function in read0() */
|
|
1534 int *counter = (int *) get_opaque_ptr (ptr);
|
|
1535 if (--*counter < 0)
|
173
|
1536 *counter = 0;
|
0
|
1537 free_opaque_ptr (ptr);
|
|
1538 return Qnil;
|
|
1539 }
|
|
1540
|
173
|
1541 #endif
|
0
|
1542
|
|
1543 /* Use this for recursive reads, in contexts where internal tokens
|
|
1544 are not allowed. See also read1(). */
|
|
1545 static Lisp_Object
|
|
1546 read0 (Lisp_Object readcharfun)
|
|
1547 {
|
347
|
1548 Lisp_Object val = read1 (readcharfun);
|
|
1549
|
0
|
1550 if (CONSP (val) && UNBOUNDP (XCAR (val)))
|
|
1551 {
|
|
1552 Emchar c = XCHAR (XCDR (val));
|
|
1553 free_cons (XCONS (val));
|
|
1554 return Fsignal (Qinvalid_read_syntax,
|
|
1555 list1 (Fchar_to_string (make_char (c))));
|
|
1556 }
|
|
1557
|
|
1558 return val;
|
|
1559 }
|
|
1560
|
|
1561 static Emchar
|
|
1562 read_escape (Lisp_Object readcharfun)
|
|
1563 {
|
|
1564 /* This function can GC */
|
|
1565 Emchar c = readchar (readcharfun);
|
267
|
1566
|
|
1567 if (c < 0)
|
|
1568 signal_error (Qend_of_file, list1 (READCHARFUN_MAYBE (readcharfun)));
|
|
1569
|
0
|
1570 switch (c)
|
|
1571 {
|
|
1572 case 'a': return '\007';
|
|
1573 case 'b': return '\b';
|
|
1574 case 'd': return 0177;
|
|
1575 case 'e': return 033;
|
|
1576 case 'f': return '\f';
|
|
1577 case 'n': return '\n';
|
|
1578 case 'r': return '\r';
|
|
1579 case 't': return '\t';
|
|
1580 case 'v': return '\v';
|
|
1581 case '\n': return -1;
|
|
1582
|
|
1583 case 'M':
|
|
1584 c = readchar (readcharfun);
|
267
|
1585 if (c < 0)
|
|
1586 signal_error (Qend_of_file, list1 (READCHARFUN_MAYBE (readcharfun)));
|
0
|
1587 if (c != '-')
|
|
1588 error ("Invalid escape character syntax");
|
|
1589 c = readchar (readcharfun);
|
267
|
1590 if (c < 0)
|
|
1591 signal_error (Qend_of_file, list1 (READCHARFUN_MAYBE (readcharfun)));
|
0
|
1592 if (c == '\\')
|
|
1593 c = read_escape (readcharfun);
|
|
1594 return c | 0200;
|
|
1595
|
282
|
1596 /* Originally, FSF_KEYS provided a degree of FSF Emacs
|
|
1597 compatibility by defining character "modifiers" alt, super,
|
|
1598 hyper and shift to infest the characters (i.e. integers).
|
|
1599
|
|
1600 However, this doesn't cut it for XEmacs 20, which
|
|
1601 distinguishes characters from integers. Without Mule, ?\H-a
|
|
1602 simply returns ?a because every character is clipped into
|
|
1603 0-255. Under Mule it is much worse -- ?\H-a with FSF_KEYS
|
|
1604 produces an illegal character, and moves us to crash-land.
|
|
1605
|
|
1606 For these reasons, FSF_KEYS hack is useless and without hope
|
|
1607 of ever working under XEmacs 20. */
|
|
1608 #undef FSF_KEYS
|
|
1609
|
0
|
1610 #ifdef FSF_KEYS
|
|
1611 #define alt_modifier (0x040000)
|
|
1612 #define super_modifier (0x080000)
|
|
1613 #define hyper_modifier (0x100000)
|
|
1614 #define shift_modifier (0x200000)
|
|
1615 /* fsf uses a different modifiers for meta and control. Possibly
|
173
|
1616 byte_compiled code will still work fsfmacs, though... --Stig
|
0
|
1617
|
|
1618 #define ctl_modifier (0x400000)
|
173
|
1619 #define meta_modifier (0x800000)
|
0
|
1620 */
|
267
|
1621 #define FSF_LOSSAGE(mask) \
|
272
|
1622 if (fail_on_bucky_bit_character_escapes || \
|
|
1623 ((c = readchar (readcharfun)) != '-')) \
|
267
|
1624 error ("Invalid escape character syntax"); \
|
|
1625 c = readchar (readcharfun); \
|
|
1626 if (c < 0) \
|
|
1627 signal_error (Qend_of_file, list1 (READCHARFUN_MAYBE (readcharfun))); \
|
|
1628 if (c == '\\') \
|
|
1629 c = read_escape (readcharfun); \
|
0
|
1630 return c | mask
|
|
1631
|
|
1632 case 'S': FSF_LOSSAGE (shift_modifier);
|
|
1633 case 'H': FSF_LOSSAGE (hyper_modifier);
|
|
1634 case 'A': FSF_LOSSAGE (alt_modifier);
|
|
1635 case 's': FSF_LOSSAGE (super_modifier);
|
|
1636 #undef alt_modifier
|
|
1637 #undef super_modifier
|
|
1638 #undef hyper_modifier
|
|
1639 #undef shift_modifier
|
|
1640 #undef FSF_LOSSAGE
|
|
1641
|
|
1642 #endif /* FSF_KEYS */
|
|
1643
|
|
1644 case 'C':
|
|
1645 c = readchar (readcharfun);
|
267
|
1646 if (c < 0)
|
|
1647 signal_error (Qend_of_file, list1 (READCHARFUN_MAYBE (readcharfun)));
|
0
|
1648 if (c != '-')
|
|
1649 error ("Invalid escape character syntax");
|
|
1650 case '^':
|
|
1651 c = readchar (readcharfun);
|
267
|
1652 if (c < 0)
|
|
1653 signal_error (Qend_of_file, list1 (READCHARFUN_MAYBE (readcharfun)));
|
0
|
1654 if (c == '\\')
|
|
1655 c = read_escape (readcharfun);
|
|
1656 /* FSFmacs junk for non-ASCII controls.
|
|
1657 Not used here. */
|
|
1658 if (c == '?')
|
|
1659 return 0177;
|
|
1660 else
|
173
|
1661 return c & (0200 | 037);
|
|
1662
|
0
|
1663 case '0':
|
|
1664 case '1':
|
|
1665 case '2':
|
|
1666 case '3':
|
|
1667 case '4':
|
|
1668 case '5':
|
|
1669 case '6':
|
|
1670 case '7':
|
|
1671 /* An octal escape, as in ANSI C. */
|
|
1672 {
|
|
1673 REGISTER Emchar i = c - '0';
|
|
1674 REGISTER int count = 0;
|
|
1675 while (++count < 3)
|
|
1676 {
|
|
1677 if ((c = readchar (readcharfun)) >= '0' && c <= '7')
|
|
1678 i = (i << 3) + (c - '0');
|
|
1679 else
|
|
1680 {
|
|
1681 unreadchar (readcharfun, c);
|
|
1682 break;
|
|
1683 }
|
|
1684 }
|
|
1685 return i;
|
|
1686 }
|
|
1687
|
|
1688 case 'x':
|
347
|
1689 /* A hex escape, as in ANSI C, except that we only allow latin-1
|
|
1690 characters to be read this way. What is "\x4e03" supposed to
|
|
1691 mean, anyways, if the internal representation is hidden?
|
|
1692 This is also consistent with the treatment of octal escapes. */
|
0
|
1693 {
|
|
1694 REGISTER Emchar i = 0;
|
347
|
1695 REGISTER int count = 0;
|
|
1696 while (++count <= 2)
|
0
|
1697 {
|
|
1698 c = readchar (readcharfun);
|
|
1699 /* Remember, can't use isdigit(), isalpha() etc. on Emchars */
|
|
1700 if (c >= '0' && c <= '9') i = (i << 4) + (c - '0');
|
|
1701 else if (c >= 'a' && c <= 'f') i = (i << 4) + (c - 'a') + 10;
|
|
1702 else if (c >= 'A' && c <= 'F') i = (i << 4) + (c - 'A') + 10;
|
|
1703 else
|
|
1704 {
|
|
1705 unreadchar (readcharfun, c);
|
|
1706 break;
|
|
1707 }
|
|
1708 }
|
|
1709 return i;
|
|
1710 }
|
|
1711
|
70
|
1712 #ifdef MULE
|
|
1713 /* #### need some way of reading an extended character with
|
|
1714 an escape sequence. */
|
|
1715 #endif
|
16
|
1716
|
0
|
1717 default:
|
|
1718 return c;
|
|
1719 }
|
|
1720 }
|
|
1721
|
|
1722
|
|
1723
|
|
1724 /* read symbol-constituent stuff into `Vread_buffer_stream'. */
|
|
1725 static Bytecount
|
|
1726 read_atom_0 (Lisp_Object readcharfun, Emchar firstchar, int *saw_a_backslash)
|
|
1727 {
|
|
1728 /* This function can GC */
|
|
1729 Emchar c = ((firstchar) >= 0 ? firstchar : readchar (readcharfun));
|
|
1730 Lstream_rewind (XLSTREAM (Vread_buffer_stream));
|
|
1731
|
|
1732 *saw_a_backslash = 0;
|
|
1733
|
|
1734 while (c > 040 /* #### - comma should be here as should backquote */
|
|
1735 && !(c == '\"' || c == '\'' || c == ';'
|
|
1736 || c == '(' || c == ')'
|
|
1737 #ifndef LISP_FLOAT_TYPE
|
|
1738 /* If we have floating-point support, then we need
|
|
1739 to allow <digits><dot><digits>. */
|
|
1740 || c =='.'
|
|
1741 #endif /* not LISP_FLOAT_TYPE */
|
|
1742 || c == '[' || c == ']' || c == '#'
|
|
1743 ))
|
|
1744 {
|
|
1745 if (c == '\\')
|
|
1746 {
|
|
1747 c = readchar (readcharfun);
|
267
|
1748 if (c < 0)
|
|
1749 signal_error (Qend_of_file, list1 (READCHARFUN_MAYBE (readcharfun)));
|
0
|
1750 *saw_a_backslash = 1;
|
|
1751 }
|
|
1752 Lstream_put_emchar (XLSTREAM (Vread_buffer_stream), c);
|
|
1753 QUIT;
|
|
1754 c = readchar (readcharfun);
|
|
1755 }
|
|
1756
|
|
1757 if (c >= 0)
|
|
1758 unreadchar (readcharfun, c);
|
|
1759 /* blasted terminating 0 */
|
|
1760 Lstream_put_emchar (XLSTREAM (Vread_buffer_stream), 0);
|
|
1761 Lstream_flush (XLSTREAM (Vread_buffer_stream));
|
|
1762
|
173
|
1763 return Lstream_byte_count (XLSTREAM (Vread_buffer_stream)) - 1;
|
0
|
1764 }
|
|
1765
|
|
1766 static Lisp_Object parse_integer (CONST Bufbyte *buf, Bytecount len, int base);
|
|
1767
|
|
1768 static Lisp_Object
|
|
1769 read_atom (Lisp_Object readcharfun,
|
|
1770 Emchar firstchar,
|
|
1771 int uninterned_symbol)
|
|
1772 {
|
|
1773 /* This function can GC */
|
|
1774 int saw_a_backslash;
|
|
1775 Bytecount len = read_atom_0 (readcharfun, firstchar, &saw_a_backslash);
|
|
1776 char *read_ptr = (char *)
|
|
1777 resizing_buffer_stream_ptr (XLSTREAM (Vread_buffer_stream));
|
|
1778
|
|
1779 /* Is it an integer? */
|
|
1780 if (! (saw_a_backslash || uninterned_symbol))
|
|
1781 {
|
|
1782 /* If a token had any backslashes in it, it is disqualified from
|
|
1783 being an integer or a float. This means that 123\456 is a
|
|
1784 symbol, as is \123 (which is the way (intern "123") prints).
|
110
|
1785 Also, if token was preceded by #:, it's always a symbol.
|
0
|
1786 */
|
|
1787 char *p = read_ptr + len;
|
|
1788 char *p1 = read_ptr;
|
|
1789
|
|
1790 if (*p1 == '+' || *p1 == '-') p1++;
|
|
1791 if (p1 != p)
|
|
1792 {
|
|
1793 int c;
|
|
1794
|
|
1795 while (p1 != p && (c = *p1) >= '0' && c <= '9')
|
|
1796 p1++;
|
|
1797 #ifdef LISP_FLOAT_TYPE
|
|
1798 /* Integers can have trailing decimal points. */
|
|
1799 if (p1 > read_ptr && p1 < p && *p1 == '.')
|
|
1800 p1++;
|
|
1801 #endif
|
|
1802 if (p1 == p)
|
|
1803 {
|
|
1804 /* It is an integer. */
|
|
1805 #ifdef LISP_FLOAT_TYPE
|
|
1806 if (p1[-1] == '.')
|
|
1807 p1[-1] = '\0';
|
|
1808 #endif
|
|
1809 #if 0
|
|
1810 {
|
|
1811 int number = 0;
|
|
1812 if (sizeof (int) == sizeof (EMACS_INT))
|
|
1813 number = atoi (read_buffer);
|
|
1814 else if (sizeof (long) == sizeof (EMACS_INT))
|
|
1815 number = atol (read_buffer);
|
|
1816 else
|
|
1817 abort ();
|
173
|
1818 return make_int (number);
|
0
|
1819 }
|
|
1820 #else
|
173
|
1821 return parse_integer ((Bufbyte *) read_ptr, len, 10);
|
0
|
1822 #endif
|
|
1823 }
|
|
1824 }
|
|
1825 #ifdef LISP_FLOAT_TYPE
|
|
1826 if (isfloat_string (read_ptr))
|
|
1827 return make_float (atof (read_ptr));
|
|
1828 #endif
|
|
1829 }
|
|
1830
|
|
1831 {
|
|
1832 Lisp_Object sym;
|
|
1833 if (uninterned_symbol)
|
173
|
1834 sym = (Fmake_symbol ((purify_flag)
|
0
|
1835 ? make_pure_pname ((Bufbyte *) read_ptr, len, 0)
|
|
1836 : make_string ((Bufbyte *) read_ptr, len)));
|
|
1837 else
|
|
1838 {
|
|
1839 /* intern will purecopy pname if necessary */
|
|
1840 Lisp_Object name = make_string ((Bufbyte *) read_ptr, len);
|
|
1841 sym = Fintern (name, Qnil);
|
267
|
1842
|
|
1843 if (SYMBOL_IS_KEYWORD (sym))
|
|
1844 {
|
|
1845 /* the LISP way is to put keywords in their own package,
|
|
1846 but we don't have packages, so we do something simpler.
|
|
1847 Someday, maybe we'll have packages and then this will
|
|
1848 be reworked. --Stig. */
|
|
1849 XSYMBOL (sym)->value = sym;
|
|
1850 }
|
0
|
1851 }
|
173
|
1852 return sym;
|
0
|
1853 }
|
|
1854 }
|
|
1855
|
|
1856
|
|
1857 static Lisp_Object
|
|
1858 parse_integer (CONST Bufbyte *buf, Bytecount len, int base)
|
|
1859 {
|
|
1860 CONST Bufbyte *lim = buf + len;
|
|
1861 CONST Bufbyte *p = buf;
|
272
|
1862 EMACS_UINT num = 0;
|
0
|
1863 int negativland = 0;
|
|
1864
|
|
1865 if (*p == '-')
|
|
1866 {
|
|
1867 negativland = 1;
|
|
1868 p++;
|
|
1869 }
|
|
1870 else if (*p == '+')
|
|
1871 {
|
|
1872 p++;
|
|
1873 }
|
|
1874
|
|
1875 if (p == lim)
|
|
1876 goto loser;
|
|
1877
|
142
|
1878 for (; (p < lim) && (*p != '\0'); p++)
|
0
|
1879 {
|
|
1880 int c = *p;
|
272
|
1881 EMACS_UINT onum;
|
0
|
1882
|
|
1883 if (isdigit (c))
|
|
1884 c = c - '0';
|
|
1885 else if (isupper (c))
|
|
1886 c = c - 'A' + 10;
|
|
1887 else if (islower (c))
|
|
1888 c = c - 'a' + 10;
|
|
1889 else
|
|
1890 goto loser;
|
173
|
1891
|
0
|
1892 if (c < 0 || c >= base)
|
|
1893 goto loser;
|
|
1894
|
|
1895 onum = num;
|
|
1896 num = num * base + c;
|
|
1897 if (num < onum)
|
|
1898 goto overflow;
|
|
1899 }
|
|
1900
|
|
1901 {
|
288
|
1902 EMACS_INT int_result = negativland ? - (EMACS_INT) num : (EMACS_INT) num;
|
265
|
1903 Lisp_Object result = make_int (int_result);
|
0
|
1904 if (num && ((XINT (result) < 0) != negativland))
|
|
1905 goto overflow;
|
265
|
1906 if (XINT (result) != int_result)
|
0
|
1907 goto overflow;
|
173
|
1908 return result;
|
0
|
1909 }
|
|
1910 overflow:
|
173
|
1911 return Fsignal (Qinvalid_read_syntax,
|
0
|
1912 list3 (build_translated_string
|
|
1913 ("Integer constant overflow in reader"),
|
|
1914 make_string (buf, len),
|
|
1915 make_int (base)));
|
|
1916 loser:
|
173
|
1917 return Fsignal (Qinvalid_read_syntax,
|
0
|
1918 list3 (build_translated_string
|
|
1919 ("Invalid integer constant in reader"),
|
|
1920 make_string (buf, len),
|
|
1921 make_int (base)));
|
|
1922 }
|
|
1923
|
|
1924
|
|
1925 static Lisp_Object
|
|
1926 read_integer (Lisp_Object readcharfun, int base)
|
|
1927 {
|
|
1928 /* This function can GC */
|
|
1929 int saw_a_backslash;
|
|
1930 Bytecount len = read_atom_0 (readcharfun, -1, &saw_a_backslash);
|
|
1931 return (parse_integer
|
|
1932 (resizing_buffer_stream_ptr (XLSTREAM (Vread_buffer_stream)),
|
|
1933 ((saw_a_backslash)
|
|
1934 ? 0 /* make parse_integer signal error */
|
|
1935 : len),
|
|
1936 base));
|
|
1937 }
|
|
1938
|
|
1939 static Lisp_Object
|
|
1940 read_bit_vector (Lisp_Object readcharfun)
|
|
1941 {
|
185
|
1942 unsigned_char_dynarr *dyn = Dynarr_new (unsigned_char);
|
0
|
1943 Emchar c;
|
|
1944
|
|
1945 while (1)
|
|
1946 {
|
|
1947 c = readchar (readcharfun);
|
|
1948 if (c != '0' && c != '1')
|
|
1949 break;
|
|
1950 Dynarr_add (dyn, (unsigned char) (c - '0'));
|
|
1951 }
|
|
1952
|
|
1953 if (c >= 0)
|
|
1954 unreadchar (readcharfun, c);
|
|
1955
|
|
1956 return make_bit_vector_from_byte_vector (Dynarr_atp (dyn, 0),
|
|
1957 Dynarr_length (dyn));
|
|
1958 }
|
|
1959
|
|
1960
|
|
1961
|
|
1962 /* structures */
|
|
1963
|
|
1964 struct structure_type *
|
|
1965 define_structure_type (Lisp_Object type,
|
|
1966 int (*validate) (Lisp_Object data,
|
|
1967 Error_behavior errb),
|
|
1968 Lisp_Object (*instantiate) (Lisp_Object data))
|
|
1969 {
|
|
1970 struct structure_type st;
|
|
1971
|
|
1972 st.type = type;
|
185
|
1973 st.keywords = Dynarr_new (structure_keyword_entry);
|
0
|
1974 st.validate = validate;
|
|
1975 st.instantiate = instantiate;
|
|
1976 Dynarr_add (the_structure_type_dynarr, st);
|
|
1977
|
|
1978 return Dynarr_atp (the_structure_type_dynarr,
|
|
1979 Dynarr_length (the_structure_type_dynarr) - 1);
|
|
1980 }
|
|
1981
|
|
1982 void
|
|
1983 define_structure_type_keyword (struct structure_type *st, Lisp_Object keyword,
|
|
1984 int (*validate) (Lisp_Object keyword,
|
|
1985 Lisp_Object value,
|
|
1986 Error_behavior errb))
|
|
1987 {
|
|
1988 struct structure_keyword_entry en;
|
|
1989
|
|
1990 en.keyword = keyword;
|
|
1991 en.validate = validate;
|
|
1992 Dynarr_add (st->keywords, en);
|
|
1993 }
|
|
1994
|
|
1995 static struct structure_type *
|
|
1996 recognized_structure_type (Lisp_Object type)
|
|
1997 {
|
|
1998 int i;
|
|
1999
|
|
2000 for (i = 0; i < Dynarr_length (the_structure_type_dynarr); i++)
|
|
2001 {
|
|
2002 struct structure_type *st = Dynarr_atp (the_structure_type_dynarr, i);
|
|
2003 if (EQ (st->type, type))
|
|
2004 return st;
|
|
2005 }
|
|
2006
|
|
2007 return 0;
|
|
2008 }
|
|
2009
|
|
2010 static Lisp_Object
|
|
2011 read_structure (Lisp_Object readcharfun)
|
|
2012 {
|
|
2013 Emchar c = readchar (readcharfun);
|
|
2014 Lisp_Object list = Qnil;
|
|
2015 Lisp_Object orig_list = Qnil;
|
|
2016 Lisp_Object already_seen = Qnil;
|
173
|
2017 int keyword_count;
|
0
|
2018 struct structure_type *st;
|
|
2019 struct gcpro gcpro1, gcpro2;
|
|
2020
|
|
2021 GCPRO2 (orig_list, already_seen);
|
|
2022 if (c != '(')
|
|
2023 RETURN_UNGCPRO (continuable_syntax_error ("#s not followed by paren"));
|
|
2024 list = read_list (readcharfun, ')', 0, 0);
|
|
2025 orig_list = list;
|
|
2026 {
|
|
2027 int len = XINT (Flength (list));
|
|
2028 if (len == 0)
|
|
2029 RETURN_UNGCPRO (continuable_syntax_error
|
|
2030 ("structure type not specified"));
|
|
2031 if (!(len & 1))
|
|
2032 RETURN_UNGCPRO
|
|
2033 (continuable_syntax_error
|
|
2034 ("structures must have alternating keyword/value pairs"));
|
|
2035 }
|
173
|
2036
|
0
|
2037 st = recognized_structure_type (XCAR (list));
|
|
2038 if (!st)
|
173
|
2039 RETURN_UNGCPRO (Fsignal (Qinvalid_read_syntax,
|
|
2040 list2 (build_translated_string
|
|
2041 ("unrecognized structure type"),
|
|
2042 XCAR (list))));
|
0
|
2043
|
|
2044 list = Fcdr (list);
|
173
|
2045 keyword_count = Dynarr_length (st->keywords);
|
0
|
2046 while (!NILP (list))
|
|
2047 {
|
|
2048 Lisp_Object keyword, value;
|
|
2049 int i;
|
173
|
2050 struct structure_keyword_entry *en = NULL;
|
|
2051
|
0
|
2052 keyword = Fcar (list);
|
|
2053 list = Fcdr (list);
|
|
2054 value = Fcar (list);
|
|
2055 list = Fcdr (list);
|
173
|
2056
|
0
|
2057 if (!NILP (memq_no_quit (keyword, already_seen)))
|
173
|
2058 RETURN_UNGCPRO (Fsignal (Qinvalid_read_syntax,
|
|
2059 list2 (build_translated_string
|
|
2060 ("structure keyword already seen"),
|
|
2061 keyword)));
|
|
2062
|
|
2063 for (i = 0; i < keyword_count; i++)
|
0
|
2064 {
|
|
2065 en = Dynarr_atp (st->keywords, i);
|
|
2066 if (EQ (keyword, en->keyword))
|
|
2067 break;
|
|
2068 }
|
|
2069
|
173
|
2070 if (i == keyword_count)
|
0
|
2071 RETURN_UNGCPRO (Fsignal (Qinvalid_read_syntax,
|
|
2072 list2 (build_translated_string
|
|
2073 ("unrecognized structure keyword"),
|
|
2074 keyword)));
|
|
2075
|
|
2076 if (en->validate && ! (en->validate) (keyword, value, ERROR_ME))
|
|
2077 RETURN_UNGCPRO
|
|
2078 (Fsignal (Qinvalid_read_syntax,
|
|
2079 list3 (build_translated_string
|
|
2080 ("invalid value for structure keyword"),
|
|
2081 keyword, value)));
|
|
2082
|
|
2083 already_seen = Fcons (keyword, already_seen);
|
|
2084 }
|
|
2085
|
|
2086 if (st->validate && ! (st->validate) (orig_list, ERROR_ME))
|
173
|
2087 RETURN_UNGCPRO (Fsignal (Qinvalid_read_syntax,
|
|
2088 list2 (build_translated_string
|
|
2089 ("invalid structure initializer"),
|
|
2090 orig_list)));
|
0
|
2091
|
|
2092 RETURN_UNGCPRO ((st->instantiate) (XCDR (orig_list)));
|
173
|
2093 }
|
0
|
2094
|
|
2095
|
|
2096 static Lisp_Object read_compiled_function (Lisp_Object readcharfun,
|
|
2097 int terminator);
|
|
2098 static Lisp_Object read_vector (Lisp_Object readcharfun, int terminator);
|
|
2099
|
|
2100 /* Get the next character; filter out whitespace and comments */
|
|
2101
|
|
2102 static Emchar
|
|
2103 reader_nextchar (Lisp_Object readcharfun)
|
|
2104 {
|
|
2105 /* This function can GC */
|
|
2106 Emchar c;
|
|
2107
|
|
2108 retry:
|
|
2109 QUIT;
|
|
2110 c = readchar (readcharfun);
|
|
2111 if (c < 0)
|
265
|
2112 signal_error (Qend_of_file, list1 (READCHARFUN_MAYBE (readcharfun)));
|
0
|
2113
|
|
2114 switch (c)
|
|
2115 {
|
|
2116 default:
|
|
2117 {
|
|
2118 /* Ignore whitespace and control characters */
|
|
2119 if (c <= 040)
|
|
2120 goto retry;
|
173
|
2121 return c;
|
0
|
2122 }
|
|
2123
|
|
2124 case ';':
|
|
2125 {
|
|
2126 /* Comment */
|
|
2127 while ((c = readchar (readcharfun)) >= 0 && c != '\n')
|
|
2128 QUIT;
|
|
2129 goto retry;
|
|
2130 }
|
|
2131 }
|
|
2132 }
|
|
2133
|
|
2134 #if 0
|
|
2135 static Lisp_Object
|
|
2136 list2_pure (int pure, Lisp_Object a, Lisp_Object b)
|
|
2137 {
|
173
|
2138 return pure ? pure_cons (a, pure_cons (b, Qnil)) : list2 (a, b);
|
0
|
2139 }
|
|
2140 #endif
|
|
2141
|
|
2142 /* Read the next Lisp object from the stream READCHARFUN and return it.
|
|
2143 If the return value is a cons whose car is Qunbound, then read1()
|
|
2144 encountered a misplaced token (e.g. a right bracket, right paren,
|
|
2145 or dot followed by a non-number). To filter this stuff out,
|
|
2146 use read0(). */
|
173
|
2147
|
0
|
2148 static Lisp_Object
|
|
2149 read1 (Lisp_Object readcharfun)
|
|
2150 {
|
|
2151 Emchar c;
|
|
2152
|
|
2153 retry:
|
|
2154 c = reader_nextchar (readcharfun);
|
|
2155
|
|
2156 switch (c)
|
|
2157 {
|
|
2158 case '(':
|
|
2159 {
|
|
2160 #ifdef LISP_BACKQUOTES /* old backquote compatibility in lisp reader */
|
|
2161 /* if this is disabled, then other code in eval.c must be enabled */
|
|
2162 Emchar ch = reader_nextchar (readcharfun);
|
|
2163 switch (ch)
|
|
2164 {
|
|
2165 case '`':
|
|
2166 {
|
|
2167 Lisp_Object tem;
|
|
2168 int speccount = specpdl_depth ();
|
|
2169 ++old_backquote_flag;
|
|
2170 record_unwind_protect (backquote_unwind,
|
|
2171 make_opaque_ptr (&old_backquote_flag));
|
|
2172 tem = read0 (readcharfun);
|
|
2173 unbind_to (speccount, Qnil);
|
|
2174 ch = reader_nextchar (readcharfun);
|
|
2175 if (ch != ')')
|
|
2176 {
|
|
2177 unreadchar (readcharfun, ch);
|
|
2178 return Fsignal (Qinvalid_read_syntax,
|
|
2179 list1 (build_string
|
|
2180 ("Weird old-backquote syntax")));
|
|
2181 }
|
|
2182 return list2 (Qbacktick, tem);
|
|
2183 }
|
|
2184 case ',':
|
|
2185 {
|
|
2186 if (old_backquote_flag)
|
|
2187 {
|
|
2188 Lisp_Object tem, comma_type;
|
|
2189 ch = readchar (readcharfun);
|
|
2190 if (ch == '@')
|
|
2191 comma_type = Qcomma_at;
|
|
2192 else
|
|
2193 {
|
|
2194 if (ch >= 0)
|
|
2195 unreadchar (readcharfun, ch);
|
|
2196 comma_type = Qcomma;
|
|
2197 }
|
|
2198 tem = read0 (readcharfun);
|
|
2199 ch = reader_nextchar (readcharfun);
|
|
2200 if (ch != ')')
|
|
2201 {
|
|
2202 unreadchar (readcharfun, ch);
|
|
2203 return Fsignal (Qinvalid_read_syntax,
|
|
2204 list1 (build_string
|
|
2205 ("Weird old-backquote syntax")));
|
|
2206 }
|
|
2207 return list2 (comma_type, tem);
|
|
2208 }
|
|
2209 else
|
|
2210 {
|
|
2211 unreadchar (readcharfun, ch);
|
|
2212 #if 0
|
|
2213 return Fsignal (Qinvalid_read_syntax,
|
|
2214 list1 (build_string ("Comma outside of backquote")));
|
|
2215 #else
|
|
2216 /* #### - yuck....but this is reverse compatible. */
|
272
|
2217 /* mostly this is required by edebug, which does its own
|
0
|
2218 annotated reading. We need to have an annotated_read
|
|
2219 function that records (with markers) the buffer
|
|
2220 positions of the elements that make up lists, then that
|
|
2221 can be used in edebug and bytecomp and the check above
|
|
2222 can go back in. --Stig */
|
|
2223 break;
|
|
2224 #endif
|
|
2225 }
|
|
2226 }
|
|
2227 default:
|
|
2228 unreadchar (readcharfun, ch);
|
|
2229 } /* switch(ch) */
|
|
2230 #endif /* old backquote crap... */
|
|
2231 return read_list (readcharfun, ')', 1, 1);
|
|
2232 }
|
|
2233 case '[':
|
173
|
2234 return read_vector (readcharfun, ']');
|
0
|
2235
|
|
2236 case ')':
|
|
2237 case ']':
|
|
2238 /* #### - huh? these don't do what they seem... */
|
173
|
2239 return noseeum_cons (Qunbound, make_char (c));
|
0
|
2240 case '.':
|
|
2241 {
|
|
2242 #ifdef LISP_FLOAT_TYPE
|
|
2243 /* If a period is followed by a number, then we should read it
|
|
2244 as a floating point number. Otherwise, it denotes a dotted
|
|
2245 pair.
|
|
2246 */
|
|
2247 c = readchar (readcharfun);
|
|
2248 unreadchar (readcharfun, c);
|
|
2249
|
|
2250 /* Can't use isdigit on Emchars */
|
|
2251 if (c < '0' || c > '9')
|
173
|
2252 return noseeum_cons (Qunbound, make_char ('.'));
|
0
|
2253
|
|
2254 /* Note that read_atom will loop
|
|
2255 at least once, assuring that we will not try to UNREAD
|
|
2256 two characters in a row.
|
|
2257 (I think this doesn't matter anymore because there should
|
|
2258 be no more danger in unreading multiple characters) */
|
173
|
2259 return read_atom (readcharfun, '.', 0);
|
0
|
2260
|
|
2261 #else /* ! LISP_FLOAT_TYPE */
|
173
|
2262 return noseeum_cons (Qunbound, make_char ('.'));
|
0
|
2263 #endif /* ! LISP_FLOAT_TYPE */
|
|
2264 }
|
|
2265
|
|
2266 case '#':
|
|
2267 {
|
|
2268 c = readchar (readcharfun);
|
|
2269 switch (c)
|
|
2270 {
|
|
2271 #if 0 /* FSFmacs silly char-table syntax */
|
|
2272 case '^':
|
|
2273 #endif
|
|
2274 #if 0 /* FSFmacs silly bool-vector syntax */
|
|
2275 case '&':
|
|
2276 #endif
|
|
2277 /* "#["-- byte-code constant syntax */
|
|
2278 /* purecons #[...] syntax */
|
173
|
2279 case '[': return read_compiled_function (readcharfun, ']'
|
|
2280 /*, purify_flag */ );
|
267
|
2281 /* "#:"-- gensym syntax */
|
173
|
2282 case ':': return read_atom (readcharfun, -1, 1);
|
0
|
2283 /* #'x => (function x) */
|
173
|
2284 case '\'': return list2 (Qfunction, read0 (readcharfun));
|
0
|
2285 #if 0
|
|
2286 /* RMS uses this syntax for fat-strings.
|
|
2287 If we use it for vectors, then obscure bugs happen.
|
|
2288 */
|
|
2289 /* "#(" -- Scheme/CL vector syntax */
|
173
|
2290 case '(': return read_vector (readcharfun, ')');
|
0
|
2291 #endif
|
|
2292 #if 0 /* FSFmacs */
|
|
2293 case '(':
|
|
2294 {
|
|
2295 Lisp_Object tmp;
|
|
2296 struct gcpro gcpro1;
|
|
2297
|
|
2298 /* Read the string itself. */
|
|
2299 tmp = read1 (readcharfun);
|
|
2300 if (!STRINGP (tmp))
|
|
2301 {
|
|
2302 if (CONSP (tmp) && UNBOUNDP (XCAR (tmp)))
|
|
2303 free_cons (XCONS (tmp));
|
173
|
2304 return Fsignal (Qinvalid_read_syntax,
|
|
2305 list1 (build_string ("#")));
|
0
|
2306 }
|
|
2307 GCPRO1 (tmp);
|
|
2308 /* Read the intervals and their properties. */
|
|
2309 while (1)
|
|
2310 {
|
|
2311 Lisp_Object beg, end, plist;
|
|
2312 Emchar ch;
|
|
2313 int invalid = 0;
|
173
|
2314
|
0
|
2315 beg = read1 (readcharfun);
|
|
2316 if (CONSP (beg) && UNBOUNDP (XCAR (beg)))
|
|
2317 {
|
|
2318 ch = XCHAR (XCDR (beg));
|
|
2319 free_cons (XCONS (beg));
|
|
2320 if (ch == ')')
|
|
2321 break;
|
|
2322 else
|
|
2323 invalid = 1;
|
|
2324 }
|
|
2325 if (!invalid)
|
|
2326 {
|
|
2327 end = read1 (readcharfun);
|
|
2328 if (CONSP (end) && UNBOUNDP (XCAR (end)))
|
|
2329 {
|
|
2330 free_cons (XCONS (end));
|
|
2331 invalid = 1;
|
|
2332 }
|
|
2333 }
|
|
2334 if (!invalid)
|
|
2335 {
|
|
2336 plist = read1 (readcharfun);
|
|
2337 if (CONSP (plist) && UNBOUNDP (XCAR (plist)))
|
|
2338 {
|
|
2339 free_cons (XCONS (plist));
|
|
2340 invalid = 1;
|
|
2341 }
|
|
2342 }
|
|
2343 if (invalid)
|
|
2344 RETURN_UNGCPRO
|
|
2345 (Fsignal (Qinvalid_read_syntax,
|
|
2346 list2
|
|
2347 (build_string ("invalid string property list"),
|
|
2348 XCDR (plist))));
|
|
2349 Fset_text_properties (beg, end, plist, tmp);
|
|
2350 }
|
|
2351 UNGCPRO;
|
|
2352 return tmp;
|
|
2353 }
|
|
2354 #endif /* 0 */
|
|
2355 case '@':
|
|
2356 {
|
|
2357 /* #@NUMBER is used to skip NUMBER following characters.
|
|
2358 That's used in .elc files to skip over doc strings
|
|
2359 and function definitions. */
|
|
2360 int i, nskip = 0;
|
|
2361
|
|
2362 /* Read a decimal integer. */
|
|
2363 while ((c = readchar (readcharfun)) >= 0
|
|
2364 && c >= '0' && c <= '9')
|
|
2365 nskip = (10 * nskip) + (c - '0');
|
|
2366 if (c >= 0)
|
|
2367 unreadchar (readcharfun, c);
|
|
2368
|
|
2369 /* FSF has code here that maybe caches the skipped
|
|
2370 string. See above for why this is totally
|
|
2371 losing. We handle this differently. */
|
|
2372
|
|
2373 /* Skip that many characters. */
|
|
2374 for (i = 0; i < nskip && c >= 0; i++)
|
|
2375 c = readchar (readcharfun);
|
|
2376
|
|
2377 goto retry;
|
|
2378 }
|
|
2379 case '$': return Vload_file_name_internal;
|
|
2380 /* bit vectors */
|
173
|
2381 case '*': return read_bit_vector (readcharfun);
|
0
|
2382 /* #o10 => 8 -- octal constant syntax */
|
173
|
2383 case 'o': return read_integer (readcharfun, 8);
|
0
|
2384 /* #xdead => 57005 -- hex constant syntax */
|
173
|
2385 case 'x': return read_integer (readcharfun, 16);
|
0
|
2386 /* #b010 => 2 -- binary constant syntax */
|
173
|
2387 case 'b': return read_integer (readcharfun, 2);
|
0
|
2388 /* #s(foobar key1 val1 key2 val2) -- structure syntax */
|
173
|
2389 case 's': return read_structure (readcharfun);
|
0
|
2390 case '<':
|
|
2391 {
|
|
2392 unreadchar (readcharfun, c);
|
|
2393 return Fsignal (Qinvalid_read_syntax,
|
|
2394 list1 (build_string ("Cannot read unreadable object")));
|
|
2395 }
|
140
|
2396 #ifdef FEATUREP_SYNTAX
|
|
2397 case '+':
|
|
2398 case '-':
|
|
2399 {
|
|
2400 Lisp_Object fexp, obj, tem;
|
|
2401 struct gcpro gcpro1, gcpro2;
|
|
2402
|
|
2403 fexp = read0(readcharfun);
|
|
2404 obj = read0(readcharfun);
|
|
2405
|
|
2406 /* the call to `featurep' may GC. */
|
|
2407 GCPRO2(fexp, obj);
|
|
2408 tem = call1(Qfeaturep, fexp);
|
|
2409 UNGCPRO;
|
|
2410
|
|
2411 if (c == '+' && NILP(tem)) goto retry;
|
|
2412 if (c == '-' && !NILP(tem)) goto retry;
|
|
2413 return obj;
|
|
2414 }
|
|
2415 #endif
|
245
|
2416 case '0': case '1': case '2': case '3': case '4':
|
|
2417 case '5': case '6': case '7': case '8': case '9':
|
|
2418 /* Reader forms that can reuse previously read objects. */
|
|
2419 {
|
|
2420 int n = 0;
|
|
2421 Lisp_Object found;
|
|
2422
|
|
2423 /* Using read_integer() here is impossible, because it
|
|
2424 chokes on `='. Using parse_integer() is too hard.
|
|
2425 So we simply read it in, and ignore overflows, which
|
|
2426 is safe. */
|
|
2427 while (c >= '0' && c <= '9')
|
|
2428 {
|
|
2429 n *= 10;
|
|
2430 n += c - '0';
|
|
2431 c = readchar (readcharfun);
|
|
2432 }
|
|
2433 found = assq_no_quit (make_int (n), read_objects);
|
|
2434 if (c == '=')
|
|
2435 {
|
|
2436 /* #n=object returns object, but associates it with
|
|
2437 n for #n#. */
|
|
2438 Lisp_Object obj;
|
|
2439 if (CONSP (found))
|
|
2440 return Fsignal (Qinvalid_read_syntax,
|
|
2441 list2 (build_translated_string
|
|
2442 ("Multiply defined symbol label"),
|
|
2443 make_int (n)));
|
|
2444 obj = read0 (readcharfun);
|
|
2445 read_objects = Fcons (Fcons (make_int (n), obj), read_objects);
|
|
2446 return obj;
|
|
2447 }
|
|
2448 else if (c == '#')
|
|
2449 {
|
|
2450 /* #n# returns a previously read object. */
|
|
2451 if (CONSP (found))
|
|
2452 return XCDR (found);
|
|
2453 else
|
|
2454 return Fsignal (Qinvalid_read_syntax,
|
|
2455 list2 (build_translated_string
|
|
2456 ("Undefined symbol label"),
|
|
2457 make_int (n)));
|
|
2458 }
|
|
2459 return Fsignal (Qinvalid_read_syntax,
|
|
2460 list1 (build_string ("#")));
|
|
2461 }
|
0
|
2462 default:
|
|
2463 {
|
|
2464 unreadchar (readcharfun, c);
|
|
2465 return Fsignal (Qinvalid_read_syntax,
|
|
2466 list1 (build_string ("#")));
|
|
2467 }
|
|
2468 }
|
|
2469 }
|
|
2470
|
|
2471 /* Quote */
|
|
2472 case '\'': return list2 (Qquote, read0 (readcharfun));
|
|
2473
|
|
2474 #ifdef LISP_BACKQUOTES
|
|
2475 case '`':
|
|
2476 {
|
|
2477 Lisp_Object tem;
|
|
2478 int speccount = specpdl_depth ();
|
|
2479 ++new_backquote_flag;
|
|
2480 record_unwind_protect (backquote_unwind,
|
|
2481 make_opaque_ptr (&new_backquote_flag));
|
|
2482 tem = read0 (readcharfun);
|
|
2483 unbind_to (speccount, Qnil);
|
|
2484 return list2 (Qbackquote, tem);
|
|
2485 }
|
|
2486
|
|
2487 case ',':
|
|
2488 {
|
|
2489 if (new_backquote_flag)
|
|
2490 {
|
|
2491 Lisp_Object comma_type = Qnil;
|
|
2492 int ch = readchar (readcharfun);
|
|
2493
|
|
2494 if (ch == '@')
|
|
2495 comma_type = Qcomma_at;
|
|
2496 else if (ch == '.')
|
|
2497 comma_type = Qcomma_dot;
|
|
2498 else
|
|
2499 {
|
|
2500 if (ch >= 0)
|
|
2501 unreadchar (readcharfun, ch);
|
|
2502 comma_type = Qcomma;
|
|
2503 }
|
|
2504 return list2 (comma_type, read0 (readcharfun));
|
|
2505 }
|
|
2506 else
|
|
2507 {
|
|
2508 /* YUCK. 99.999% backwards compatibility. The Right
|
|
2509 Thing(tm) is to signal an error here, because it's
|
|
2510 really invalid read syntax. Instead, this permits
|
|
2511 commas to begin symbols (unless they're inside
|
|
2512 backquotes). If an error is signalled here in the
|
|
2513 future, then commas should be invalid read syntax
|
|
2514 outside of backquotes anywhere they're found (i.e.
|
|
2515 they must be quoted in symbols) -- Stig */
|
173
|
2516 return read_atom (readcharfun, c, 0);
|
0
|
2517 }
|
|
2518 }
|
|
2519 #endif
|
|
2520
|
|
2521 case '?':
|
|
2522 {
|
|
2523 /* Evil GNU Emacs "character" (ie integer) syntax */
|
|
2524 c = readchar (readcharfun);
|
|
2525 if (c < 0)
|
265
|
2526 return Fsignal (Qend_of_file, list1 (READCHARFUN_MAYBE (readcharfun)));
|
0
|
2527
|
|
2528 if (c == '\\')
|
|
2529 c = read_escape (readcharfun);
|
173
|
2530 return make_char (c);
|
0
|
2531 }
|
|
2532
|
|
2533 case '\"':
|
|
2534 {
|
|
2535 /* String */
|
|
2536 #ifdef I18N3
|
|
2537 /* #### If the input stream is translating, then the string
|
|
2538 should be marked as translatable by setting its
|
|
2539 `string-translatable' property to t. .el and .elc files
|
|
2540 normally are translating input streams. See Fgettext()
|
|
2541 and print_internal(). */
|
|
2542 #endif
|
|
2543 int cancel = 0;
|
|
2544
|
|
2545 Lstream_rewind (XLSTREAM (Vread_buffer_stream));
|
|
2546 while ((c = readchar (readcharfun)) >= 0
|
|
2547 && c != '\"')
|
|
2548 {
|
|
2549 if (c == '\\')
|
|
2550 c = read_escape (readcharfun);
|
|
2551 /* c is -1 if \ newline has just been seen */
|
|
2552 if (c == -1)
|
|
2553 {
|
|
2554 if (Lstream_byte_count (XLSTREAM (Vread_buffer_stream)) == 0)
|
|
2555 cancel = 1;
|
|
2556 }
|
|
2557 else
|
|
2558 Lstream_put_emchar (XLSTREAM (Vread_buffer_stream), c);
|
|
2559 QUIT;
|
|
2560 }
|
|
2561 if (c < 0)
|
265
|
2562 return Fsignal (Qend_of_file, list1 (READCHARFUN_MAYBE (readcharfun)));
|
0
|
2563
|
|
2564 /* If purifying, and string starts with \ newline,
|
|
2565 return zero instead. This is for doc strings
|
|
2566 that we are really going to find in lib-src/DOC.nn.nn */
|
272
|
2567 if (purify_flag && NILP (Vinternal_doc_file_name) && cancel)
|
173
|
2568 return Qzero;
|
0
|
2569
|
|
2570 Lstream_flush (XLSTREAM (Vread_buffer_stream));
|
|
2571 #if 0 /* FSFmacs defun hack */
|
|
2572 if (read_pure)
|
|
2573 return
|
|
2574 make_pure_string
|
|
2575 (resizing_buffer_stream_ptr (XLSTREAM (Vread_buffer_stream)),
|
|
2576 Lstream_byte_count (XLSTREAM (Vread_buffer_stream)));
|
|
2577 else
|
|
2578 #endif
|
|
2579 return
|
|
2580 make_string
|
|
2581 (resizing_buffer_stream_ptr (XLSTREAM (Vread_buffer_stream)),
|
|
2582 Lstream_byte_count (XLSTREAM (Vread_buffer_stream)));
|
|
2583 }
|
|
2584
|
|
2585 default:
|
|
2586 {
|
|
2587 /* Ignore whitespace and control characters */
|
|
2588 if (c <= 040)
|
|
2589 goto retry;
|
173
|
2590 return read_atom (readcharfun, c, 0);
|
0
|
2591 }
|
|
2592 }
|
|
2593 }
|
|
2594
|
|
2595
|
|
2596
|
|
2597 #ifdef LISP_FLOAT_TYPE
|
|
2598
|
|
2599 #define LEAD_INT 1
|
|
2600 #define DOT_CHAR 2
|
|
2601 #define TRAIL_INT 4
|
|
2602 #define E_CHAR 8
|
|
2603 #define EXP_INT 16
|
|
2604
|
|
2605 int
|
|
2606 isfloat_string (CONST char *cp)
|
|
2607 {
|
|
2608 int state = 0;
|
|
2609 CONST Bufbyte *ucp = (CONST Bufbyte *) cp;
|
173
|
2610
|
0
|
2611 if (*ucp == '+' || *ucp == '-')
|
|
2612 ucp++;
|
|
2613
|
|
2614 if (*ucp >= '0' && *ucp <= '9')
|
|
2615 {
|
|
2616 state |= LEAD_INT;
|
|
2617 while (*ucp >= '0' && *ucp <= '9')
|
|
2618 ucp++;
|
|
2619 }
|
|
2620 if (*ucp == '.')
|
|
2621 {
|
|
2622 state |= DOT_CHAR;
|
|
2623 ucp++;
|
|
2624 }
|
|
2625 if (*ucp >= '0' && *ucp <= '9')
|
|
2626 {
|
|
2627 state |= TRAIL_INT;
|
|
2628 while (*ucp >= '0' && *ucp <= '9')
|
|
2629 ucp++;
|
|
2630 }
|
|
2631 if (*ucp == 'e' || *ucp == 'E')
|
|
2632 {
|
|
2633 state |= E_CHAR;
|
|
2634 ucp++;
|
|
2635 if ((*ucp == '+') || (*ucp == '-'))
|
|
2636 ucp++;
|
|
2637 }
|
|
2638
|
|
2639 if (*ucp >= '0' && *ucp <= '9')
|
|
2640 {
|
|
2641 state |= EXP_INT;
|
|
2642 while (*ucp >= '0' && *ucp <= '9')
|
|
2643 ucp++;
|
|
2644 }
|
|
2645 return (((*ucp == 0) || (*ucp == ' ') || (*ucp == '\t') || (*ucp == '\n')
|
|
2646 || (*ucp == '\r') || (*ucp == '\f'))
|
|
2647 && (state == (LEAD_INT|DOT_CHAR|TRAIL_INT)
|
|
2648 || state == (DOT_CHAR|TRAIL_INT)
|
|
2649 || state == (LEAD_INT|E_CHAR|EXP_INT)
|
|
2650 || state == (LEAD_INT|DOT_CHAR|TRAIL_INT|E_CHAR|EXP_INT)
|
|
2651 || state == (DOT_CHAR|TRAIL_INT|E_CHAR|EXP_INT)));
|
|
2652 }
|
|
2653 #endif /* LISP_FLOAT_TYPE */
|
|
2654
|
|
2655 static void *
|
|
2656 sequence_reader (Lisp_Object readcharfun,
|
|
2657 Emchar terminator,
|
|
2658 void *state,
|
|
2659 void * (*conser) (Lisp_Object readcharfun,
|
|
2660 void *state, Charcount len))
|
|
2661 {
|
|
2662 Charcount len;
|
|
2663
|
|
2664 for (len = 0; ; len++)
|
|
2665 {
|
|
2666 Emchar ch;
|
|
2667
|
|
2668 QUIT;
|
|
2669 ch = reader_nextchar (readcharfun);
|
|
2670
|
|
2671 if (ch == terminator)
|
173
|
2672 return state;
|
0
|
2673 else
|
|
2674 unreadchar (readcharfun, ch);
|
140
|
2675 #ifdef FEATUREP_SYNTAX
|
0
|
2676 if (ch == ']')
|
|
2677 syntax_error ("\"]\" in a list");
|
|
2678 else if (ch == ')')
|
|
2679 syntax_error ("\")\" in a vector");
|
140
|
2680 #endif
|
0
|
2681 state = ((conser) (readcharfun, state, len));
|
|
2682 }
|
|
2683 }
|
|
2684
|
|
2685
|
173
|
2686 struct read_list_state
|
0
|
2687 {
|
|
2688 Lisp_Object head;
|
|
2689 Lisp_Object tail;
|
|
2690 int length;
|
|
2691 int allow_dotted_lists;
|
|
2692 Emchar terminator;
|
|
2693 };
|
|
2694
|
|
2695 static void *
|
|
2696 read_list_conser (Lisp_Object readcharfun, void *state, Charcount len)
|
|
2697 {
|
185
|
2698 struct read_list_state *s = (struct read_list_state *) state;
|
0
|
2699 Lisp_Object elt;
|
|
2700
|
|
2701 elt = read1 (readcharfun);
|
|
2702
|
|
2703 if (CONSP (elt) && UNBOUNDP (XCAR (elt)))
|
|
2704 {
|
|
2705 Lisp_Object tem = elt;
|
|
2706 Emchar ch;
|
173
|
2707
|
0
|
2708 elt = XCDR (elt);
|
|
2709 free_cons (XCONS (tem));
|
|
2710 tem = Qnil;
|
|
2711 ch = XCHAR (elt);
|
140
|
2712 #ifdef FEATUREP_SYNTAX
|
|
2713 if (ch == s->terminator) /* deal with #+, #- reader macros */
|
|
2714 {
|
|
2715 unreadchar (readcharfun, s->terminator);
|
|
2716 goto done;
|
|
2717 }
|
|
2718 else if (ch == ']')
|
|
2719 syntax_error ("']' in a list");
|
|
2720 else if (ch == ')')
|
|
2721 syntax_error ("')' in a vector");
|
|
2722 else
|
|
2723 #endif
|
0
|
2724 if (ch != '.')
|
|
2725 signal_simple_error ("BUG! Internal reader error", elt);
|
|
2726 else if (!s->allow_dotted_lists)
|
|
2727 syntax_error ("\".\" in a vector");
|
|
2728 else
|
|
2729 {
|
|
2730 if (!NILP (s->tail))
|
|
2731 XCDR (s->tail) = read0 (readcharfun);
|
|
2732 else
|
|
2733 s->head = read0 (readcharfun);
|
|
2734 elt = read1 (readcharfun);
|
|
2735 if (CONSP (elt) && UNBOUNDP (XCAR (elt)))
|
|
2736 {
|
|
2737 ch = XCHAR (XCDR (elt));
|
|
2738 free_cons (XCONS (elt));
|
|
2739 if (ch == s->terminator)
|
|
2740 {
|
|
2741 unreadchar (readcharfun, s->terminator);
|
|
2742 goto done;
|
|
2743 }
|
|
2744 }
|
|
2745 syntax_error (". in wrong context");
|
|
2746 }
|
|
2747 }
|
|
2748
|
|
2749 #if 0 /* FSFmacs defun hack, or something ... */
|
|
2750 if (NILP (tail) && defun_hack && EQ (elt, Qdefun) && !read_pure)
|
|
2751 {
|
|
2752 record_unwind_protect (unreadpure, Qzero);
|
|
2753 read_pure = 1;
|
|
2754 }
|
|
2755 #endif
|
|
2756
|
|
2757 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
|
|
2758 if (s->length == 1 && s->allow_dotted_lists && EQ (XCAR (s->head), Qfset))
|
|
2759 {
|
|
2760 if (CONSP (elt) && EQ (XCAR (elt), Qquote) && CONSP (XCDR (elt)))
|
|
2761 Vcurrent_compiled_function_annotation = XCAR (XCDR (elt));
|
|
2762 else
|
|
2763 Vcurrent_compiled_function_annotation = elt;
|
|
2764 }
|
|
2765 #endif
|
|
2766
|
|
2767 elt = Fcons (elt, Qnil);
|
|
2768 if (!NILP (s->tail))
|
|
2769 XCDR (s->tail) = elt;
|
|
2770 else
|
|
2771 s->head = elt;
|
|
2772 s->tail = elt;
|
|
2773 done:
|
|
2774 s->length++;
|
173
|
2775 return s;
|
0
|
2776 }
|
|
2777
|
|
2778
|
|
2779 #if 0 /* FSFmacs defun hack */
|
|
2780 /* -1 for allow_dotted_lists means allow_dotted_lists and check
|
|
2781 for starting with defun and make structure pure. */
|
|
2782 #endif
|
|
2783
|
|
2784 static Lisp_Object
|
|
2785 read_list (Lisp_Object readcharfun,
|
|
2786 Emchar terminator,
|
|
2787 int allow_dotted_lists,
|
|
2788 int check_for_doc_references)
|
|
2789 {
|
|
2790 struct read_list_state s;
|
|
2791 struct gcpro gcpro1, gcpro2;
|
|
2792 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
|
|
2793 Lisp_Object old_compiled_function_annotation =
|
|
2794 Vcurrent_compiled_function_annotation;
|
|
2795 #endif
|
|
2796
|
|
2797 s.head = Qnil;
|
|
2798 s.tail = Qnil;
|
|
2799 s.length = 0;
|
|
2800 s.allow_dotted_lists = allow_dotted_lists;
|
|
2801 s.terminator = terminator;
|
|
2802 GCPRO2 (s.head, s.tail);
|
|
2803
|
181
|
2804 sequence_reader (readcharfun, terminator, &s, read_list_conser);
|
0
|
2805 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
|
|
2806 Vcurrent_compiled_function_annotation = old_compiled_function_annotation;
|
|
2807 #endif
|
|
2808
|
|
2809 if ((purify_flag || load_force_doc_strings) && check_for_doc_references)
|
|
2810 {
|
|
2811 /* check now for any doc string references and record them
|
|
2812 for later. */
|
|
2813 Lisp_Object tail;
|
|
2814
|
|
2815 /* We might be dealing with an imperfect list so don't
|
|
2816 use LIST_LOOP */
|
|
2817 for (tail = s.head; CONSP (tail); tail = XCDR (tail))
|
|
2818 {
|
|
2819 Lisp_Object holding_cons = Qnil;
|
|
2820
|
|
2821 {
|
|
2822 Lisp_Object elem = XCAR (tail);
|
|
2823 /* elem might be (#$ . INT) ... */
|
|
2824 if (CONSP (elem) && EQ (XCAR (elem), Vload_file_name_internal))
|
|
2825 holding_cons = tail;
|
|
2826 /* or it might be (quote (#$ . INT)) i.e.
|
|
2827 (quote . ((#$ . INT) . nil)) in the case of
|
|
2828 `autoload' (autoload evaluates its arguments, while
|
|
2829 `defvar', `defun', etc. don't). */
|
|
2830 if (CONSP (elem) && EQ (XCAR (elem), Qquote)
|
|
2831 && CONSP (XCDR (elem)))
|
|
2832 {
|
|
2833 elem = XCAR (XCDR (elem));
|
|
2834 if (CONSP (elem) && EQ (XCAR (elem), Vload_file_name_internal))
|
|
2835 holding_cons = XCDR (XCAR (tail));
|
|
2836 }
|
|
2837 }
|
|
2838
|
|
2839 if (CONSP (holding_cons))
|
|
2840 {
|
|
2841 if (purify_flag)
|
|
2842 {
|
272
|
2843 if (NILP (Vinternal_doc_file_name))
|
0
|
2844 /* We have not yet called Snarf-documentation, so
|
80
|
2845 assume this file is described in the DOC file
|
|
2846 and Snarf-documentation will fill in the right
|
|
2847 value later. For now, replace the whole list
|
|
2848 with 0. */
|
0
|
2849 XCAR (holding_cons) = Qzero;
|
|
2850 else
|
|
2851 /* We have already called Snarf-documentation, so
|
|
2852 make a relative file name for this file, so it
|
|
2853 can be found properly in the installed Lisp
|
|
2854 directory. We don't use Fexpand_file_name
|
|
2855 because that would make the directory absolute
|
|
2856 now. */
|
|
2857 XCAR (XCAR (holding_cons)) =
|
|
2858 concat2 (build_string ("../lisp/"),
|
|
2859 Ffile_name_nondirectory
|
|
2860 (Vload_file_name_internal));
|
|
2861 }
|
|
2862 else
|
|
2863 /* Not pure. Just add to Vload_force_doc_string_list,
|
|
2864 and the string will be filled in properly in
|
|
2865 load_force_doc_string_unwind(). */
|
|
2866 Vload_force_doc_string_list =
|
|
2867 /* We pass the cons that holds the (#$ . INT) so we
|
|
2868 can modify it in-place. */
|
|
2869 Fcons (holding_cons, Vload_force_doc_string_list);
|
|
2870 }
|
|
2871 }
|
|
2872 }
|
173
|
2873
|
0
|
2874 UNGCPRO;
|
173
|
2875 return s.head;
|
0
|
2876 }
|
|
2877
|
|
2878 static Lisp_Object
|
|
2879 read_vector (Lisp_Object readcharfun,
|
|
2880 Emchar terminator)
|
|
2881 {
|
|
2882 Lisp_Object tem;
|
|
2883 Lisp_Object *p;
|
|
2884 int len;
|
|
2885 int i;
|
|
2886 struct read_list_state s;
|
|
2887 struct gcpro gcpro1, gcpro2;
|
|
2888
|
|
2889 s.head = Qnil;
|
|
2890 s.tail = Qnil;
|
|
2891 s.length = 0;
|
|
2892 s.allow_dotted_lists = 0;
|
|
2893 GCPRO2 (s.head, s.tail);
|
173
|
2894
|
181
|
2895 sequence_reader (readcharfun, terminator, &s, read_list_conser);
|
185
|
2896
|
0
|
2897 UNGCPRO;
|
|
2898 tem = s.head;
|
|
2899 len = XINT (Flength (tem));
|
|
2900
|
|
2901 #if 0 /* FSFmacs defun hack */
|
|
2902 if (read_pure)
|
|
2903 s.head = make_pure_vector (len, Qnil);
|
|
2904 else
|
|
2905 #endif
|
|
2906 s.head = make_vector (len, Qnil);
|
|
2907
|
173
|
2908 for (i = 0, p = &(XVECTOR_DATA (s.head)[0]);
|
0
|
2909 i < len;
|
|
2910 i++, p++)
|
|
2911 {
|
|
2912 struct Lisp_Cons *otem = XCONS (tem);
|
|
2913 #if 0 /* FSFmacs defun hack */
|
|
2914 if (read_pure)
|
|
2915 tem = Fpurecopy (Fcar (tem));
|
|
2916 else
|
|
2917 #endif
|
|
2918 tem = Fcar (tem);
|
|
2919 *p = tem;
|
|
2920 tem = otem->cdr;
|
|
2921 free_cons (otem);
|
|
2922 }
|
173
|
2923 return s.head;
|
0
|
2924 }
|
|
2925
|
|
2926 static Lisp_Object
|
|
2927 read_compiled_function (Lisp_Object readcharfun, Emchar terminator)
|
|
2928 {
|
173
|
2929 /* Accept compiled functions at read-time so that we don't
|
0
|
2930 have to build them at load-time. */
|
|
2931 Lisp_Object stuff;
|
|
2932 Lisp_Object make_byte_code_args[COMPILED_DOMAIN + 1];
|
|
2933 struct gcpro gcpro1;
|
|
2934 int len;
|
|
2935 int iii;
|
|
2936 int saw_a_doc_ref = 0;
|
|
2937
|
|
2938 /* Note: we tell read_list not to search for doc references
|
|
2939 because we need to handle the "doc reference" for the
|
|
2940 instructions and constants differently. */
|
|
2941 stuff = read_list (readcharfun, terminator, 0, 0);
|
|
2942 len = XINT (Flength (stuff));
|
|
2943 if (len < COMPILED_STACK_DEPTH + 1 || len > COMPILED_DOMAIN + 1)
|
|
2944 return
|
|
2945 continuable_syntax_error ("#[...] used with wrong number of elements");
|
|
2946
|
|
2947 for (iii = 0; CONSP (stuff); iii++)
|
|
2948 {
|
|
2949 struct Lisp_Cons *victim = XCONS (stuff);
|
|
2950 make_byte_code_args[iii] = Fcar (stuff);
|
|
2951 if ((purify_flag || load_force_doc_strings)
|
|
2952 && CONSP (make_byte_code_args[iii])
|
|
2953 && EQ (XCAR (make_byte_code_args[iii]), Vload_file_name_internal))
|
|
2954 {
|
|
2955 if (purify_flag && iii == COMPILED_DOC_STRING)
|
|
2956 {
|
|
2957 /* same as in read_list(). */
|
272
|
2958 if (NILP (Vinternal_doc_file_name))
|
0
|
2959 make_byte_code_args[iii] = Qzero;
|
|
2960 else
|
|
2961 XCAR (make_byte_code_args[iii]) =
|
|
2962 concat2 (build_string ("../lisp/"),
|
|
2963 Ffile_name_nondirectory
|
|
2964 (Vload_file_name_internal));
|
|
2965 }
|
|
2966 else
|
|
2967 saw_a_doc_ref = 1;
|
|
2968 }
|
|
2969 stuff = Fcdr (stuff);
|
|
2970 free_cons (victim);
|
|
2971 }
|
|
2972 GCPRO1 (make_byte_code_args[0]);
|
|
2973 gcpro1.nvars = len;
|
|
2974
|
70
|
2975 /* v18 or v19 bytecode file. Need to Ebolify. */
|
|
2976 if (load_byte_code_version < 20 && VECTORP (make_byte_code_args[2]))
|
|
2977 ebolify_bytecode_constants (make_byte_code_args[2]);
|
|
2978
|
0
|
2979 /* make-byte-code looks at purify_flag, which should have the same
|
|
2980 * value as our "read-pure" argument */
|
|
2981 stuff = Fmake_byte_code (len, make_byte_code_args);
|
70
|
2982 XCOMPILED_FUNCTION (stuff)->flags.ebolified = (load_byte_code_version < 20);
|
0
|
2983 if (saw_a_doc_ref)
|
|
2984 Vload_force_doc_string_list = Fcons (stuff, Vload_force_doc_string_list);
|
|
2985 UNGCPRO;
|
|
2986 return stuff;
|
|
2987 }
|
|
2988
|
|
2989
|
|
2990
|
|
2991 void
|
|
2992 init_lread (void)
|
|
2993 {
|
|
2994 Vvalues = Qnil;
|
|
2995
|
|
2996 load_in_progress = 0;
|
267
|
2997
|
0
|
2998 Vload_descriptor_list = Qnil;
|
|
2999
|
267
|
3000 /* kludge: locate-file does not work for a null load-path, even if
|
|
3001 the file name is absolute. */
|
|
3002
|
|
3003 Vload_path = Fcons (build_string (""), Qnil);
|
|
3004
|
231
|
3005 /* This used to get initialized in init_lread because all streams
|
|
3006 got closed when dumping occurs. This is no longer true --
|
|
3007 Vread_buffer_stream is a resizing output stream, and there is no
|
|
3008 reason to close it at dump-time.
|
|
3009
|
|
3010 Vread_buffer_stream is set to Qnil in vars_of_lread, and this
|
|
3011 will initialize it only once, at dump-time. */
|
|
3012 if (NILP (Vread_buffer_stream))
|
|
3013 Vread_buffer_stream = make_resizing_buffer_output_stream ();
|
0
|
3014
|
|
3015 Vload_force_doc_string_list = Qnil;
|
|
3016 }
|
|
3017
|
|
3018 void
|
|
3019 syms_of_lread (void)
|
|
3020 {
|
20
|
3021 DEFSUBR (Fread);
|
|
3022 DEFSUBR (Fread_from_string);
|
|
3023 DEFSUBR (Fload_internal);
|
|
3024 DEFSUBR (Flocate_file);
|
|
3025 DEFSUBR (Flocate_file_clear_hashing);
|
|
3026 DEFSUBR (Feval_buffer);
|
|
3027 DEFSUBR (Feval_region);
|
0
|
3028
|
|
3029 defsymbol (&Qstandard_input, "standard-input");
|
|
3030 defsymbol (&Qread_char, "read-char");
|
|
3031 defsymbol (&Qcurrent_load_list, "current-load-list");
|
|
3032 defsymbol (&Qload, "load");
|
|
3033 defsymbol (&Qload_file_name, "load-file-name");
|
|
3034 defsymbol (&Qlocate_file_hash_table, "locate-file-hash-table");
|
|
3035 defsymbol (&Qfset, "fset");
|
|
3036
|
|
3037 #ifdef LISP_BACKQUOTES
|
|
3038 defsymbol (&Qbackquote, "backquote");
|
|
3039 defsymbol (&Qbacktick, "`");
|
|
3040 defsymbol (&Qcomma, ",");
|
|
3041 defsymbol (&Qcomma_at, ",@");
|
|
3042 defsymbol (&Qcomma_dot, ",.");
|
|
3043 #endif
|
|
3044 }
|
|
3045
|
|
3046 void
|
|
3047 structure_type_create (void)
|
|
3048 {
|
185
|
3049 the_structure_type_dynarr = Dynarr_new (structure_type);
|
0
|
3050 }
|
|
3051
|
|
3052 void
|
|
3053 vars_of_lread (void)
|
|
3054 {
|
|
3055 DEFVAR_LISP ("values", &Vvalues /*
|
|
3056 List of values of all expressions which were read, evaluated and printed.
|
|
3057 Order is reverse chronological.
|
|
3058 */ );
|
|
3059
|
|
3060 DEFVAR_LISP ("standard-input", &Vstandard_input /*
|
|
3061 Stream for read to get input from.
|
|
3062 See documentation of `read' for possible values.
|
|
3063 */ );
|
|
3064 Vstandard_input = Qt;
|
|
3065
|
|
3066 DEFVAR_LISP ("load-path", &Vload_path /*
|
|
3067 *List of directories to search for files to load.
|
|
3068 Each element is a string (directory name) or nil (try default directory).
|
|
3069
|
185
|
3070 Note that the elements of this list *may not* begin with "~", so you must
|
0
|
3071 call `expand-file-name' on them before adding them to this list.
|
|
3072
|
|
3073 Initialized based on EMACSLOADPATH environment variable, if any,
|
|
3074 otherwise to default specified in by file `paths.h' when XEmacs was built.
|
|
3075 If there were no paths specified in `paths.h', then XEmacs chooses a default
|
|
3076 value for this variable by looking around in the file-system near the
|
|
3077 directory in which the XEmacs executable resides.
|
|
3078 */ );
|
267
|
3079 Vload_path = Qnil;
|
0
|
3080
|
|
3081 /* xxxDEFVAR_LISP ("dump-load-path", &Vdump_load_path,
|
|
3082 "*Location of lisp files to be used when dumping ONLY."); */
|
|
3083
|
|
3084 DEFVAR_BOOL ("load-in-progress", &load_in_progress /*
|
|
3085 Non-nil iff inside of `load'.
|
|
3086 */ );
|
|
3087
|
|
3088 DEFVAR_LISP ("after-load-alist", &Vafter_load_alist /*
|
|
3089 An alist of expressions to be evalled when particular files are loaded.
|
|
3090 Each element looks like (FILENAME FORMS...).
|
|
3091 When `load' is run and the file-name argument is FILENAME,
|
|
3092 the FORMS in the corresponding element are executed at the end of loading.
|
|
3093
|
|
3094 FILENAME must match exactly! Normally FILENAME is the name of a library,
|
|
3095 with no directory specified, since that is how `load' is normally called.
|
|
3096 An error in FORMS does not undo the load,
|
|
3097 but does prevent execution of the rest of the FORMS.
|
|
3098 */ );
|
|
3099 Vafter_load_alist = Qnil;
|
|
3100
|
|
3101 DEFVAR_BOOL ("load-warn-when-source-newer", &load_warn_when_source_newer /*
|
|
3102 *Whether `load' should check whether the source is newer than the binary.
|
|
3103 If this variable is true, then when a `.elc' file is being loaded and the
|
|
3104 corresponding `.el' is newer, a warning message will be printed.
|
|
3105 */ );
|
|
3106 load_warn_when_source_newer = 0;
|
|
3107
|
|
3108 DEFVAR_BOOL ("load-warn-when-source-only", &load_warn_when_source_only /*
|
|
3109 *Whether `load' should warn when loading a `.el' file instead of an `.elc'.
|
|
3110 If this variable is true, then when `load' is called with a filename without
|
|
3111 an extension, and the `.elc' version doesn't exist but the `.el' version does,
|
|
3112 then a message will be printed. If an explicit extension is passed to `load',
|
|
3113 no warning will be printed.
|
|
3114 */ );
|
|
3115 load_warn_when_source_only = 0;
|
|
3116
|
|
3117 DEFVAR_BOOL ("load-ignore-elc-files", &load_ignore_elc_files /*
|
|
3118 *Whether `load' should ignore `.elc' files when a suffix is not given.
|
|
3119 This is normally used only to bootstrap the `.elc' files when building XEmacs.
|
|
3120 */ );
|
|
3121 load_ignore_elc_files = 0;
|
|
3122
|
|
3123 #ifdef LOADHIST
|
|
3124 DEFVAR_LISP ("load-history", &Vload_history /*
|
|
3125 Alist mapping source file names to symbols and features.
|
|
3126 Each alist element is a list that starts with a file name,
|
|
3127 except for one element (optional) that starts with nil and describes
|
|
3128 definitions evaluated from buffers not visiting files.
|
|
3129 The remaining elements of each list are symbols defined as functions
|
|
3130 or variables, and cons cells `(provide . FEATURE)' and `(require . FEATURE)'.
|
|
3131 */ );
|
|
3132 Vload_history = Qnil;
|
|
3133
|
|
3134 DEFVAR_LISP ("current-load-list", &Vcurrent_load_list /*
|
|
3135 Used for internal purposes by `load'.
|
|
3136 */ );
|
|
3137 Vcurrent_load_list = Qnil;
|
|
3138 #endif
|
|
3139
|
|
3140 DEFVAR_LISP ("load-file-name", &Vload_file_name /*
|
|
3141 Full name of file being loaded by `load'.
|
|
3142 */ );
|
|
3143 Vload_file_name = Qnil;
|
|
3144
|
|
3145 DEFVAR_LISP ("load-read-function", &Vload_read_function /*
|
284
|
3146 Function used by `load' and `eval-region' for reading expressions.
|
0
|
3147 The default is nil, which means use the function `read'.
|
|
3148 */ );
|
|
3149 Vload_read_function = Qnil;
|
|
3150
|
|
3151 DEFVAR_BOOL ("load-force-doc-strings", &load_force_doc_strings /*
|
|
3152 Non-nil means `load' should force-load all dynamic doc strings.
|
|
3153 This is useful when the file being loaded is a temporary copy.
|
|
3154 */ );
|
|
3155 load_force_doc_strings = 0;
|
|
3156
|
282
|
3157 /* See read_escape(). */
|
|
3158 #if 0
|
272
|
3159 /* Used to be named `puke-on-fsf-keys' */
|
|
3160 DEFVAR_BOOL ("fail-on-bucky-bit-character-escapes",
|
|
3161 &fail_on_bucky_bit_character_escapes /*
|
0
|
3162 Whether `read' should signal an error when it encounters unsupported
|
|
3163 character escape syntaxes or just read them incorrectly.
|
|
3164 */ );
|
272
|
3165 fail_on_bucky_bit_character_escapes = 0;
|
282
|
3166 #endif
|
0
|
3167
|
|
3168 /* This must be initialized in init_lread otherwise it may start out
|
|
3169 with values saved when the image is dumped. */
|
|
3170 staticpro (&Vload_descriptor_list);
|
|
3171
|
231
|
3172 Vread_buffer_stream = Qnil;
|
0
|
3173 staticpro (&Vread_buffer_stream);
|
|
3174
|
|
3175 /* Initialized in init_lread. */
|
|
3176 staticpro (&Vload_force_doc_string_list);
|
|
3177
|
|
3178 Vload_file_name_internal = Qnil;
|
|
3179 staticpro (&Vload_file_name_internal);
|
|
3180
|
|
3181 Vload_file_name_internal_the_purecopy = Qnil;
|
|
3182 staticpro (&Vload_file_name_internal_the_purecopy);
|
|
3183
|
|
3184 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
|
|
3185 Vcurrent_compiled_function_annotation = Qnil;
|
|
3186 staticpro (&Vcurrent_compiled_function_annotation);
|
|
3187 #endif
|
|
3188
|
|
3189 /* So that early-early stuff will work */
|
|
3190 Ffset (Qload, intern ("load-internal"));
|
|
3191
|
140
|
3192 #ifdef FEATUREP_SYNTAX
|
207
|
3193 defsymbol (&Qfeaturep, "featurep");
|
140
|
3194 Fprovide(intern("xemacs"));
|
155
|
3195 #ifdef INFODOCK
|
|
3196 Fprovide(intern("infodock"));
|
231
|
3197 #endif /* INFODOCK */
|
|
3198 #endif /* FEATUREP_SYNTAX */
|
140
|
3199
|
0
|
3200 #ifdef LISP_BACKQUOTES
|
|
3201 old_backquote_flag = new_backquote_flag = 0;
|
|
3202 #endif
|
185
|
3203
|
0
|
3204 #ifdef I18N3
|
|
3205 Vfile_domain = Qnil;
|
|
3206 #endif
|
245
|
3207
|
|
3208 read_objects = Qnil;
|
|
3209 staticpro (&read_objects);
|
0
|
3210 }
|