Mercurial > emacs
annotate src/lread.c @ 2809:8d00a436bfcc
original log message lost to overeager RCS user -JimB
| author | Jim Blandy <jimb@redhat.com> |
|---|---|
| date | Sat, 15 May 1993 21:38:29 +0000 |
| parents | fde05936aebb |
| children | 510a7ebce564 |
| rev | line source |
|---|---|
| 341 | 1 /* Lisp parsing and input streams. |
| 692 | 2 Copyright (C) 1985, 1986, 1987, 1988, 1989, |
| 3 1992 Free Software Foundation, Inc. | |
| 341 | 4 |
| 5 This file is part of GNU Emacs. | |
| 6 | |
| 7 GNU Emacs is free software; you can redistribute it and/or modify | |
| 8 it under the terms of the GNU General Public License as published by | |
| 617 | 9 the Free Software Foundation; either version 2, or (at your option) |
| 341 | 10 any later version. |
| 11 | |
| 12 GNU Emacs is distributed in the hope that it will be useful, | |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 16 | |
| 17 You should have received a copy of the GNU General Public License | |
| 18 along with GNU Emacs; see the file COPYING. If not, write to | |
| 19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
| 20 | |
| 21 | |
| 22 #include <stdio.h> | |
| 23 #include <sys/types.h> | |
| 24 #include <sys/stat.h> | |
| 25 #include <sys/file.h> | |
| 796 | 26 #include <ctype.h> |
| 341 | 27 #undef NULL |
| 28 #include "config.h" | |
| 29 #include "lisp.h" | |
| 30 | |
| 31 #ifndef standalone | |
| 32 #include "buffer.h" | |
| 33 #include "paths.h" | |
| 34 #include "commands.h" | |
|
1591
765cb54fa9af
* lread.c: #include "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents:
1519
diff
changeset
|
35 #include "keyboard.h" |
|
2044
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
36 #include "termhooks.h" |
| 341 | 37 #endif |
| 38 | |
| 39 #ifdef lint | |
| 40 #include <sys/inode.h> | |
| 41 #endif /* lint */ | |
| 42 | |
| 43 #ifndef X_OK | |
| 44 #define X_OK 01 | |
| 45 #endif | |
| 46 | |
| 47 #ifdef LISP_FLOAT_TYPE | |
|
2781
fde05936aebb
* lread.c, data.c: If STDC_HEADERS is #defined, include <stdlib.h>
Jim Blandy <jimb@redhat.com>
parents:
2654
diff
changeset
|
48 #ifdef STDC_HEADERS |
|
fde05936aebb
* lread.c, data.c: If STDC_HEADERS is #defined, include <stdlib.h>
Jim Blandy <jimb@redhat.com>
parents:
2654
diff
changeset
|
49 #include <stdlib.h> |
|
fde05936aebb
* lread.c, data.c: If STDC_HEADERS is #defined, include <stdlib.h>
Jim Blandy <jimb@redhat.com>
parents:
2654
diff
changeset
|
50 #endif |
| 341 | 51 #include <math.h> |
| 52 #endif /* LISP_FLOAT_TYPE */ | |
| 53 | |
| 54 Lisp_Object Qread_char, Qget_file_char, Qstandard_input; | |
| 55 Lisp_Object Qvariable_documentation, Vvalues, Vstandard_input, Vafter_load_alist; | |
|
2044
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
56 Lisp_Object Qascii_character; |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
57 |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
58 extern Lisp_Object Qevent_symbol_element_mask; |
| 341 | 59 |
| 60 /* non-zero if inside `load' */ | |
| 61 int load_in_progress; | |
| 62 | |
| 63 /* Search path for files to be loaded. */ | |
| 64 Lisp_Object Vload_path; | |
| 65 | |
|
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
66 /* This is the user-visible association list that maps features to |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
67 lists of defs in their load files. */ |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
68 Lisp_Object Vload_history; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
69 |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
70 /* This is useud to build the load history. */ |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
71 Lisp_Object Vcurrent_load_list; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
72 |
| 341 | 73 /* File for get_file_char to read from. Use by load */ |
| 74 static FILE *instream; | |
| 75 | |
| 76 /* When nonzero, read conses in pure space */ | |
| 77 static int read_pure; | |
| 78 | |
| 79 /* For use within read-from-string (this reader is non-reentrant!!) */ | |
| 80 static int read_from_string_index; | |
| 81 static int read_from_string_limit; | |
| 82 | |
| 83 /* Handle unreading and rereading of characters. | |
| 84 Write READCHAR to read a character, | |
| 85 UNREAD(c) to unread c to be read again. */ | |
| 86 | |
| 87 #define READCHAR readchar (readcharfun) | |
| 88 #define UNREAD(c) unreadchar (readcharfun, c) | |
| 89 | |
| 90 static int | |
| 91 readchar (readcharfun) | |
| 92 Lisp_Object readcharfun; | |
| 93 { | |
| 94 Lisp_Object tem; | |
| 95 register struct buffer *inbuffer; | |
| 96 register int c, mpos; | |
| 97 | |
| 98 if (XTYPE (readcharfun) == Lisp_Buffer) | |
| 99 { | |
| 100 inbuffer = XBUFFER (readcharfun); | |
| 101 | |
| 102 if (BUF_PT (inbuffer) >= BUF_ZV (inbuffer)) | |
| 103 return -1; | |
| 104 c = *(unsigned char *) BUF_CHAR_ADDRESS (inbuffer, BUF_PT (inbuffer)); | |
| 105 SET_BUF_PT (inbuffer, BUF_PT (inbuffer) + 1); | |
| 106 | |
| 107 return c; | |
| 108 } | |
| 109 if (XTYPE (readcharfun) == Lisp_Marker) | |
| 110 { | |
| 111 inbuffer = XMARKER (readcharfun)->buffer; | |
| 112 | |
| 113 mpos = marker_position (readcharfun); | |
| 114 | |
| 115 if (mpos > BUF_ZV (inbuffer) - 1) | |
| 116 return -1; | |
| 117 c = *(unsigned char *) BUF_CHAR_ADDRESS (inbuffer, mpos); | |
| 118 if (mpos != BUF_GPT (inbuffer)) | |
| 119 XMARKER (readcharfun)->bufpos++; | |
| 120 else | |
| 121 Fset_marker (readcharfun, make_number (mpos + 1), | |
| 122 Fmarker_buffer (readcharfun)); | |
| 123 return c; | |
| 124 } | |
| 125 if (EQ (readcharfun, Qget_file_char)) | |
| 126 return getc (instream); | |
| 127 | |
| 128 if (XTYPE (readcharfun) == Lisp_String) | |
| 129 { | |
| 130 register int c; | |
| 131 /* This used to be return of a conditional expression, | |
| 132 but that truncated -1 to a char on VMS. */ | |
| 133 if (read_from_string_index < read_from_string_limit) | |
| 134 c = XSTRING (readcharfun)->data[read_from_string_index++]; | |
| 135 else | |
| 136 c = -1; | |
| 137 return c; | |
| 138 } | |
| 139 | |
| 140 tem = call0 (readcharfun); | |
| 141 | |
| 485 | 142 if (NILP (tem)) |
| 341 | 143 return -1; |
| 144 return XINT (tem); | |
| 145 } | |
| 146 | |
| 147 /* Unread the character C in the way appropriate for the stream READCHARFUN. | |
| 148 If the stream is a user function, call it with the char as argument. */ | |
| 149 | |
| 150 static void | |
| 151 unreadchar (readcharfun, c) | |
| 152 Lisp_Object readcharfun; | |
| 153 int c; | |
| 154 { | |
| 155 if (XTYPE (readcharfun) == Lisp_Buffer) | |
| 156 { | |
| 157 if (XBUFFER (readcharfun) == current_buffer) | |
| 158 SET_PT (point - 1); | |
| 159 else | |
| 160 SET_BUF_PT (XBUFFER (readcharfun), BUF_PT (XBUFFER (readcharfun)) - 1); | |
| 161 } | |
| 162 else if (XTYPE (readcharfun) == Lisp_Marker) | |
| 163 XMARKER (readcharfun)->bufpos--; | |
| 164 else if (XTYPE (readcharfun) == Lisp_String) | |
| 165 read_from_string_index--; | |
| 166 else if (EQ (readcharfun, Qget_file_char)) | |
| 167 ungetc (c, instream); | |
| 168 else | |
| 169 call1 (readcharfun, make_number (c)); | |
| 170 } | |
| 171 | |
| 172 static Lisp_Object read0 (), read1 (), read_list (), read_vector (); | |
| 173 | |
| 174 /* get a character from the tty */ | |
| 175 | |
|
1519
5d0837ebee9c
* lread.c (read_char): Add an extern declaration for this,
Jim Blandy <jimb@redhat.com>
parents:
1092
diff
changeset
|
176 extern Lisp_Object read_char (); |
|
5d0837ebee9c
* lread.c (read_char): Add an extern declaration for this,
Jim Blandy <jimb@redhat.com>
parents:
1092
diff
changeset
|
177 |
|
2654
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
178 /* Read input events until we get one that's acceptable for our purposes. |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
179 |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
180 If NO_SWITCH_FRAME is non-zero, switch-frame events are stashed |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
181 until we get a character we like, and then stuffed into |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
182 unread_switch_frame. |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
183 |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
184 If ASCII_REQUIRED is non-zero, we check function key events to see |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
185 if the unmodified version of the symbol has a Qascii_character |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
186 property, and use that character, if present. |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
187 |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
188 If ERROR_NONASCII is non-zero, we signal an error if the input we |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
189 get isn't an ASCII character with modifiers. If it's zero but |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
190 ASCII_REQUIRED is non-zero, we just re-read until we get an ASCII |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
191 character. */ |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
192 Lisp_Object |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
193 read_filtered_event (no_switch_frame, ascii_required, error_nonascii) |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
194 int no_switch_frame, ascii_required, error_nonascii; |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
195 { |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
196 #ifdef standalone |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
197 return make_number (getchar ()); |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
198 #else |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
199 register Lisp_Object val; |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
200 register Lisp_Object delayed_switch_frame = Qnil; |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
201 |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
202 /* Read until we get an acceptable event. */ |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
203 retry: |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
204 val = read_char (0, 0, 0, Qnil, 0); |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
205 |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
206 /* switch-frame events are put off until after the next ASCII |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
207 character. This is better than signalling an error just because |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
208 the last characters were typed to a separate minibuffer frame, |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
209 for example. Eventually, some code which can deal with |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
210 switch-frame events will read it and process it. */ |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
211 if (no_switch_frame |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
212 && EVENT_HAS_PARAMETERS (val) |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
213 && EQ (EVENT_HEAD (val), Qswitch_frame)) |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
214 { |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
215 delayed_switch_frame = val; |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
216 goto retry; |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
217 } |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
218 |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
219 if (ascii_required) |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
220 { |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
221 /* Convert certain symbols to their ASCII equivalents. */ |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
222 if (XTYPE (val) == Lisp_Symbol) |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
223 { |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
224 Lisp_Object tem, tem1, tem2; |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
225 tem = Fget (val, Qevent_symbol_element_mask); |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
226 if (!NILP (tem)) |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
227 { |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
228 tem1 = Fget (Fcar (tem), Qascii_character); |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
229 /* Merge this symbol's modifier bits |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
230 with the ASCII equivalent of its basic code. */ |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
231 if (!NILP (tem1)) |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
232 XFASTINT (val) = XINT (tem1) | XINT (Fcar (Fcdr (tem))); |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
233 } |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
234 } |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
235 |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
236 /* If we don't have a character now, deal with it appropriately. */ |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
237 if (XTYPE (val) != Lisp_Int) |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
238 { |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
239 if (error_nonascii) |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
240 { |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
241 unread_command_events = Fcons (val, Qnil); |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
242 error ("Non-character input-event"); |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
243 } |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
244 else |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
245 goto retry; |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
246 } |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
247 } |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
248 |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
249 if (! NILP (delayed_switch_frame)) |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
250 unread_switch_frame = delayed_switch_frame; |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
251 |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
252 return val; |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
253 #endif |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
254 } |
|
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
255 |
| 341 | 256 DEFUN ("read-char", Fread_char, Sread_char, 0, 0, 0, |
| 257 "Read a character from the command input (keyboard or macro).\n\ | |
| 851 | 258 It is returned as a number.\n\ |
| 259 If the user generates an event which is not a character (i.e. a mouse\n\ | |
|
1591
765cb54fa9af
* lread.c: #include "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents:
1519
diff
changeset
|
260 click or function key event), `read-char' signals an error. As an\n\ |
|
765cb54fa9af
* lread.c: #include "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents:
1519
diff
changeset
|
261 exception, switch-frame events are put off until non-ASCII events can\n\ |
|
765cb54fa9af
* lread.c: #include "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents:
1519
diff
changeset
|
262 be read.\n\ |
|
765cb54fa9af
* lread.c: #include "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents:
1519
diff
changeset
|
263 If you want to read non-character events, or ignore them, call\n\ |
|
765cb54fa9af
* lread.c: #include "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents:
1519
diff
changeset
|
264 `read-event' or `read-char-exclusive' instead.") |
| 341 | 265 () |
| 266 { | |
|
2654
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
267 return read_filtered_event (1, 1, 1); |
| 341 | 268 } |
| 269 | |
| 270 DEFUN ("read-event", Fread_event, Sread_event, 0, 0, 0, | |
| 271 "Read an event object from the input stream.") | |
| 272 () | |
| 273 { | |
|
2654
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
274 return read_filtered_event (0, 0, 0); |
| 341 | 275 } |
| 276 | |
| 277 DEFUN ("read-char-exclusive", Fread_char_exclusive, Sread_char_exclusive, 0, 0, 0, | |
| 278 "Read a character from the command input (keyboard or macro).\n\ | |
| 279 It is returned as a number. Non character events are ignored.") | |
| 280 () | |
| 281 { | |
|
2654
ba685dcc3750
Arrange for Fy_or_n_p to put off switch-frame events.
Jim Blandy <jimb@redhat.com>
parents:
2545
diff
changeset
|
282 return read_filtered_event (1, 1, 0); |
| 341 | 283 } |
| 284 | |
| 285 DEFUN ("get-file-char", Fget_file_char, Sget_file_char, 0, 0, 0, | |
| 286 "Don't use this yourself.") | |
| 287 () | |
| 288 { | |
| 289 register Lisp_Object val; | |
| 290 XSET (val, Lisp_Int, getc (instream)); | |
| 291 return val; | |
| 292 } | |
| 293 | |
| 294 static void readevalloop (); | |
| 295 static Lisp_Object load_unwind (); | |
| 296 | |
| 297 DEFUN ("load", Fload, Sload, 1, 4, 0, | |
| 298 "Execute a file of Lisp code named FILE.\n\ | |
| 299 First try FILE with `.elc' appended, then try with `.el',\n\ | |
| 300 then try FILE unmodified.\n\ | |
| 301 This function searches the directories in `load-path'.\n\ | |
| 302 If optional second arg NOERROR is non-nil,\n\ | |
| 303 report no error if FILE doesn't exist.\n\ | |
| 304 Print messages at start and end of loading unless\n\ | |
| 305 optional third arg NOMESSAGE is non-nil.\n\ | |
| 306 If optional fourth arg NOSUFFIX is non-nil, don't try adding\n\ | |
| 307 suffixes `.elc' or `.el' to the specified name FILE.\n\ | |
| 308 Return t if file exists.") | |
| 309 (str, noerror, nomessage, nosuffix) | |
| 310 Lisp_Object str, noerror, nomessage, nosuffix; | |
| 311 { | |
| 312 register FILE *stream; | |
| 313 register int fd = -1; | |
| 314 register Lisp_Object lispstream; | |
| 315 register FILE **ptr; | |
| 316 int count = specpdl_ptr - specpdl; | |
| 317 Lisp_Object temp; | |
| 318 struct gcpro gcpro1; | |
| 319 Lisp_Object found; | |
|
1758
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
320 /* 1 means inhibit the message at the beginning. */ |
|
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
321 int nomessage1 = 0; |
| 341 | 322 |
| 323 CHECK_STRING (str, 0); | |
| 324 str = Fsubstitute_in_file_name (str); | |
| 325 | |
| 326 /* Avoid weird lossage with null string as arg, | |
| 327 since it would try to load a directory as a Lisp file */ | |
| 328 if (XSTRING (str)->size > 0) | |
| 329 { | |
| 485 | 330 fd = openp (Vload_path, str, !NILP (nosuffix) ? "" : ".elc:.el:", |
| 341 | 331 &found, 0); |
| 332 } | |
| 333 | |
| 334 if (fd < 0) | |
| 335 { | |
| 485 | 336 if (NILP (noerror)) |
| 341 | 337 while (1) |
| 338 Fsignal (Qfile_error, Fcons (build_string ("Cannot open load file"), | |
| 339 Fcons (str, Qnil))); | |
| 340 else | |
| 341 return Qnil; | |
| 342 } | |
| 343 | |
| 344 if (!bcmp (&(XSTRING (found)->data[XSTRING (found)->size - 4]), | |
| 345 ".elc", 4)) | |
| 346 { | |
| 347 struct stat s1, s2; | |
| 348 int result; | |
| 349 | |
| 350 stat (XSTRING (found)->data, &s1); | |
| 351 XSTRING (found)->data[XSTRING (found)->size - 1] = 0; | |
| 352 result = stat (XSTRING (found)->data, &s2); | |
| 353 if (result >= 0 && (unsigned) s1.st_mtime < (unsigned) s2.st_mtime) | |
|
1758
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
354 { |
|
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
355 message ("Source file `%s' newer than byte-compiled file", |
|
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
356 XSTRING (found)->data); |
|
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
357 /* Don't immediately overwrite this message. */ |
|
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
358 if (!noninteractive) |
|
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
359 nomessage1 = 1; |
|
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
360 } |
| 341 | 361 XSTRING (found)->data[XSTRING (found)->size - 1] = 'c'; |
| 362 } | |
| 363 | |
| 364 stream = fdopen (fd, "r"); | |
| 365 if (stream == 0) | |
| 366 { | |
| 367 close (fd); | |
| 368 error ("Failure to create stdio stream for %s", XSTRING (str)->data); | |
| 369 } | |
| 370 | |
|
1758
12c730b89ac8
(Fload): If warn that .elc file is older,
Richard M. Stallman <rms@gnu.org>
parents:
1591
diff
changeset
|
371 if (NILP (nomessage) && !nomessage1) |
| 341 | 372 message ("Loading %s...", XSTRING (str)->data); |
| 373 | |
| 374 GCPRO1 (str); | |
| 375 /* We may not be able to store STREAM itself as a Lisp_Object pointer | |
| 376 since that is guaranteed to work only for data that has been malloc'd. | |
| 377 So malloc a full-size pointer, and record the address of that pointer. */ | |
| 378 ptr = (FILE **) xmalloc (sizeof (FILE *)); | |
| 379 *ptr = stream; | |
| 380 XSET (lispstream, Lisp_Internal_Stream, (int) ptr); | |
| 381 record_unwind_protect (load_unwind, lispstream); | |
| 382 load_in_progress++; | |
|
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
383 readevalloop (Qget_file_char, stream, str, Feval, 0); |
| 341 | 384 unbind_to (count, Qnil); |
| 385 | |
| 386 /* Run any load-hooks for this file. */ | |
| 387 temp = Fassoc (str, Vafter_load_alist); | |
| 485 | 388 if (!NILP (temp)) |
| 341 | 389 Fprogn (Fcdr (temp)); |
| 390 UNGCPRO; | |
| 391 | |
| 485 | 392 if (!noninteractive && NILP (nomessage)) |
| 341 | 393 message ("Loading %s...done", XSTRING (str)->data); |
| 394 return Qt; | |
| 395 } | |
| 396 | |
| 397 static Lisp_Object | |
| 398 load_unwind (stream) /* used as unwind-protect function in load */ | |
| 399 Lisp_Object stream; | |
| 400 { | |
| 401 fclose (*(FILE **) XSTRING (stream)); | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2044
diff
changeset
|
402 xfree (XPNTR (stream)); |
| 341 | 403 if (--load_in_progress < 0) load_in_progress = 0; |
| 404 return Qnil; | |
| 405 } | |
| 406 | |
| 407 | |
| 408 static int | |
| 409 complete_filename_p (pathname) | |
| 410 Lisp_Object pathname; | |
| 411 { | |
| 412 register unsigned char *s = XSTRING (pathname)->data; | |
| 413 return (*s == '/' | |
| 414 #ifdef ALTOS | |
| 415 || *s == '@' | |
| 416 #endif | |
| 417 #ifdef VMS | |
| 418 || index (s, ':') | |
| 419 #endif /* VMS */ | |
| 420 ); | |
| 421 } | |
| 422 | |
| 423 /* Search for a file whose name is STR, looking in directories | |
| 424 in the Lisp list PATH, and trying suffixes from SUFFIX. | |
| 425 SUFFIX is a string containing possible suffixes separated by colons. | |
| 426 On success, returns a file descriptor. On failure, returns -1. | |
| 427 | |
| 428 EXEC_ONLY nonzero means don't open the files, | |
| 429 just look for one that is executable. In this case, | |
| 430 returns 1 on success. | |
| 431 | |
| 432 If STOREPTR is nonzero, it points to a slot where the name of | |
| 433 the file actually found should be stored as a Lisp string. | |
| 434 Nil is stored there on failure. */ | |
| 435 | |
| 436 int | |
| 437 openp (path, str, suffix, storeptr, exec_only) | |
| 438 Lisp_Object path, str; | |
| 439 char *suffix; | |
| 440 Lisp_Object *storeptr; | |
| 441 int exec_only; | |
| 442 { | |
| 443 register int fd; | |
| 444 int fn_size = 100; | |
| 445 char buf[100]; | |
| 446 register char *fn = buf; | |
| 447 int absolute = 0; | |
| 448 int want_size; | |
| 449 register Lisp_Object filename; | |
| 450 struct stat st; | |
| 451 | |
| 452 if (storeptr) | |
| 453 *storeptr = Qnil; | |
| 454 | |
| 455 if (complete_filename_p (str)) | |
| 456 absolute = 1; | |
| 457 | |
| 485 | 458 for (; !NILP (path); path = Fcdr (path)) |
| 341 | 459 { |
| 460 char *nsuffix; | |
| 461 | |
| 462 filename = Fexpand_file_name (str, Fcar (path)); | |
| 463 if (!complete_filename_p (filename)) | |
| 464 /* If there are non-absolute elts in PATH (eg ".") */ | |
| 465 /* Of course, this could conceivably lose if luser sets | |
| 466 default-directory to be something non-absolute... */ | |
| 467 { | |
| 468 filename = Fexpand_file_name (filename, current_buffer->directory); | |
| 469 if (!complete_filename_p (filename)) | |
| 470 /* Give up on this path element! */ | |
| 471 continue; | |
| 472 } | |
| 473 | |
| 474 /* Calculate maximum size of any filename made from | |
| 475 this path element/specified file name and any possible suffix. */ | |
| 476 want_size = strlen (suffix) + XSTRING (filename)->size + 1; | |
| 477 if (fn_size < want_size) | |
| 478 fn = (char *) alloca (fn_size = 100 + want_size); | |
| 479 | |
| 480 nsuffix = suffix; | |
| 481 | |
| 482 /* Loop over suffixes. */ | |
| 483 while (1) | |
| 484 { | |
| 485 char *esuffix = (char *) index (nsuffix, ':'); | |
| 486 int lsuffix = esuffix ? esuffix - nsuffix : strlen (nsuffix); | |
| 487 | |
| 488 /* Concatenate path element/specified name with the suffix. */ | |
| 489 strncpy (fn, XSTRING (filename)->data, XSTRING (filename)->size); | |
| 490 fn[XSTRING (filename)->size] = 0; | |
| 491 if (lsuffix != 0) /* Bug happens on CCI if lsuffix is 0. */ | |
| 492 strncat (fn, nsuffix, lsuffix); | |
| 493 | |
| 494 /* Ignore file if it's a directory. */ | |
| 495 if (stat (fn, &st) >= 0 | |
| 496 && (st.st_mode & S_IFMT) != S_IFDIR) | |
| 497 { | |
| 498 /* Check that we can access or open it. */ | |
| 499 if (exec_only) | |
| 500 fd = (access (fn, X_OK) == 0) ? 1 : -1; | |
| 501 else | |
| 502 fd = open (fn, 0, 0); | |
| 503 | |
| 504 if (fd >= 0) | |
| 505 { | |
| 506 /* We succeeded; return this descriptor and filename. */ | |
| 507 if (storeptr) | |
| 508 *storeptr = build_string (fn); | |
| 509 return fd; | |
| 510 } | |
| 511 } | |
| 512 | |
| 513 /* Advance to next suffix. */ | |
| 514 if (esuffix == 0) | |
| 515 break; | |
| 516 nsuffix += lsuffix + 1; | |
| 517 } | |
| 518 if (absolute) return -1; | |
| 519 } | |
| 520 | |
| 521 return -1; | |
| 522 } | |
| 523 | |
| 524 | |
|
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
525 /* Merge the list we've accumulated of globals from the current input source |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
526 into the load_history variable. The details depend on whether |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
527 the source has an associated file name or not. */ |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
528 |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
529 static void |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
530 build_load_history (stream, source) |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
531 FILE *stream; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
532 Lisp_Object source; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
533 { |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
534 register Lisp_Object tail, prev, newelt; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
535 register Lisp_Object tem, tem2; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
536 register int foundit, loading; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
537 |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
538 loading = stream || !NARROWED; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
539 |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
540 tail = Vload_history; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
541 prev = Qnil; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
542 foundit = 0; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
543 while (!NILP (tail)) |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
544 { |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
545 tem = Fcar (tail); |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
546 |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
547 /* Find the feature's previous assoc list... */ |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
548 if (!NILP (Fequal (source, Fcar (tem)))) |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
549 { |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
550 foundit = 1; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
551 |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
552 /* If we're loading, remove it. */ |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
553 if (loading) |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
554 { |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
555 if (NILP (prev)) |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
556 Vload_history = Fcdr (tail); |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
557 else |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
558 Fsetcdr (prev, Fcdr (tail)); |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
559 } |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
560 |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
561 /* Otherwise, cons on new symbols that are not already members. */ |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
562 else |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
563 { |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
564 tem2 = Vcurrent_load_list; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
565 |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
566 while (CONSP (tem2)) |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
567 { |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
568 newelt = Fcar (tem2); |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
569 |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
570 if (NILP (Fmemq (newelt, tem))) |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
571 Fsetcar (tail, Fcons (Fcar (tem), |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
572 Fcons (newelt, Fcdr (tem)))); |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
573 |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
574 tem2 = Fcdr (tem2); |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
575 QUIT; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
576 } |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
577 } |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
578 } |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
579 else |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
580 prev = tail; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
581 tail = Fcdr (tail); |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
582 QUIT; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
583 } |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
584 |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
585 /* If we're loading, cons the new assoc onto the front of load-history, |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
586 the most-recently-loaded position. Also do this if we didn't find |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
587 an existing member for the current source. */ |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
588 if (loading || !foundit) |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
589 Vload_history = Fcons (Fnreverse(Vcurrent_load_list), |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
590 Vload_history); |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
591 } |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
592 |
| 341 | 593 Lisp_Object |
| 594 unreadpure () /* Used as unwind-protect function in readevalloop */ | |
| 595 { | |
| 596 read_pure = 0; | |
| 597 return Qnil; | |
| 598 } | |
| 599 | |
| 600 static void | |
|
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
601 readevalloop (readcharfun, stream, sourcename, evalfun, printflag) |
| 341 | 602 Lisp_Object readcharfun; |
|
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
603 FILE *stream; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
604 Lisp_Object sourcename; |
| 341 | 605 Lisp_Object (*evalfun) (); |
| 606 int printflag; | |
| 607 { | |
| 608 register int c; | |
| 609 register Lisp_Object val; | |
|
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
610 Lisp_Object oldlist; |
| 341 | 611 int count = specpdl_ptr - specpdl; |
|
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
612 struct gcpro gcpro1, gcpro2; |
| 341 | 613 |
| 614 specbind (Qstandard_input, readcharfun); | |
| 615 | |
|
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
616 oldlist = Vcurrent_load_list; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
617 GCPRO2 (sourcename, oldlist); |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
618 |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
619 Vcurrent_load_list = Qnil; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
620 LOADHIST_ATTACH (sourcename); |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
621 |
| 341 | 622 while (1) |
| 623 { | |
| 624 instream = stream; | |
| 625 c = READCHAR; | |
| 626 if (c == ';') | |
| 627 { | |
| 628 while ((c = READCHAR) != '\n' && c != -1); | |
| 629 continue; | |
| 630 } | |
| 631 if (c < 0) break; | |
| 632 if (c == ' ' || c == '\t' || c == '\n' || c == '\f') continue; | |
| 633 | |
| 485 | 634 if (!NILP (Vpurify_flag) && c == '(') |
| 341 | 635 { |
| 636 record_unwind_protect (unreadpure, Qnil); | |
| 637 val = read_list (-1, readcharfun); | |
| 638 unbind_to (count + 1, Qnil); | |
| 639 } | |
| 640 else | |
| 641 { | |
| 642 UNREAD (c); | |
| 643 val = read0 (readcharfun); | |
| 644 } | |
| 645 | |
| 646 val = (*evalfun) (val); | |
| 647 if (printflag) | |
| 648 { | |
| 649 Vvalues = Fcons (val, Vvalues); | |
| 650 if (EQ (Vstandard_output, Qt)) | |
| 651 Fprin1 (val, Qnil); | |
| 652 else | |
| 653 Fprint (val, Qnil); | |
| 654 } | |
| 655 } | |
| 656 | |
|
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
657 build_load_history (stream, sourcename); |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
658 |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
659 Vcurrent_load_list = oldlist; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
660 UNGCPRO; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
661 |
| 341 | 662 unbind_to (count, Qnil); |
| 663 } | |
| 664 | |
| 665 #ifndef standalone | |
| 666 | |
| 732 | 667 DEFUN ("eval-buffer", Feval_buffer, Seval_buffer, 0, 2, "", |
|
675
85fd29f25c75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
673
diff
changeset
|
668 "Execute the current buffer as Lisp code.\n\ |
|
85fd29f25c75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
673
diff
changeset
|
669 Programs can pass two arguments, BUFFER and PRINTFLAG.\n\ |
|
85fd29f25c75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
673
diff
changeset
|
670 BUFFER is the buffer to evaluate (nil means use current buffer).\n\ |
|
85fd29f25c75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
673
diff
changeset
|
671 PRINTFLAG controls printing of output:\n\ |
| 672 | 672 nil means discard it; anything else is stream for print.\n\ |
| 673 \n\ | |
| 674 If there is no error, point does not move. If there is an error,\n\ | |
| 675 point remains at the end of the last character read from the buffer.") | |
| 676 (bufname, printflag) | |
| 677 Lisp_Object bufname, printflag; | |
| 678 { | |
| 679 int count = specpdl_ptr - specpdl; | |
| 680 Lisp_Object tem, buf; | |
| 681 | |
| 673 | 682 if (NILP (bufname)) |
| 672 | 683 buf = Fcurrent_buffer (); |
| 684 else | |
| 685 buf = Fget_buffer (bufname); | |
| 673 | 686 if (NILP (buf)) |
| 672 | 687 error ("No such buffer."); |
| 688 | |
| 673 | 689 if (NILP (printflag)) |
| 672 | 690 tem = Qsymbolp; |
| 691 else | |
| 692 tem = printflag; | |
| 693 specbind (Qstandard_output, tem); | |
| 694 record_unwind_protect (save_excursion_restore, save_excursion_save ()); | |
| 695 BUF_SET_PT (XBUFFER (buf), BUF_BEGV (XBUFFER (buf))); | |
|
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
696 readevalloop (buf, 0, XBUFFER (buf)->filename, Feval, !NILP (printflag)); |
|
1924
21bd3a2189d3
* keyboard.c (recursive_edit_1, command_loop_1): Pass the proper
Jim Blandy <jimb@redhat.com>
parents:
1887
diff
changeset
|
697 unbind_to (count, Qnil); |
| 672 | 698 |
| 699 return Qnil; | |
| 700 } | |
| 701 | |
| 702 #if 0 | |
| 341 | 703 DEFUN ("eval-current-buffer", Feval_current_buffer, Seval_current_buffer, 0, 1, "", |
| 704 "Execute the current buffer as Lisp code.\n\ | |
| 705 Programs can pass argument PRINTFLAG which controls printing of output:\n\ | |
| 706 nil means discard it; anything else is stream for print.\n\ | |
| 707 \n\ | |
| 708 If there is no error, point does not move. If there is an error,\n\ | |
| 709 point remains at the end of the last character read from the buffer.") | |
| 710 (printflag) | |
| 711 Lisp_Object printflag; | |
| 712 { | |
| 713 int count = specpdl_ptr - specpdl; | |
|
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
714 Lisp_Object tem, cbuf; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
715 |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
716 cbuf = Fcurrent_buffer () |
| 341 | 717 |
| 485 | 718 if (NILP (printflag)) |
| 341 | 719 tem = Qsymbolp; |
| 720 else | |
| 721 tem = printflag; | |
| 722 specbind (Qstandard_output, tem); | |
| 723 record_unwind_protect (save_excursion_restore, save_excursion_save ()); | |
| 724 SET_PT (BEGV); | |
|
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
725 readevalloop (cbuf, 0, XBUFFER (cbuf)->filename, Feval, !NILP (printflag)); |
| 341 | 726 return unbind_to (count, Qnil); |
| 727 } | |
| 672 | 728 #endif |
| 341 | 729 |
| 730 DEFUN ("eval-region", Feval_region, Seval_region, 2, 3, "r", | |
| 731 "Execute the region as Lisp code.\n\ | |
| 732 When called from programs, expects two arguments,\n\ | |
| 733 giving starting and ending indices in the current buffer\n\ | |
| 734 of the text to be executed.\n\ | |
| 735 Programs can pass third argument PRINTFLAG which controls output:\n\ | |
| 736 nil means discard it; anything else is stream for printing it.\n\ | |
| 737 \n\ | |
| 738 If there is no error, point does not move. If there is an error,\n\ | |
| 739 point remains at the end of the last character read from the buffer.") | |
| 740 (b, e, printflag) | |
| 741 Lisp_Object b, e, printflag; | |
| 742 { | |
| 743 int count = specpdl_ptr - specpdl; | |
|
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
744 Lisp_Object tem, cbuf; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
745 |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
746 cbuf = Fcurrent_buffer (); |
| 341 | 747 |
| 485 | 748 if (NILP (printflag)) |
| 341 | 749 tem = Qsymbolp; |
| 750 else | |
| 751 tem = printflag; | |
| 752 specbind (Qstandard_output, tem); | |
| 753 | |
| 485 | 754 if (NILP (printflag)) |
| 341 | 755 record_unwind_protect (save_excursion_restore, save_excursion_save ()); |
| 756 record_unwind_protect (save_restriction_restore, save_restriction_save ()); | |
| 757 | |
| 758 /* This both uses b and checks its type. */ | |
| 759 Fgoto_char (b); | |
| 760 Fnarrow_to_region (make_number (BEGV), e); | |
|
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
761 readevalloop (cbuf, 0, XBUFFER (cbuf)->filename, Feval, !NILP (printflag)); |
| 341 | 762 |
| 763 return unbind_to (count, Qnil); | |
| 764 } | |
| 765 | |
| 766 #endif /* standalone */ | |
| 767 | |
| 768 DEFUN ("read", Fread, Sread, 0, 1, 0, | |
| 769 "Read one Lisp expression as text from STREAM, return as Lisp object.\n\ | |
| 770 If STREAM is nil, use the value of `standard-input' (which see).\n\ | |
| 771 STREAM or the value of `standard-input' may be:\n\ | |
| 772 a buffer (read from point and advance it)\n\ | |
| 773 a marker (read from where it points and advance it)\n\ | |
| 774 a function (call it with no arguments for each character,\n\ | |
| 775 call it with a char as argument to push a char back)\n\ | |
| 776 a string (takes text from string, starting at the beginning)\n\ | |
| 777 t (read text line using minibuffer and use it).") | |
| 778 (readcharfun) | |
| 779 Lisp_Object readcharfun; | |
| 780 { | |
| 781 extern Lisp_Object Fread_minibuffer (); | |
| 782 | |
| 485 | 783 if (NILP (readcharfun)) |
| 341 | 784 readcharfun = Vstandard_input; |
| 785 if (EQ (readcharfun, Qt)) | |
| 786 readcharfun = Qread_char; | |
| 787 | |
| 788 #ifndef standalone | |
| 789 if (EQ (readcharfun, Qread_char)) | |
| 790 return Fread_minibuffer (build_string ("Lisp expression: "), Qnil); | |
| 791 #endif | |
| 792 | |
| 793 if (XTYPE (readcharfun) == Lisp_String) | |
| 794 return Fcar (Fread_from_string (readcharfun, Qnil, Qnil)); | |
| 795 | |
| 796 return read0 (readcharfun); | |
| 797 } | |
| 798 | |
| 799 DEFUN ("read-from-string", Fread_from_string, Sread_from_string, 1, 3, 0, | |
| 800 "Read one Lisp expression which is represented as text by STRING.\n\ | |
| 801 Returns a cons: (OBJECT-READ . FINAL-STRING-INDEX).\n\ | |
| 802 START and END optionally delimit a substring of STRING from which to read;\n\ | |
| 803 they default to 0 and (length STRING) respectively.") | |
| 804 (string, start, end) | |
| 805 Lisp_Object string, start, end; | |
| 806 { | |
| 807 int startval, endval; | |
| 808 Lisp_Object tem; | |
| 809 | |
| 810 CHECK_STRING (string,0); | |
| 811 | |
| 485 | 812 if (NILP (end)) |
| 341 | 813 endval = XSTRING (string)->size; |
| 814 else | |
| 815 { CHECK_NUMBER (end,2); | |
| 816 endval = XINT (end); | |
| 817 if (endval < 0 || endval > XSTRING (string)->size) | |
| 818 args_out_of_range (string, end); | |
| 819 } | |
| 820 | |
| 485 | 821 if (NILP (start)) |
| 341 | 822 startval = 0; |
| 823 else | |
| 824 { CHECK_NUMBER (start,1); | |
| 825 startval = XINT (start); | |
| 826 if (startval < 0 || startval > endval) | |
| 827 args_out_of_range (string, start); | |
| 828 } | |
| 829 | |
| 830 read_from_string_index = startval; | |
| 831 read_from_string_limit = endval; | |
| 832 | |
| 833 tem = read0 (string); | |
| 834 return Fcons (tem, make_number (read_from_string_index)); | |
| 835 } | |
| 836 | |
| 837 /* Use this for recursive reads, in contexts where internal tokens are not allowed. */ | |
| 838 | |
| 839 static Lisp_Object | |
| 840 read0 (readcharfun) | |
| 841 Lisp_Object readcharfun; | |
| 842 { | |
| 843 register Lisp_Object val; | |
| 844 char c; | |
| 845 | |
| 846 val = read1 (readcharfun); | |
| 847 if (XTYPE (val) == Lisp_Internal) | |
| 848 { | |
| 849 c = XINT (val); | |
| 850 return Fsignal (Qinvalid_read_syntax, Fcons (make_string (&c, 1), Qnil)); | |
| 851 } | |
| 852 | |
| 853 return val; | |
| 854 } | |
| 855 | |
| 856 static int read_buffer_size; | |
| 857 static char *read_buffer; | |
| 858 | |
| 859 static int | |
| 860 read_escape (readcharfun) | |
| 861 Lisp_Object readcharfun; | |
| 862 { | |
| 863 register int c = READCHAR; | |
| 864 switch (c) | |
| 865 { | |
| 866 case 'a': | |
| 485 | 867 return '\007'; |
| 341 | 868 case 'b': |
| 869 return '\b'; | |
|
2018
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
870 case 'd': |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
871 return 0177; |
| 341 | 872 case 'e': |
| 873 return 033; | |
| 874 case 'f': | |
| 875 return '\f'; | |
| 876 case 'n': | |
| 877 return '\n'; | |
| 878 case 'r': | |
| 879 return '\r'; | |
| 880 case 't': | |
| 881 return '\t'; | |
| 882 case 'v': | |
| 883 return '\v'; | |
| 884 case '\n': | |
| 885 return -1; | |
| 886 | |
| 887 case 'M': | |
| 888 c = READCHAR; | |
| 889 if (c != '-') | |
| 890 error ("Invalid escape character syntax"); | |
| 891 c = READCHAR; | |
| 892 if (c == '\\') | |
| 893 c = read_escape (readcharfun); | |
|
2044
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
894 return c | meta_modifier; |
|
2018
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
895 |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
896 case 'S': |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
897 c = READCHAR; |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
898 if (c != '-') |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
899 error ("Invalid escape character syntax"); |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
900 c = READCHAR; |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
901 if (c == '\\') |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
902 c = read_escape (readcharfun); |
|
2044
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
903 return c | shift_modifier; |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
904 |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
905 case 'H': |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
906 c = READCHAR; |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
907 if (c != '-') |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
908 error ("Invalid escape character syntax"); |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
909 c = READCHAR; |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
910 if (c == '\\') |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
911 c = read_escape (readcharfun); |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
912 return c | hyper_modifier; |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
913 |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
914 case 'A': |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
915 c = READCHAR; |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
916 if (c != '-') |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
917 error ("Invalid escape character syntax"); |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
918 c = READCHAR; |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
919 if (c == '\\') |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
920 c = read_escape (readcharfun); |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
921 return c | alt_modifier; |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
922 |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
923 case 's': |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
924 c = READCHAR; |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
925 if (c != '-') |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
926 error ("Invalid escape character syntax"); |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
927 c = READCHAR; |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
928 if (c == '\\') |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
929 c = read_escape (readcharfun); |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
930 return c | super_modifier; |
| 341 | 931 |
| 932 case 'C': | |
| 933 c = READCHAR; | |
| 934 if (c != '-') | |
| 935 error ("Invalid escape character syntax"); | |
| 936 case '^': | |
| 937 c = READCHAR; | |
| 938 if (c == '\\') | |
| 939 c = read_escape (readcharfun); | |
|
2018
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
940 if ((c & 0177) == '?') |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
941 return 0177 | c; |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
942 /* ASCII control chars are made from letters (both cases), |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
943 as well as the non-letters within 0100...0137. */ |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
944 else if ((c & 0137) >= 0101 && (c & 0137) <= 0132) |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
945 return (c & (037 | ~0177)); |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
946 else if ((c & 0177) >= 0100 && (c & 0177) <= 0137) |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
947 return (c & (037 | ~0177)); |
| 341 | 948 else |
|
2044
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
949 return c | ctrl_modifier; |
| 341 | 950 |
| 951 case '0': | |
| 952 case '1': | |
| 953 case '2': | |
| 954 case '3': | |
| 955 case '4': | |
| 956 case '5': | |
| 957 case '6': | |
| 958 case '7': | |
| 959 /* An octal escape, as in ANSI C. */ | |
| 960 { | |
| 961 register int i = c - '0'; | |
| 962 register int count = 0; | |
| 963 while (++count < 3) | |
| 964 { | |
| 965 if ((c = READCHAR) >= '0' && c <= '7') | |
| 966 { | |
| 967 i *= 8; | |
| 968 i += c - '0'; | |
| 969 } | |
| 970 else | |
| 971 { | |
| 972 UNREAD (c); | |
| 973 break; | |
| 974 } | |
| 975 } | |
| 976 return i; | |
| 977 } | |
| 978 | |
| 979 case 'x': | |
| 980 /* A hex escape, as in ANSI C. */ | |
| 981 { | |
| 982 int i = 0; | |
| 983 while (1) | |
| 984 { | |
| 985 c = READCHAR; | |
| 986 if (c >= '0' && c <= '9') | |
| 987 { | |
| 988 i *= 16; | |
| 989 i += c - '0'; | |
| 990 } | |
| 991 else if ((c >= 'a' && c <= 'f') | |
| 992 || (c >= 'A' && c <= 'F')) | |
| 993 { | |
| 994 i *= 16; | |
| 995 if (c >= 'a' && c <= 'f') | |
| 996 i += c - 'a' + 10; | |
| 997 else | |
| 998 i += c - 'A' + 10; | |
| 999 } | |
| 1000 else | |
| 1001 { | |
| 1002 UNREAD (c); | |
| 1003 break; | |
| 1004 } | |
| 1005 } | |
| 1006 return i; | |
| 1007 } | |
| 1008 | |
| 1009 default: | |
| 1010 return c; | |
| 1011 } | |
| 1012 } | |
| 1013 | |
| 1014 static Lisp_Object | |
| 1015 read1 (readcharfun) | |
| 1016 register Lisp_Object readcharfun; | |
| 1017 { | |
| 1018 register int c; | |
| 1019 | |
| 1020 retry: | |
| 1021 | |
| 1022 c = READCHAR; | |
| 1023 if (c < 0) return Fsignal (Qend_of_file, Qnil); | |
| 1024 | |
| 1025 switch (c) | |
| 1026 { | |
| 1027 case '(': | |
| 1028 return read_list (0, readcharfun); | |
| 1029 | |
| 1030 case '[': | |
| 1031 return read_vector (readcharfun); | |
| 1032 | |
| 1033 case ')': | |
| 1034 case ']': | |
| 1035 { | |
| 1036 register Lisp_Object val; | |
| 1037 XSET (val, Lisp_Internal, c); | |
| 1038 return val; | |
| 1039 } | |
| 1040 | |
| 1041 case '#': | |
|
373
7c6f74ef31a3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
364
diff
changeset
|
1042 c = READCHAR; |
|
7c6f74ef31a3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
364
diff
changeset
|
1043 if (c == '[') |
|
7c6f74ef31a3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
364
diff
changeset
|
1044 { |
|
7c6f74ef31a3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
364
diff
changeset
|
1045 /* Accept compiled functions at read-time so that we don't have to |
|
7c6f74ef31a3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
364
diff
changeset
|
1046 build them using function calls. */ |
|
1966
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1047 Lisp_Object tmp; |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1048 tmp = read_vector (readcharfun); |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1049 return Fmake_byte_code (XVECTOR (tmp)->size, |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1050 XVECTOR (tmp)->contents); |
|
373
7c6f74ef31a3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
364
diff
changeset
|
1051 } |
|
1966
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1052 #ifdef USE_TEXT_PROPERTIES |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1053 if (c == '(') |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1054 { |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1055 Lisp_Object tmp; |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1056 struct gcpro gcpro1; |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1057 |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1058 /* Read the string itself. */ |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1059 tmp = read1 (readcharfun); |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1060 if (XTYPE (tmp) != Lisp_String) |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1061 Fsignal (Qinvalid_read_syntax, Fcons (make_string ("#", 1), Qnil)); |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1062 GCPRO1 (tmp); |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1063 /* Read the intervals and their properties. */ |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1064 while (1) |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1065 { |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1066 Lisp_Object beg, end, plist; |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1067 |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1068 beg = read1 (readcharfun); |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1069 if (XTYPE (beg) == Lisp_Internal) |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1070 { |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1071 if (XINT (beg) == ')') |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1072 break; |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1073 Fsignal (Qinvalid_read_syntax, Fcons (make_string ("invalid string property list", 28), Qnil)); |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1074 } |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1075 end = read1 (readcharfun); |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1076 if (XTYPE (end) == Lisp_Internal) |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1077 Fsignal (Qinvalid_read_syntax, |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1078 Fcons (make_string ("invalid string property list", 28), Qnil)); |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1079 |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1080 plist = read1 (readcharfun); |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1081 if (XTYPE (plist) == Lisp_Internal) |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1082 Fsignal (Qinvalid_read_syntax, |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1083 Fcons (make_string ("invalid string property list", 28), Qnil)); |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1084 Fset_text_properties (beg, end, plist, tmp); |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1085 } |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1086 UNGCPRO; |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1087 return tmp; |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1088 } |
|
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1089 #endif |
|
373
7c6f74ef31a3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
364
diff
changeset
|
1090 UNREAD (c); |
|
1966
bcc34323a475
(read1--strings with properties case):
Richard M. Stallman <rms@gnu.org>
parents:
1924
diff
changeset
|
1091 Fsignal (Qinvalid_read_syntax, Fcons (make_string ("#", 1), Qnil)); |
| 341 | 1092 |
| 1093 case ';': | |
| 1094 while ((c = READCHAR) >= 0 && c != '\n'); | |
| 1095 goto retry; | |
| 1096 | |
| 1097 case '\'': | |
| 1098 { | |
| 1099 return Fcons (Qquote, Fcons (read0 (readcharfun), Qnil)); | |
| 1100 } | |
| 1101 | |
| 1102 case '?': | |
| 1103 { | |
| 1104 register Lisp_Object val; | |
| 1105 | |
| 1106 c = READCHAR; | |
| 1107 if (c < 0) return Fsignal (Qend_of_file, Qnil); | |
| 1108 | |
| 1109 if (c == '\\') | |
| 1110 XSET (val, Lisp_Int, read_escape (readcharfun)); | |
| 1111 else | |
| 1112 XSET (val, Lisp_Int, c); | |
| 1113 | |
| 1114 return val; | |
| 1115 } | |
| 1116 | |
| 1117 case '\"': | |
| 1118 { | |
| 1119 register char *p = read_buffer; | |
| 1120 register char *end = read_buffer + read_buffer_size; | |
| 1121 register int c; | |
| 1122 int cancel = 0; | |
| 1123 | |
| 1124 while ((c = READCHAR) >= 0 | |
| 1125 && c != '\"') | |
| 1126 { | |
| 1127 if (p == end) | |
| 1128 { | |
| 1129 char *new = (char *) xrealloc (read_buffer, read_buffer_size *= 2); | |
| 1130 p += new - read_buffer; | |
| 1131 read_buffer += new - read_buffer; | |
| 1132 end = read_buffer + read_buffer_size; | |
| 1133 } | |
| 1134 if (c == '\\') | |
| 1135 c = read_escape (readcharfun); | |
| 1136 /* c is -1 if \ newline has just been seen */ | |
|
2018
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
1137 if (c == -1) |
| 341 | 1138 { |
| 1139 if (p == read_buffer) | |
| 1140 cancel = 1; | |
| 1141 } | |
|
2018
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
1142 else if (c & CHAR_META) |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
1143 /* Move the meta bit to the right place for a string. */ |
|
7c970ef8949d
(read_escape): Handle M-, C- and S- for new convention.
Richard M. Stallman <rms@gnu.org>
parents:
1966
diff
changeset
|
1144 *p++ = (c & ~CHAR_META) | 0x80; |
| 341 | 1145 else |
| 1146 *p++ = c; | |
| 1147 } | |
| 1148 if (c < 0) return Fsignal (Qend_of_file, Qnil); | |
| 1149 | |
| 1150 /* If purifying, and string starts with \ newline, | |
| 1151 return zero instead. This is for doc strings | |
| 604 | 1152 that we are really going to find in etc/DOC.nn.nn */ |
| 485 | 1153 if (!NILP (Vpurify_flag) && NILP (Vdoc_file_name) && cancel) |
| 341 | 1154 return make_number (0); |
| 1155 | |
| 1156 if (read_pure) | |
| 1157 return make_pure_string (read_buffer, p - read_buffer); | |
| 1158 else | |
| 1159 return make_string (read_buffer, p - read_buffer); | |
| 1160 } | |
| 1161 | |
| 762 | 1162 case '.': |
| 1163 { | |
| 1164 #ifdef LISP_FLOAT_TYPE | |
| 1165 /* If a period is followed by a number, then we should read it | |
| 1166 as a floating point number. Otherwise, it denotes a dotted | |
| 1167 pair. */ | |
| 1168 int next_char = READCHAR; | |
| 1169 UNREAD (next_char); | |
| 1170 | |
| 1171 if (! isdigit (next_char)) | |
| 1172 #endif | |
| 1173 { | |
| 1174 register Lisp_Object val; | |
| 1175 XSET (val, Lisp_Internal, c); | |
| 1176 return val; | |
| 1177 } | |
| 1178 | |
| 1179 /* Otherwise, we fall through! Note that the atom-reading loop | |
| 1180 below will now loop at least once, assuring that we will not | |
| 1181 try to UNREAD two characters in a row. */ | |
| 1182 } | |
| 341 | 1183 default: |
| 1184 if (c <= 040) goto retry; | |
| 1185 { | |
| 1186 register char *p = read_buffer; | |
| 1187 | |
| 1188 { | |
| 1189 register char *end = read_buffer + read_buffer_size; | |
| 1190 | |
| 1191 while (c > 040 && | |
| 1192 !(c == '\"' || c == '\'' || c == ';' || c == '?' | |
| 1193 || c == '(' || c == ')' | |
| 762 | 1194 #ifndef LISP_FLOAT_TYPE |
| 1195 /* If we have floating-point support, then we need | |
| 1196 to allow <digits><dot><digits>. */ | |
| 341 | 1197 || c =='.' |
| 1198 #endif /* not LISP_FLOAT_TYPE */ | |
| 1199 || c == '[' || c == ']' || c == '#' | |
| 1200 )) | |
| 1201 { | |
| 1202 if (p == end) | |
| 1203 { | |
| 1204 register char *new = (char *) xrealloc (read_buffer, read_buffer_size *= 2); | |
| 1205 p += new - read_buffer; | |
| 1206 read_buffer += new - read_buffer; | |
| 1207 end = read_buffer + read_buffer_size; | |
| 1208 } | |
| 1209 if (c == '\\') | |
| 1210 c = READCHAR; | |
| 1211 *p++ = c; | |
| 1212 c = READCHAR; | |
| 1213 } | |
| 1214 | |
| 1215 if (p == end) | |
| 1216 { | |
| 1217 char *new = (char *) xrealloc (read_buffer, read_buffer_size *= 2); | |
| 1218 p += new - read_buffer; | |
| 1219 read_buffer += new - read_buffer; | |
| 1220 /* end = read_buffer + read_buffer_size; */ | |
| 1221 } | |
| 1222 *p = 0; | |
| 1223 if (c >= 0) | |
| 1224 UNREAD (c); | |
| 1225 } | |
| 1226 | |
| 1227 /* Is it an integer? */ | |
| 1228 { | |
| 1229 register char *p1; | |
| 1230 register Lisp_Object val; | |
| 1231 p1 = read_buffer; | |
| 1232 if (*p1 == '+' || *p1 == '-') p1++; | |
| 1233 if (p1 != p) | |
| 1234 { | |
| 1235 while (p1 != p && (c = *p1) >= '0' && c <= '9') p1++; | |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1758
diff
changeset
|
1236 #ifdef LISP_FLOAT_TYPE |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1758
diff
changeset
|
1237 /* Integers can have trailing decimal points. */ |
|
1827
e31051f17b9d
* lread.c (read1): Although digits followed by a '.' are an
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1238 if (p1 > read_buffer && p1 < p && *p1 == '.') p1++; |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1758
diff
changeset
|
1239 #endif |
| 341 | 1240 if (p1 == p) |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1758
diff
changeset
|
1241 /* It is an integer. */ |
| 341 | 1242 { |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1758
diff
changeset
|
1243 #ifdef LISP_FLOAT_TYPE |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1758
diff
changeset
|
1244 if (p1[-1] == '.') |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1758
diff
changeset
|
1245 p1[-1] = '\0'; |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1758
diff
changeset
|
1246 #endif |
| 341 | 1247 XSET (val, Lisp_Int, atoi (read_buffer)); |
| 1248 return val; | |
| 1249 } | |
| 1250 } | |
| 1251 #ifdef LISP_FLOAT_TYPE | |
| 1252 if (isfloat_string (read_buffer)) | |
| 1253 return make_float (atof (read_buffer)); | |
| 1254 #endif | |
| 1255 } | |
| 1256 | |
| 1257 return intern (read_buffer); | |
| 1258 } | |
| 1259 } | |
| 1260 } | |
| 1261 | |
| 1262 #ifdef LISP_FLOAT_TYPE | |
| 1263 | |
| 1264 #define LEAD_INT 1 | |
| 1265 #define DOT_CHAR 2 | |
| 1266 #define TRAIL_INT 4 | |
| 1267 #define E_CHAR 8 | |
| 1268 #define EXP_INT 16 | |
| 1269 | |
| 1270 int | |
| 1271 isfloat_string (cp) | |
| 1272 register char *cp; | |
| 1273 { | |
| 1274 register state; | |
| 1275 | |
| 1276 state = 0; | |
| 1277 if (*cp == '+' || *cp == '-') | |
| 1278 cp++; | |
| 1279 | |
| 1280 if (isdigit(*cp)) | |
| 1281 { | |
| 1282 state |= LEAD_INT; | |
| 1283 while (isdigit (*cp)) | |
| 1284 cp ++; | |
| 1285 } | |
| 1286 if (*cp == '.') | |
| 1287 { | |
| 1288 state |= DOT_CHAR; | |
| 1289 cp++; | |
| 1290 } | |
| 1291 if (isdigit(*cp)) | |
| 1292 { | |
| 1293 state |= TRAIL_INT; | |
| 1294 while (isdigit (*cp)) | |
| 1295 cp++; | |
| 1296 } | |
| 1297 if (*cp == 'e') | |
| 1298 { | |
| 1299 state |= E_CHAR; | |
| 1300 cp++; | |
| 1301 } | |
| 1302 if ((*cp == '+') || (*cp == '-')) | |
| 1303 cp++; | |
| 1304 | |
| 1305 if (isdigit (*cp)) | |
| 1306 { | |
| 1307 state |= EXP_INT; | |
| 1308 while (isdigit (*cp)) | |
| 1309 cp++; | |
| 1310 } | |
| 1311 return (*cp == 0 | |
| 1312 && (state == (LEAD_INT|DOT_CHAR|TRAIL_INT) | |
| 826 | 1313 || state == (DOT_CHAR|TRAIL_INT) |
| 341 | 1314 || state == (LEAD_INT|E_CHAR|EXP_INT) |
| 826 | 1315 || state == (LEAD_INT|DOT_CHAR|TRAIL_INT|E_CHAR|EXP_INT) |
| 1316 || state == (DOT_CHAR|TRAIL_INT|E_CHAR|EXP_INT))); | |
| 341 | 1317 } |
| 1318 #endif /* LISP_FLOAT_TYPE */ | |
| 1319 | |
| 1320 static Lisp_Object | |
| 1321 read_vector (readcharfun) | |
| 1322 Lisp_Object readcharfun; | |
| 1323 { | |
| 1324 register int i; | |
| 1325 register int size; | |
| 1326 register Lisp_Object *ptr; | |
| 1327 register Lisp_Object tem, vector; | |
| 1328 register struct Lisp_Cons *otem; | |
| 1329 Lisp_Object len; | |
| 1330 | |
| 1331 tem = read_list (1, readcharfun); | |
| 1332 len = Flength (tem); | |
| 1333 vector = (read_pure ? make_pure_vector (XINT (len)) : Fmake_vector (len, Qnil)); | |
| 1334 | |
| 1335 | |
| 1336 size = XVECTOR (vector)->size; | |
| 1337 ptr = XVECTOR (vector)->contents; | |
| 1338 for (i = 0; i < size; i++) | |
| 1339 { | |
| 1340 ptr[i] = read_pure ? Fpurecopy (Fcar (tem)) : Fcar (tem); | |
| 1341 otem = XCONS (tem); | |
| 1342 tem = Fcdr (tem); | |
| 1343 free_cons (otem); | |
| 1344 } | |
| 1345 return vector; | |
| 1346 } | |
| 1347 | |
| 1348 /* flag = 1 means check for ] to terminate rather than ) and . | |
| 1349 flag = -1 means check for starting with defun | |
| 1350 and make structure pure. */ | |
| 1351 | |
| 1352 static Lisp_Object | |
| 1353 read_list (flag, readcharfun) | |
| 1354 int flag; | |
| 1355 register Lisp_Object readcharfun; | |
| 1356 { | |
| 1357 /* -1 means check next element for defun, | |
| 1358 0 means don't check, | |
| 1359 1 means already checked and found defun. */ | |
| 1360 int defunflag = flag < 0 ? -1 : 0; | |
| 1361 Lisp_Object val, tail; | |
| 1362 register Lisp_Object elt, tem; | |
| 1363 struct gcpro gcpro1, gcpro2; | |
| 1364 | |
| 1365 val = Qnil; | |
| 1366 tail = Qnil; | |
| 1367 | |
| 1368 while (1) | |
| 1369 { | |
| 1370 GCPRO2 (val, tail); | |
| 1371 elt = read1 (readcharfun); | |
| 1372 UNGCPRO; | |
| 1373 if (XTYPE (elt) == Lisp_Internal) | |
| 1374 { | |
| 1375 if (flag > 0) | |
| 1376 { | |
| 1377 if (XINT (elt) == ']') | |
| 1378 return val; | |
| 1379 return Fsignal (Qinvalid_read_syntax, Fcons (make_string (") or . in a vector", 18), Qnil)); | |
| 1380 } | |
| 1381 if (XINT (elt) == ')') | |
| 1382 return val; | |
| 1383 if (XINT (elt) == '.') | |
| 1384 { | |
| 1385 GCPRO2 (val, tail); | |
| 485 | 1386 if (!NILP (tail)) |
| 341 | 1387 XCONS (tail)->cdr = read0 (readcharfun); |
| 1388 else | |
| 1389 val = read0 (readcharfun); | |
| 1390 elt = read1 (readcharfun); | |
| 1391 UNGCPRO; | |
| 1392 if (XTYPE (elt) == Lisp_Internal && XINT (elt) == ')') | |
| 1393 return val; | |
| 1394 return Fsignal (Qinvalid_read_syntax, Fcons (make_string (". in wrong context", 18), Qnil)); | |
| 1395 } | |
| 1396 return Fsignal (Qinvalid_read_syntax, Fcons (make_string ("] in a list", 11), Qnil)); | |
| 1397 } | |
| 1398 tem = (read_pure && flag <= 0 | |
| 1399 ? pure_cons (elt, Qnil) | |
| 1400 : Fcons (elt, Qnil)); | |
| 485 | 1401 if (!NILP (tail)) |
| 341 | 1402 XCONS (tail)->cdr = tem; |
| 1403 else | |
| 1404 val = tem; | |
| 1405 tail = tem; | |
| 1406 if (defunflag < 0) | |
| 1407 defunflag = EQ (elt, Qdefun); | |
| 1408 else if (defunflag > 0) | |
| 1409 read_pure = 1; | |
| 1410 } | |
| 1411 } | |
| 1412 | |
| 1413 Lisp_Object Vobarray; | |
| 1414 Lisp_Object initial_obarray; | |
| 1415 | |
| 1416 Lisp_Object | |
| 1417 check_obarray (obarray) | |
| 1418 Lisp_Object obarray; | |
| 1419 { | |
| 1420 while (XTYPE (obarray) != Lisp_Vector || XVECTOR (obarray)->size == 0) | |
| 1421 { | |
| 1422 /* If Vobarray is now invalid, force it to be valid. */ | |
| 1423 if (EQ (Vobarray, obarray)) Vobarray = initial_obarray; | |
| 1424 | |
| 1425 obarray = wrong_type_argument (Qvectorp, obarray); | |
| 1426 } | |
| 1427 return obarray; | |
| 1428 } | |
| 1429 | |
| 1430 static int hash_string (); | |
| 1431 Lisp_Object oblookup (); | |
| 1432 | |
| 1433 Lisp_Object | |
| 1434 intern (str) | |
| 1435 char *str; | |
| 1436 { | |
| 1437 Lisp_Object tem; | |
| 1438 int len = strlen (str); | |
| 1439 Lisp_Object obarray = Vobarray; | |
| 1440 | |
| 1441 if (XTYPE (obarray) != Lisp_Vector || XVECTOR (obarray)->size == 0) | |
| 1442 obarray = check_obarray (obarray); | |
| 1443 tem = oblookup (obarray, str, len); | |
| 1444 if (XTYPE (tem) == Lisp_Symbol) | |
| 1445 return tem; | |
| 485 | 1446 return Fintern ((!NILP (Vpurify_flag) |
| 341 | 1447 ? make_pure_string (str, len) |
| 1448 : make_string (str, len)), | |
| 1449 obarray); | |
| 1450 } | |
| 1451 | |
| 1452 DEFUN ("intern", Fintern, Sintern, 1, 2, 0, | |
| 1453 "Return the canonical symbol whose name is STRING.\n\ | |
| 1454 If there is none, one is created by this function and returned.\n\ | |
| 1455 A second optional argument specifies the obarray to use;\n\ | |
| 1456 it defaults to the value of `obarray'.") | |
| 1457 (str, obarray) | |
| 1458 Lisp_Object str, obarray; | |
| 1459 { | |
| 1460 register Lisp_Object tem, sym, *ptr; | |
| 1461 | |
| 485 | 1462 if (NILP (obarray)) obarray = Vobarray; |
| 341 | 1463 obarray = check_obarray (obarray); |
| 1464 | |
| 1465 CHECK_STRING (str, 0); | |
| 1466 | |
| 1467 tem = oblookup (obarray, XSTRING (str)->data, XSTRING (str)->size); | |
| 1468 if (XTYPE (tem) != Lisp_Int) | |
| 1469 return tem; | |
| 1470 | |
| 485 | 1471 if (!NILP (Vpurify_flag)) |
| 341 | 1472 str = Fpurecopy (str); |
| 1473 sym = Fmake_symbol (str); | |
| 1474 | |
| 1475 ptr = &XVECTOR (obarray)->contents[XINT (tem)]; | |
| 1476 if (XTYPE (*ptr) == Lisp_Symbol) | |
| 1477 XSYMBOL (sym)->next = XSYMBOL (*ptr); | |
| 1478 else | |
| 1479 XSYMBOL (sym)->next = 0; | |
| 1480 *ptr = sym; | |
| 1481 return sym; | |
| 1482 } | |
| 1483 | |
| 1484 DEFUN ("intern-soft", Fintern_soft, Sintern_soft, 1, 2, 0, | |
| 1485 "Return the canonical symbol whose name is STRING, or nil if none exists.\n\ | |
| 1486 A second optional argument specifies the obarray to use;\n\ | |
| 1487 it defaults to the value of `obarray'.") | |
| 1488 (str, obarray) | |
| 1489 Lisp_Object str, obarray; | |
| 1490 { | |
| 1491 register Lisp_Object tem; | |
| 1492 | |
| 485 | 1493 if (NILP (obarray)) obarray = Vobarray; |
| 341 | 1494 obarray = check_obarray (obarray); |
| 1495 | |
| 1496 CHECK_STRING (str, 0); | |
| 1497 | |
| 1498 tem = oblookup (obarray, XSTRING (str)->data, XSTRING (str)->size); | |
| 1499 if (XTYPE (tem) != Lisp_Int) | |
| 1500 return tem; | |
| 1501 return Qnil; | |
| 1502 } | |
| 1503 | |
| 1504 Lisp_Object | |
| 1505 oblookup (obarray, ptr, size) | |
| 1506 Lisp_Object obarray; | |
| 1507 register char *ptr; | |
| 1508 register int size; | |
| 1509 { | |
| 1510 int hash, obsize; | |
| 1511 register Lisp_Object tail; | |
| 1512 Lisp_Object bucket, tem; | |
| 1513 | |
| 1514 if (XTYPE (obarray) != Lisp_Vector || | |
| 1515 (obsize = XVECTOR (obarray)->size) == 0) | |
| 1516 { | |
| 1517 obarray = check_obarray (obarray); | |
| 1518 obsize = XVECTOR (obarray)->size; | |
| 1519 } | |
| 1520 /* Combining next two lines breaks VMS C 2.3. */ | |
| 1521 hash = hash_string (ptr, size); | |
| 1522 hash %= obsize; | |
| 1523 bucket = XVECTOR (obarray)->contents[hash]; | |
| 1524 if (XFASTINT (bucket) == 0) | |
| 1525 ; | |
| 1526 else if (XTYPE (bucket) != Lisp_Symbol) | |
| 1527 error ("Bad data in guts of obarray"); /* Like CADR error message */ | |
| 1528 else for (tail = bucket; ; XSET (tail, Lisp_Symbol, XSYMBOL (tail)->next)) | |
| 1529 { | |
| 1530 if (XSYMBOL (tail)->name->size == size && | |
| 1531 !bcmp (XSYMBOL (tail)->name->data, ptr, size)) | |
| 1532 return tail; | |
| 1533 else if (XSYMBOL (tail)->next == 0) | |
| 1534 break; | |
| 1535 } | |
| 1536 XSET (tem, Lisp_Int, hash); | |
| 1537 return tem; | |
| 1538 } | |
| 1539 | |
| 1540 static int | |
| 1541 hash_string (ptr, len) | |
| 1542 unsigned char *ptr; | |
| 1543 int len; | |
| 1544 { | |
| 1545 register unsigned char *p = ptr; | |
| 1546 register unsigned char *end = p + len; | |
| 1547 register unsigned char c; | |
| 1548 register int hash = 0; | |
| 1549 | |
| 1550 while (p != end) | |
| 1551 { | |
| 1552 c = *p++; | |
| 1553 if (c >= 0140) c -= 40; | |
| 1554 hash = ((hash<<3) + (hash>>28) + c); | |
| 1555 } | |
| 1556 return hash & 07777777777; | |
| 1557 } | |
| 1558 | |
| 1559 void | |
| 1560 map_obarray (obarray, fn, arg) | |
| 1561 Lisp_Object obarray; | |
| 1562 int (*fn) (); | |
| 1563 Lisp_Object arg; | |
| 1564 { | |
| 1565 register int i; | |
| 1566 register Lisp_Object tail; | |
| 1567 CHECK_VECTOR (obarray, 1); | |
| 1568 for (i = XVECTOR (obarray)->size - 1; i >= 0; i--) | |
| 1569 { | |
| 1570 tail = XVECTOR (obarray)->contents[i]; | |
| 1571 if (XFASTINT (tail) != 0) | |
| 1572 while (1) | |
| 1573 { | |
| 1574 (*fn) (tail, arg); | |
| 1575 if (XSYMBOL (tail)->next == 0) | |
| 1576 break; | |
| 1577 XSET (tail, Lisp_Symbol, XSYMBOL (tail)->next); | |
| 1578 } | |
| 1579 } | |
| 1580 } | |
| 1581 | |
| 1582 mapatoms_1 (sym, function) | |
| 1583 Lisp_Object sym, function; | |
| 1584 { | |
| 1585 call1 (function, sym); | |
| 1586 } | |
| 1587 | |
| 1588 DEFUN ("mapatoms", Fmapatoms, Smapatoms, 1, 2, 0, | |
| 1589 "Call FUNCTION on every symbol in OBARRAY.\n\ | |
| 1590 OBARRAY defaults to the value of `obarray'.") | |
| 1591 (function, obarray) | |
| 1592 Lisp_Object function, obarray; | |
| 1593 { | |
| 1594 Lisp_Object tem; | |
| 1595 | |
| 485 | 1596 if (NILP (obarray)) obarray = Vobarray; |
| 341 | 1597 obarray = check_obarray (obarray); |
| 1598 | |
| 1599 map_obarray (obarray, mapatoms_1, function); | |
| 1600 return Qnil; | |
| 1601 } | |
| 1602 | |
| 1603 #define OBARRAY_SIZE 509 | |
| 1604 | |
| 1605 void | |
| 1606 init_obarray () | |
| 1607 { | |
| 1608 Lisp_Object oblength; | |
| 1609 int hash; | |
| 1610 Lisp_Object *tem; | |
| 1611 | |
| 1612 XFASTINT (oblength) = OBARRAY_SIZE; | |
| 1613 | |
| 1614 Qnil = Fmake_symbol (make_pure_string ("nil", 3)); | |
| 1615 Vobarray = Fmake_vector (oblength, make_number (0)); | |
| 1616 initial_obarray = Vobarray; | |
| 1617 staticpro (&initial_obarray); | |
| 1618 /* Intern nil in the obarray */ | |
| 1619 /* These locals are to kludge around a pyramid compiler bug. */ | |
| 1620 hash = hash_string ("nil", 3); | |
| 1621 /* Separate statement here to avoid VAXC bug. */ | |
| 1622 hash %= OBARRAY_SIZE; | |
| 1623 tem = &XVECTOR (Vobarray)->contents[hash]; | |
| 1624 *tem = Qnil; | |
| 1625 | |
| 1626 Qunbound = Fmake_symbol (make_pure_string ("unbound", 7)); | |
| 1627 XSYMBOL (Qnil)->function = Qunbound; | |
| 1628 XSYMBOL (Qunbound)->value = Qunbound; | |
| 1629 XSYMBOL (Qunbound)->function = Qunbound; | |
| 1630 | |
| 1631 Qt = intern ("t"); | |
| 1632 XSYMBOL (Qnil)->value = Qnil; | |
| 1633 XSYMBOL (Qnil)->plist = Qnil; | |
| 1634 XSYMBOL (Qt)->value = Qt; | |
| 1635 | |
| 1636 /* Qt is correct even if CANNOT_DUMP. loadup.el will set to nil at end. */ | |
| 1637 Vpurify_flag = Qt; | |
| 1638 | |
| 1639 Qvariable_documentation = intern ("variable-documentation"); | |
| 1640 | |
| 1641 read_buffer_size = 100; | |
| 1642 read_buffer = (char *) malloc (read_buffer_size); | |
| 1643 } | |
| 1644 | |
| 1645 void | |
| 1646 defsubr (sname) | |
| 1647 struct Lisp_Subr *sname; | |
| 1648 { | |
| 1649 Lisp_Object sym; | |
| 1650 sym = intern (sname->symbol_name); | |
| 1651 XSET (XSYMBOL (sym)->function, Lisp_Subr, sname); | |
| 1652 } | |
| 1653 | |
| 1654 #ifdef NOTDEF /* use fset in subr.el now */ | |
| 1655 void | |
| 1656 defalias (sname, string) | |
| 1657 struct Lisp_Subr *sname; | |
| 1658 char *string; | |
| 1659 { | |
| 1660 Lisp_Object sym; | |
| 1661 sym = intern (string); | |
| 1662 XSET (XSYMBOL (sym)->function, Lisp_Subr, sname); | |
| 1663 } | |
| 1664 #endif /* NOTDEF */ | |
| 1665 | |
| 1666 /* New replacement for DefIntVar; it ignores the doc string argument | |
| 1667 on the assumption that make-docfile will handle that. */ | |
| 1668 /* Define an "integer variable"; a symbol whose value is forwarded | |
| 1669 to a C variable of type int. Sample call: */ | |
| 1670 /* DEFVARINT ("indent-tabs-mode", &indent_tabs_mode, "Documentation"); */ | |
| 1671 | |
| 1672 void | |
| 1673 defvar_int (namestring, address, doc) | |
| 1674 char *namestring; | |
| 1675 int *address; | |
| 1676 char *doc; | |
| 1677 { | |
| 1678 Lisp_Object sym; | |
| 1679 sym = intern (namestring); | |
| 1680 XSET (XSYMBOL (sym)->value, Lisp_Intfwd, address); | |
| 1681 } | |
| 1682 | |
| 1683 /* Similar but define a variable whose value is T if address contains 1, | |
| 1684 NIL if address contains 0 */ | |
| 1685 | |
| 1686 void | |
| 1687 defvar_bool (namestring, address, doc) | |
| 1688 char *namestring; | |
| 1689 int *address; | |
| 1690 char *doc; | |
| 1691 { | |
| 1692 Lisp_Object sym; | |
| 1693 sym = intern (namestring); | |
| 1694 XSET (XSYMBOL (sym)->value, Lisp_Boolfwd, address); | |
| 1695 } | |
| 1696 | |
| 1697 /* Similar but define a variable whose value is the Lisp Object stored at address. */ | |
| 1698 | |
| 1699 void | |
| 1700 defvar_lisp (namestring, address, doc) | |
| 1701 char *namestring; | |
| 1702 Lisp_Object *address; | |
| 1703 char *doc; | |
| 1704 { | |
| 1705 Lisp_Object sym; | |
| 1706 sym = intern (namestring); | |
| 1707 XSET (XSYMBOL (sym)->value, Lisp_Objfwd, address); | |
| 1708 staticpro (address); | |
| 1709 } | |
| 1710 | |
| 1711 /* Similar but don't request gc-marking of the C variable. | |
| 1712 Used when that variable will be gc-marked for some other reason, | |
| 1713 since marking the same slot twice can cause trouble with strings. */ | |
| 1714 | |
| 1715 void | |
| 1716 defvar_lisp_nopro (namestring, address, doc) | |
| 1717 char *namestring; | |
| 1718 Lisp_Object *address; | |
| 1719 char *doc; | |
| 1720 { | |
| 1721 Lisp_Object sym; | |
| 1722 sym = intern (namestring); | |
| 1723 XSET (XSYMBOL (sym)->value, Lisp_Objfwd, address); | |
| 1724 } | |
| 1725 | |
| 1726 #ifndef standalone | |
| 1727 | |
| 1728 /* Similar but define a variable whose value is the Lisp Object stored in | |
| 1729 the current buffer. address is the address of the slot in the buffer that is current now. */ | |
| 1730 | |
| 1731 void | |
|
1009
bf78b5ea9b3a
* lread.c (defvar_per_buffer): Support new TYPE argument, by
Jim Blandy <jimb@redhat.com>
parents:
851
diff
changeset
|
1732 defvar_per_buffer (namestring, address, type, doc) |
| 341 | 1733 char *namestring; |
| 1734 Lisp_Object *address; | |
|
1009
bf78b5ea9b3a
* lread.c (defvar_per_buffer): Support new TYPE argument, by
Jim Blandy <jimb@redhat.com>
parents:
851
diff
changeset
|
1735 Lisp_Object type; |
| 341 | 1736 char *doc; |
| 1737 { | |
| 1738 Lisp_Object sym; | |
| 1739 int offset; | |
| 1740 extern struct buffer buffer_local_symbols; | |
| 1741 | |
| 1742 sym = intern (namestring); | |
| 1743 offset = (char *)address - (char *)current_buffer; | |
| 1744 | |
| 1745 XSET (XSYMBOL (sym)->value, Lisp_Buffer_Objfwd, | |
| 1746 (Lisp_Object *) offset); | |
| 1747 *(Lisp_Object *)(offset + (char *)&buffer_local_symbols) = sym; | |
|
1009
bf78b5ea9b3a
* lread.c (defvar_per_buffer): Support new TYPE argument, by
Jim Blandy <jimb@redhat.com>
parents:
851
diff
changeset
|
1748 *(Lisp_Object *)(offset + (char *)&buffer_local_types) = type; |
| 341 | 1749 if (*(int *)(offset + (char *)&buffer_local_flags) == 0) |
| 1750 /* Did a DEFVAR_PER_BUFFER without initializing the corresponding | |
| 1751 slot of buffer_local_flags */ | |
| 1752 abort (); | |
| 1753 } | |
| 1754 | |
| 1755 #endif /* standalone */ | |
| 1756 | |
| 364 | 1757 init_lread () |
| 341 | 1758 { |
| 617 | 1759 char *normal; |
| 341 | 1760 |
| 364 | 1761 /* Compute the default load-path. */ |
| 617 | 1762 #ifdef CANNOT_DUMP |
| 1763 normal = PATH_LOADSEARCH; | |
| 638 | 1764 Vload_path = decode_env_path (0, normal); |
| 617 | 1765 #else |
| 1766 if (NILP (Vpurify_flag)) | |
| 1767 normal = PATH_LOADSEARCH; | |
| 1768 else | |
| 1769 normal = PATH_DUMPLOADSEARCH; | |
| 1770 | |
| 1771 /* In a dumped Emacs, we normally have to reset the value of | |
| 1772 Vload_path from PATH_LOADSEARCH, since the value that was dumped | |
| 1773 uses ../lisp, instead of the path of the installed elisp | |
| 1774 libraries. However, if it appears that Vload_path was changed | |
| 1775 from the default before dumping, don't override that value. */ | |
| 621 | 1776 if (initialized) |
| 1777 { | |
| 1778 Lisp_Object dump_path; | |
| 617 | 1779 |
| 638 | 1780 dump_path = decode_env_path (0, PATH_DUMPLOADSEARCH); |
| 621 | 1781 if (! NILP (Fequal (dump_path, Vload_path))) |
| 638 | 1782 Vload_path = decode_env_path (0, normal); |
| 621 | 1783 } |
| 1784 else | |
| 638 | 1785 Vload_path = decode_env_path (0, normal); |
| 364 | 1786 #endif |
| 1787 | |
| 341 | 1788 /* Warn if dirs in the *standard* path don't exist. */ |
| 617 | 1789 { |
| 1790 Lisp_Object path_tail; | |
| 341 | 1791 |
| 617 | 1792 for (path_tail = Vload_path; |
| 1793 !NILP (path_tail); | |
| 1794 path_tail = XCONS (path_tail)->cdr) | |
| 1795 { | |
| 1796 Lisp_Object dirfile; | |
| 1797 dirfile = Fcar (path_tail); | |
| 1798 if (XTYPE (dirfile) == Lisp_String) | |
| 1799 { | |
| 1800 dirfile = Fdirectory_file_name (dirfile); | |
| 1801 if (access (XSTRING (dirfile)->data, 0) < 0) | |
| 1802 printf ("Warning: lisp library (%s) does not exist.\n", | |
| 1803 XSTRING (Fcar (path_tail))->data); | |
| 1804 } | |
| 1805 } | |
| 1806 } | |
| 1807 | |
| 1808 /* If the EMACSLOADPATH environment variable is set, use its value. | |
| 1809 This doesn't apply if we're dumping. */ | |
| 1810 if (NILP (Vpurify_flag) | |
| 1811 && egetenv ("EMACSLOADPATH")) | |
| 364 | 1812 Vload_path = decode_env_path ("EMACSLOADPATH", normal); |
| 1813 | |
| 1814 Vvalues = Qnil; | |
| 1815 | |
| 341 | 1816 load_in_progress = 0; |
| 1817 } | |
| 1818 | |
| 1819 void | |
| 364 | 1820 syms_of_lread () |
| 341 | 1821 { |
| 1822 defsubr (&Sread); | |
| 1823 defsubr (&Sread_from_string); | |
| 1824 defsubr (&Sintern); | |
| 1825 defsubr (&Sintern_soft); | |
| 1826 defsubr (&Sload); | |
| 672 | 1827 defsubr (&Seval_buffer); |
| 341 | 1828 defsubr (&Seval_region); |
| 1829 defsubr (&Sread_char); | |
| 1830 defsubr (&Sread_char_exclusive); | |
| 1831 defsubr (&Sread_event); | |
| 1832 defsubr (&Sget_file_char); | |
| 1833 defsubr (&Smapatoms); | |
| 1834 | |
| 1835 DEFVAR_LISP ("obarray", &Vobarray, | |
| 1836 "Symbol table for use by `intern' and `read'.\n\ | |
| 1837 It is a vector whose length ought to be prime for best results.\n\ | |
| 1838 The vector's contents don't make sense if examined from Lisp programs;\n\ | |
| 1839 to find all the symbols in an obarray, use `mapatoms'."); | |
| 1840 | |
| 1841 DEFVAR_LISP ("values", &Vvalues, | |
| 1842 "List of values of all expressions which were read, evaluated and printed.\n\ | |
| 1843 Order is reverse chronological."); | |
| 1844 | |
| 1845 DEFVAR_LISP ("standard-input", &Vstandard_input, | |
| 1846 "Stream for read to get input from.\n\ | |
| 1847 See documentation of `read' for possible values."); | |
| 1848 Vstandard_input = Qt; | |
| 1849 | |
| 1850 DEFVAR_LISP ("load-path", &Vload_path, | |
| 1851 "*List of directories to search for files to load.\n\ | |
| 1852 Each element is a string (directory name) or nil (try default directory).\n\ | |
| 1853 Initialized based on EMACSLOADPATH environment variable, if any,\n\ | |
|
1887
ab56990c27c4
(syms_of_lread): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1827
diff
changeset
|
1854 otherwise to default specified by file `paths.h' when Emacs was built."); |
| 341 | 1855 |
| 1856 DEFVAR_BOOL ("load-in-progress", &load_in_progress, | |
| 1857 "Non-nil iff inside of `load'."); | |
| 1858 | |
| 1859 DEFVAR_LISP ("after-load-alist", &Vafter_load_alist, | |
| 1860 "An alist of expressions to be evalled when particular files are loaded.\n\ | |
| 1861 Each element looks like (FILENAME FORMS...).\n\ | |
| 1862 When `load' is run and the file-name argument is FILENAME,\n\ | |
| 1863 the FORMS in the corresponding element are executed at the end of loading.\n\n\ | |
| 1864 FILENAME must match exactly! Normally FILENAME is the name of a library,\n\ | |
| 1865 with no directory specified, since that is how `load' is normally called.\n\ | |
| 1866 An error in FORMS does not undo the load,\n\ | |
| 1867 but does prevent execution of the rest of the FORMS."); | |
| 1868 Vafter_load_alist = Qnil; | |
| 1869 | |
|
2545
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1870 DEFVAR_LISP ("load-history", &Vload_history, |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1871 "Alist mapping source file names to symbols and features.\n\ |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1872 Each alist element is a list that starts with a file name,\n\ |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1873 except for one element (optional) that starts with nil and describes\n\ |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1874 definitions evaluated from buffers not visiting files.\n\ |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1875 The remaining elements of each list are symbols defined as functions\n\ |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1876 or variables, and cons cells `(provide . FEATURE)' and `(require . FEATURE)'."); |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1877 Vload_history = Qnil; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1878 |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1879 staticpro (&Vcurrent_load_list); |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1880 Vcurrent_load_list = Qnil; |
|
d666732c5f41
(readevalloop): New argument is the source file name (or nil if none).
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1881 |
| 341 | 1882 Qstandard_input = intern ("standard-input"); |
| 1883 staticpro (&Qstandard_input); | |
| 1884 | |
| 1885 Qread_char = intern ("read-char"); | |
| 1886 staticpro (&Qread_char); | |
| 1887 | |
| 1888 Qget_file_char = intern ("get-file-char"); | |
| 1889 staticpro (&Qget_file_char); | |
|
2044
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
1890 |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
1891 Qascii_character = intern ("ascii-character"); |
|
258362f03d90
(syms_of_lread): Set up Qascii_character.
Richard M. Stallman <rms@gnu.org>
parents:
2018
diff
changeset
|
1892 staticpro (&Qascii_character); |
| 341 | 1893 } |
