annotate src/lread.c @ 231:557eaa0339bf r20-5b14

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