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