Mercurial > emacs
annotate src/fns.c @ 10100:461530f66e34
(gettext): Make sure this is always defined, even #if emacs.
(NULL): No need to #undef this anymore; Emacs uses NILP now.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 01 Dec 1994 22:59:35 +0000 |
parents | c1b138be512e |
children | 6f6db8f5b8a0 |
rev | line source |
---|---|
211 | 1 /* Random utility Lisp functions. |
7307 | 2 Copyright (C) 1985, 1986, 1987, 1993, 1994 Free Software Foundation, Inc. |
211 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 1, or (at your option) | |
9 any later version. | |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4616
diff
changeset
|
21 #include <config.h> |
211 | 22 |
23 /* Note on some machines this defines `vector' as a typedef, | |
24 so make sure we don't use that name in this file. */ | |
25 #undef vector | |
26 #define vector ***** | |
27 | |
28 #include "lisp.h" | |
29 #include "commands.h" | |
30 | |
31 #include "buffer.h" | |
1513
7381accd610d
* fns.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1194
diff
changeset
|
32 #include "keyboard.h" |
4004
71541ea16adf
* fns.c (Fsubstring, concat): Pass all six arguments to
Jim Blandy <jimb@redhat.com>
parents:
3379
diff
changeset
|
33 #include "intervals.h" |
211 | 34 |
8901
ab65a3dae221
(Frandom): Fix Lisp_Object vs. int problems.
Karl Heuer <kwzh@gnu.org>
parents:
8388
diff
changeset
|
35 extern Lisp_Object Flookup_key (); |
ab65a3dae221
(Frandom): Fix Lisp_Object vs. int problems.
Karl Heuer <kwzh@gnu.org>
parents:
8388
diff
changeset
|
36 |
2546
c8cd694d70eb
(provide, require): Put appropriately-marked
Richard M. Stallman <rms@gnu.org>
parents:
2525
diff
changeset
|
37 Lisp_Object Qstring_lessp, Qprovide, Qrequire; |
4456
cbfcf187b5da
(Fyes_or_no_p): Use Qyes_or_no_p_history.
Richard M. Stallman <rms@gnu.org>
parents:
4004
diff
changeset
|
38 Lisp_Object Qyes_or_no_p_history; |
211 | 39 |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
40 static int internal_equal (); |
399
21aa17a1560d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
350
diff
changeset
|
41 |
211 | 42 DEFUN ("identity", Fidentity, Sidentity, 1, 1, 0, |
43 "Return the argument unchanged.") | |
44 (arg) | |
45 Lisp_Object arg; | |
46 { | |
47 return arg; | |
48 } | |
49 | |
50 DEFUN ("random", Frandom, Srandom, 0, 1, 0, | |
51 "Return a pseudo-random number.\n\ | |
52 On most systems all integers representable in Lisp are equally likely.\n\ | |
53 This is 24 bits' worth.\n\ | |
54 With argument N, return random number in interval [0,N).\n\ | |
55 With argument t, set the random number seed from the current time and pid.") | |
1743
a1933e20a2a3
(Frandom): Change arg name.
Richard M. Stallman <rms@gnu.org>
parents:
1513
diff
changeset
|
56 (limit) |
a1933e20a2a3
(Frandom): Change arg name.
Richard M. Stallman <rms@gnu.org>
parents:
1513
diff
changeset
|
57 Lisp_Object limit; |
211 | 58 { |
59 int val; | |
6376
3fe339cf2dde
(Frandom): Eliminate bias in random number generator.
Karl Heuer <kwzh@gnu.org>
parents:
6344
diff
changeset
|
60 unsigned long denominator; |
211 | 61 extern long random (); |
62 extern srandom (); | |
63 extern long time (); | |
64 | |
1743
a1933e20a2a3
(Frandom): Change arg name.
Richard M. Stallman <rms@gnu.org>
parents:
1513
diff
changeset
|
65 if (EQ (limit, Qt)) |
211 | 66 srandom (getpid () + time (0)); |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
67 if (INTEGERP (limit) && XINT (limit) > 0) |
211 | 68 { |
8901
ab65a3dae221
(Frandom): Fix Lisp_Object vs. int problems.
Karl Heuer <kwzh@gnu.org>
parents:
8388
diff
changeset
|
69 if (XFASTINT (limit) >= 0x40000000) |
8388
e0c0247dca19
(Frandom): Handle LIMIT >= 40000000.
Richard M. Stallman <rms@gnu.org>
parents:
8367
diff
changeset
|
70 /* This case may occur on 64-bit machines. */ |
8901
ab65a3dae221
(Frandom): Fix Lisp_Object vs. int problems.
Karl Heuer <kwzh@gnu.org>
parents:
8388
diff
changeset
|
71 val = random () % XFASTINT (limit); |
8388
e0c0247dca19
(Frandom): Handle LIMIT >= 40000000.
Richard M. Stallman <rms@gnu.org>
parents:
8367
diff
changeset
|
72 else |
e0c0247dca19
(Frandom): Handle LIMIT >= 40000000.
Richard M. Stallman <rms@gnu.org>
parents:
8367
diff
changeset
|
73 { |
e0c0247dca19
(Frandom): Handle LIMIT >= 40000000.
Richard M. Stallman <rms@gnu.org>
parents:
8367
diff
changeset
|
74 /* Try to take our random number from the higher bits of VAL, |
e0c0247dca19
(Frandom): Handle LIMIT >= 40000000.
Richard M. Stallman <rms@gnu.org>
parents:
8367
diff
changeset
|
75 not the lower, since (says Gentzel) the low bits of `random' |
e0c0247dca19
(Frandom): Handle LIMIT >= 40000000.
Richard M. Stallman <rms@gnu.org>
parents:
8367
diff
changeset
|
76 are less random than the higher ones. We do this by using the |
e0c0247dca19
(Frandom): Handle LIMIT >= 40000000.
Richard M. Stallman <rms@gnu.org>
parents:
8367
diff
changeset
|
77 quotient rather than the remainder. At the high end of the RNG |
e0c0247dca19
(Frandom): Handle LIMIT >= 40000000.
Richard M. Stallman <rms@gnu.org>
parents:
8367
diff
changeset
|
78 it's possible to get a quotient larger than limit; discarding |
e0c0247dca19
(Frandom): Handle LIMIT >= 40000000.
Richard M. Stallman <rms@gnu.org>
parents:
8367
diff
changeset
|
79 these values eliminates the bias that would otherwise appear |
e0c0247dca19
(Frandom): Handle LIMIT >= 40000000.
Richard M. Stallman <rms@gnu.org>
parents:
8367
diff
changeset
|
80 when using a large limit. */ |
e0c0247dca19
(Frandom): Handle LIMIT >= 40000000.
Richard M. Stallman <rms@gnu.org>
parents:
8367
diff
changeset
|
81 denominator = (unsigned long)0x40000000 / XFASTINT (limit); |
e0c0247dca19
(Frandom): Handle LIMIT >= 40000000.
Richard M. Stallman <rms@gnu.org>
parents:
8367
diff
changeset
|
82 do |
e0c0247dca19
(Frandom): Handle LIMIT >= 40000000.
Richard M. Stallman <rms@gnu.org>
parents:
8367
diff
changeset
|
83 val = (random () & 0x3fffffff) / denominator; |
8901
ab65a3dae221
(Frandom): Fix Lisp_Object vs. int problems.
Karl Heuer <kwzh@gnu.org>
parents:
8388
diff
changeset
|
84 while (val >= XFASTINT (limit)); |
8388
e0c0247dca19
(Frandom): Handle LIMIT >= 40000000.
Richard M. Stallman <rms@gnu.org>
parents:
8367
diff
changeset
|
85 } |
211 | 86 } |
6376
3fe339cf2dde
(Frandom): Eliminate bias in random number generator.
Karl Heuer <kwzh@gnu.org>
parents:
6344
diff
changeset
|
87 else |
3fe339cf2dde
(Frandom): Eliminate bias in random number generator.
Karl Heuer <kwzh@gnu.org>
parents:
6344
diff
changeset
|
88 val = random (); |
211 | 89 return make_number (val); |
90 } | |
91 | |
92 /* Random data-structure functions */ | |
93 | |
94 DEFUN ("length", Flength, Slength, 1, 1, 0, | |
95 "Return the length of vector, list or string SEQUENCE.\n\ | |
96 A byte-code function object is also allowed.") | |
97 (obj) | |
98 register Lisp_Object obj; | |
99 { | |
100 register Lisp_Object tail, val; | |
101 register int i; | |
102 | |
103 retry: | |
9965
f68eab303ddb
(Flength): Don't call Farray_length, just use size field.
Karl Heuer <kwzh@gnu.org>
parents:
9927
diff
changeset
|
104 if (STRINGP (obj)) |
f68eab303ddb
(Flength): Don't call Farray_length, just use size field.
Karl Heuer <kwzh@gnu.org>
parents:
9927
diff
changeset
|
105 XSETFASTINT (val, XSTRING (obj)->size); |
f68eab303ddb
(Flength): Don't call Farray_length, just use size field.
Karl Heuer <kwzh@gnu.org>
parents:
9927
diff
changeset
|
106 else if (VECTORP (obj) || COMPILEDP (obj)) |
f68eab303ddb
(Flength): Don't call Farray_length, just use size field.
Karl Heuer <kwzh@gnu.org>
parents:
9927
diff
changeset
|
107 XSETFASTINT (val, XVECTOR (obj)->size); |
211 | 108 else if (CONSP (obj)) |
109 { | |
9965
f68eab303ddb
(Flength): Don't call Farray_length, just use size field.
Karl Heuer <kwzh@gnu.org>
parents:
9927
diff
changeset
|
110 for (i = 0, tail = obj; !NILP (tail); i++) |
211 | 111 { |
112 QUIT; | |
113 tail = Fcdr (tail); | |
114 } | |
115 | |
9308
2c594629baaa
(Flength, concat, mapcar1): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9289
diff
changeset
|
116 XSETFASTINT (val, i); |
211 | 117 } |
9965
f68eab303ddb
(Flength): Don't call Farray_length, just use size field.
Karl Heuer <kwzh@gnu.org>
parents:
9927
diff
changeset
|
118 else if (NILP (obj)) |
f68eab303ddb
(Flength): Don't call Farray_length, just use size field.
Karl Heuer <kwzh@gnu.org>
parents:
9927
diff
changeset
|
119 XSETFASTINT (val, 0); |
211 | 120 else |
121 { | |
122 obj = wrong_type_argument (Qsequencep, obj); | |
123 goto retry; | |
124 } | |
9965
f68eab303ddb
(Flength): Don't call Farray_length, just use size field.
Karl Heuer <kwzh@gnu.org>
parents:
9927
diff
changeset
|
125 return val; |
211 | 126 } |
127 | |
128 DEFUN ("string-equal", Fstring_equal, Sstring_equal, 2, 2, 0, | |
129 "T if two strings have identical contents.\n\ | |
130 Case is significant.\n\ | |
131 Symbols are also allowed; their print names are used instead.") | |
132 (s1, s2) | |
133 register Lisp_Object s1, s2; | |
134 { | |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
135 if (SYMBOLP (s1)) |
9289
e5a850de0ba8
(Fstring_equal, Fstring_lessp): Delete now-redundant XSETTYPE.
Karl Heuer <kwzh@gnu.org>
parents:
9128
diff
changeset
|
136 XSETSTRING (s1, XSYMBOL (s1)->name); |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
137 if (SYMBOLP (s2)) |
9289
e5a850de0ba8
(Fstring_equal, Fstring_lessp): Delete now-redundant XSETTYPE.
Karl Heuer <kwzh@gnu.org>
parents:
9128
diff
changeset
|
138 XSETSTRING (s2, XSYMBOL (s2)->name); |
211 | 139 CHECK_STRING (s1, 0); |
140 CHECK_STRING (s2, 1); | |
141 | |
142 if (XSTRING (s1)->size != XSTRING (s2)->size || | |
143 bcmp (XSTRING (s1)->data, XSTRING (s2)->data, XSTRING (s1)->size)) | |
144 return Qnil; | |
145 return Qt; | |
146 } | |
147 | |
148 DEFUN ("string-lessp", Fstring_lessp, Sstring_lessp, 2, 2, 0, | |
149 "T if first arg string is less than second in lexicographic order.\n\ | |
150 Case is significant.\n\ | |
151 Symbols are also allowed; their print names are used instead.") | |
152 (s1, s2) | |
153 register Lisp_Object s1, s2; | |
154 { | |
155 register int i; | |
156 register unsigned char *p1, *p2; | |
157 register int end; | |
158 | |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
159 if (SYMBOLP (s1)) |
9289
e5a850de0ba8
(Fstring_equal, Fstring_lessp): Delete now-redundant XSETTYPE.
Karl Heuer <kwzh@gnu.org>
parents:
9128
diff
changeset
|
160 XSETSTRING (s1, XSYMBOL (s1)->name); |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
161 if (SYMBOLP (s2)) |
9289
e5a850de0ba8
(Fstring_equal, Fstring_lessp): Delete now-redundant XSETTYPE.
Karl Heuer <kwzh@gnu.org>
parents:
9128
diff
changeset
|
162 XSETSTRING (s2, XSYMBOL (s2)->name); |
211 | 163 CHECK_STRING (s1, 0); |
164 CHECK_STRING (s2, 1); | |
165 | |
166 p1 = XSTRING (s1)->data; | |
167 p2 = XSTRING (s2)->data; | |
168 end = XSTRING (s1)->size; | |
169 if (end > XSTRING (s2)->size) | |
170 end = XSTRING (s2)->size; | |
171 | |
172 for (i = 0; i < end; i++) | |
173 { | |
174 if (p1[i] != p2[i]) | |
175 return p1[i] < p2[i] ? Qt : Qnil; | |
176 } | |
177 return i < XSTRING (s2)->size ? Qt : Qnil; | |
178 } | |
179 | |
180 static Lisp_Object concat (); | |
181 | |
182 /* ARGSUSED */ | |
183 Lisp_Object | |
184 concat2 (s1, s2) | |
185 Lisp_Object s1, s2; | |
186 { | |
187 #ifdef NO_ARG_ARRAY | |
188 Lisp_Object args[2]; | |
189 args[0] = s1; | |
190 args[1] = s2; | |
191 return concat (2, args, Lisp_String, 0); | |
192 #else | |
193 return concat (2, &s1, Lisp_String, 0); | |
194 #endif /* NO_ARG_ARRAY */ | |
195 } | |
196 | |
8966
cafc16f356c2
(concat3): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8901
diff
changeset
|
197 /* ARGSUSED */ |
cafc16f356c2
(concat3): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8901
diff
changeset
|
198 Lisp_Object |
cafc16f356c2
(concat3): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8901
diff
changeset
|
199 concat3 (s1, s2, s3) |
cafc16f356c2
(concat3): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8901
diff
changeset
|
200 Lisp_Object s1, s2, s3; |
cafc16f356c2
(concat3): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8901
diff
changeset
|
201 { |
cafc16f356c2
(concat3): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8901
diff
changeset
|
202 #ifdef NO_ARG_ARRAY |
cafc16f356c2
(concat3): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8901
diff
changeset
|
203 Lisp_Object args[3]; |
cafc16f356c2
(concat3): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8901
diff
changeset
|
204 args[0] = s1; |
cafc16f356c2
(concat3): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8901
diff
changeset
|
205 args[1] = s2; |
cafc16f356c2
(concat3): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8901
diff
changeset
|
206 args[2] = s3; |
cafc16f356c2
(concat3): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8901
diff
changeset
|
207 return concat (3, args, Lisp_String, 0); |
cafc16f356c2
(concat3): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8901
diff
changeset
|
208 #else |
cafc16f356c2
(concat3): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8901
diff
changeset
|
209 return concat (3, &s1, Lisp_String, 0); |
cafc16f356c2
(concat3): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8901
diff
changeset
|
210 #endif /* NO_ARG_ARRAY */ |
cafc16f356c2
(concat3): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8901
diff
changeset
|
211 } |
cafc16f356c2
(concat3): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8901
diff
changeset
|
212 |
211 | 213 DEFUN ("append", Fappend, Sappend, 0, MANY, 0, |
214 "Concatenate all the arguments and make the result a list.\n\ | |
215 The result is a list whose elements are the elements of all the arguments.\n\ | |
216 Each argument may be a list, vector or string.\n\ | |
1037 | 217 The last argument is not copied, just used as the tail of the new list.") |
211 | 218 (nargs, args) |
219 int nargs; | |
220 Lisp_Object *args; | |
221 { | |
222 return concat (nargs, args, Lisp_Cons, 1); | |
223 } | |
224 | |
225 DEFUN ("concat", Fconcat, Sconcat, 0, MANY, 0, | |
226 "Concatenate all the arguments and make the result a string.\n\ | |
227 The result is a string whose elements are the elements of all the arguments.\n\ | |
5664 | 228 Each argument may be a string, a list of characters (integers),\n\ |
229 or a vector of characters (integers).") | |
211 | 230 (nargs, args) |
231 int nargs; | |
232 Lisp_Object *args; | |
233 { | |
234 return concat (nargs, args, Lisp_String, 0); | |
235 } | |
236 | |
237 DEFUN ("vconcat", Fvconcat, Svconcat, 0, MANY, 0, | |
238 "Concatenate all the arguments and make the result a vector.\n\ | |
239 The result is a vector whose elements are the elements of all the arguments.\n\ | |
240 Each argument may be a list, vector or string.") | |
241 (nargs, args) | |
242 int nargs; | |
243 Lisp_Object *args; | |
244 { | |
10006
402c87cbc4fa
(Fvconcat, concat): Use Lisp_Vectorlike.
Karl Heuer <kwzh@gnu.org>
parents:
9965
diff
changeset
|
245 return concat (nargs, args, Lisp_Vectorlike, 0); |
211 | 246 } |
247 | |
248 DEFUN ("copy-sequence", Fcopy_sequence, Scopy_sequence, 1, 1, 0, | |
249 "Return a copy of a list, vector or string.\n\ | |
250 The elements of a list or vector are not copied; they are shared\n\ | |
251 with the original.") | |
252 (arg) | |
253 Lisp_Object arg; | |
254 { | |
485 | 255 if (NILP (arg)) return arg; |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
256 if (!CONSP (arg) && !VECTORP (arg) && !STRINGP (arg)) |
211 | 257 arg = wrong_type_argument (Qsequencep, arg); |
258 return concat (1, &arg, CONSP (arg) ? Lisp_Cons : XTYPE (arg), 0); | |
259 } | |
260 | |
261 static Lisp_Object | |
262 concat (nargs, args, target_type, last_special) | |
263 int nargs; | |
264 Lisp_Object *args; | |
265 enum Lisp_Type target_type; | |
266 int last_special; | |
267 { | |
268 Lisp_Object val; | |
269 Lisp_Object len; | |
270 register Lisp_Object tail; | |
271 register Lisp_Object this; | |
272 int toindex; | |
273 register int leni; | |
274 register int argnum; | |
275 Lisp_Object last_tail; | |
276 Lisp_Object prev; | |
277 | |
278 /* In append, the last arg isn't treated like the others */ | |
279 if (last_special && nargs > 0) | |
280 { | |
281 nargs--; | |
282 last_tail = args[nargs]; | |
283 } | |
284 else | |
285 last_tail = Qnil; | |
286 | |
287 for (argnum = 0; argnum < nargs; argnum++) | |
288 { | |
289 this = args[argnum]; | |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
290 if (!(CONSP (this) || NILP (this) || VECTORP (this) || STRINGP (this) |
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
291 || COMPILEDP (this))) |
211 | 292 { |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
293 if (INTEGERP (this)) |
2429
96b55f2f19cd
Rename int-to-string to number-to-string, since it can handle
Jim Blandy <jimb@redhat.com>
parents:
2369
diff
changeset
|
294 args[argnum] = Fnumber_to_string (this); |
211 | 295 else |
296 args[argnum] = wrong_type_argument (Qsequencep, this); | |
297 } | |
298 } | |
299 | |
300 for (argnum = 0, leni = 0; argnum < nargs; argnum++) | |
301 { | |
302 this = args[argnum]; | |
303 len = Flength (this); | |
304 leni += XFASTINT (len); | |
305 } | |
306 | |
9308
2c594629baaa
(Flength, concat, mapcar1): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9289
diff
changeset
|
307 XSETFASTINT (len, leni); |
211 | 308 |
309 if (target_type == Lisp_Cons) | |
310 val = Fmake_list (len, Qnil); | |
10006
402c87cbc4fa
(Fvconcat, concat): Use Lisp_Vectorlike.
Karl Heuer <kwzh@gnu.org>
parents:
9965
diff
changeset
|
311 else if (target_type == Lisp_Vectorlike) |
211 | 312 val = Fmake_vector (len, Qnil); |
313 else | |
314 val = Fmake_string (len, len); | |
315 | |
316 /* In append, if all but last arg are nil, return last arg */ | |
317 if (target_type == Lisp_Cons && EQ (val, Qnil)) | |
318 return last_tail; | |
319 | |
320 if (CONSP (val)) | |
321 tail = val, toindex = -1; /* -1 in toindex is flag we are making a list */ | |
322 else | |
323 toindex = 0; | |
324 | |
325 prev = Qnil; | |
326 | |
327 for (argnum = 0; argnum < nargs; argnum++) | |
328 { | |
329 Lisp_Object thislen; | |
330 int thisleni; | |
331 register int thisindex = 0; | |
332 | |
333 this = args[argnum]; | |
334 if (!CONSP (this)) | |
335 thislen = Flength (this), thisleni = XINT (thislen); | |
336 | |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
337 if (STRINGP (this) && STRINGP (val) |
4004
71541ea16adf
* fns.c (Fsubstring, concat): Pass all six arguments to
Jim Blandy <jimb@redhat.com>
parents:
3379
diff
changeset
|
338 && ! NULL_INTERVAL_P (XSTRING (this)->intervals)) |
71541ea16adf
* fns.c (Fsubstring, concat): Pass all six arguments to
Jim Blandy <jimb@redhat.com>
parents:
3379
diff
changeset
|
339 { |
71541ea16adf
* fns.c (Fsubstring, concat): Pass all six arguments to
Jim Blandy <jimb@redhat.com>
parents:
3379
diff
changeset
|
340 copy_text_properties (make_number (0), thislen, this, |
71541ea16adf
* fns.c (Fsubstring, concat): Pass all six arguments to
Jim Blandy <jimb@redhat.com>
parents:
3379
diff
changeset
|
341 make_number (toindex), val, Qnil); |
71541ea16adf
* fns.c (Fsubstring, concat): Pass all six arguments to
Jim Blandy <jimb@redhat.com>
parents:
3379
diff
changeset
|
342 } |
71541ea16adf
* fns.c (Fsubstring, concat): Pass all six arguments to
Jim Blandy <jimb@redhat.com>
parents:
3379
diff
changeset
|
343 |
211 | 344 while (1) |
345 { | |
346 register Lisp_Object elt; | |
347 | |
4004
71541ea16adf
* fns.c (Fsubstring, concat): Pass all six arguments to
Jim Blandy <jimb@redhat.com>
parents:
3379
diff
changeset
|
348 /* Fetch next element of `this' arg into `elt', or break if |
71541ea16adf
* fns.c (Fsubstring, concat): Pass all six arguments to
Jim Blandy <jimb@redhat.com>
parents:
3379
diff
changeset
|
349 `this' is exhausted. */ |
485 | 350 if (NILP (this)) break; |
211 | 351 if (CONSP (this)) |
352 elt = Fcar (this), this = Fcdr (this); | |
353 else | |
354 { | |
355 if (thisindex >= thisleni) break; | |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
356 if (STRINGP (this)) |
9308
2c594629baaa
(Flength, concat, mapcar1): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9289
diff
changeset
|
357 XSETFASTINT (elt, XSTRING (this)->data[thisindex++]); |
211 | 358 else |
359 elt = XVECTOR (this)->contents[thisindex++]; | |
360 } | |
361 | |
362 /* Store into result */ | |
363 if (toindex < 0) | |
364 { | |
365 XCONS (tail)->car = elt; | |
366 prev = tail; | |
367 tail = XCONS (tail)->cdr; | |
368 } | |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
369 else if (VECTORP (val)) |
211 | 370 XVECTOR (val)->contents[toindex++] = elt; |
371 else | |
372 { | |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
373 while (!INTEGERP (elt)) |
211 | 374 elt = wrong_type_argument (Qintegerp, elt); |
375 { | |
376 #ifdef MASSC_REGISTER_BUG | |
377 /* Even removing all "register"s doesn't disable this bug! | |
378 Nothing simpler than this seems to work. */ | |
379 unsigned char *p = & XSTRING (val)->data[toindex++]; | |
380 *p = XINT (elt); | |
381 #else | |
382 XSTRING (val)->data[toindex++] = XINT (elt); | |
383 #endif | |
384 } | |
385 } | |
386 } | |
387 } | |
485 | 388 if (!NILP (prev)) |
211 | 389 XCONS (prev)->cdr = last_tail; |
390 | |
391 return val; | |
392 } | |
393 | |
394 DEFUN ("copy-alist", Fcopy_alist, Scopy_alist, 1, 1, 0, | |
395 "Return a copy of ALIST.\n\ | |
396 This is an alist which represents the same mapping from objects to objects,\n\ | |
397 but does not share the alist structure with ALIST.\n\ | |
398 The objects mapped (cars and cdrs of elements of the alist)\n\ | |
399 are shared, however.\n\ | |
400 Elements of ALIST that are not conses are also shared.") | |
401 (alist) | |
402 Lisp_Object alist; | |
403 { | |
404 register Lisp_Object tem; | |
405 | |
406 CHECK_LIST (alist, 0); | |
485 | 407 if (NILP (alist)) |
211 | 408 return alist; |
409 alist = concat (1, &alist, Lisp_Cons, 0); | |
410 for (tem = alist; CONSP (tem); tem = XCONS (tem)->cdr) | |
411 { | |
412 register Lisp_Object car; | |
413 car = XCONS (tem)->car; | |
414 | |
415 if (CONSP (car)) | |
416 XCONS (tem)->car = Fcons (XCONS (car)->car, XCONS (car)->cdr); | |
417 } | |
418 return alist; | |
419 } | |
420 | |
421 DEFUN ("substring", Fsubstring, Ssubstring, 2, 3, 0, | |
422 "Return a substring of STRING, starting at index FROM and ending before TO.\n\ | |
423 TO may be nil or omitted; then the substring runs to the end of STRING.\n\ | |
424 If FROM or TO is negative, it counts from the end.") | |
425 (string, from, to) | |
426 Lisp_Object string; | |
427 register Lisp_Object from, to; | |
428 { | |
4004
71541ea16adf
* fns.c (Fsubstring, concat): Pass all six arguments to
Jim Blandy <jimb@redhat.com>
parents:
3379
diff
changeset
|
429 Lisp_Object res; |
71541ea16adf
* fns.c (Fsubstring, concat): Pass all six arguments to
Jim Blandy <jimb@redhat.com>
parents:
3379
diff
changeset
|
430 |
211 | 431 CHECK_STRING (string, 0); |
432 CHECK_NUMBER (from, 1); | |
485 | 433 if (NILP (to)) |
211 | 434 to = Flength (string); |
435 else | |
436 CHECK_NUMBER (to, 2); | |
437 | |
438 if (XINT (from) < 0) | |
439 XSETINT (from, XINT (from) + XSTRING (string)->size); | |
440 if (XINT (to) < 0) | |
441 XSETINT (to, XINT (to) + XSTRING (string)->size); | |
442 if (!(0 <= XINT (from) && XINT (from) <= XINT (to) | |
443 && XINT (to) <= XSTRING (string)->size)) | |
444 args_out_of_range_3 (string, from, to); | |
445 | |
4004
71541ea16adf
* fns.c (Fsubstring, concat): Pass all six arguments to
Jim Blandy <jimb@redhat.com>
parents:
3379
diff
changeset
|
446 res = make_string (XSTRING (string)->data + XINT (from), |
71541ea16adf
* fns.c (Fsubstring, concat): Pass all six arguments to
Jim Blandy <jimb@redhat.com>
parents:
3379
diff
changeset
|
447 XINT (to) - XINT (from)); |
71541ea16adf
* fns.c (Fsubstring, concat): Pass all six arguments to
Jim Blandy <jimb@redhat.com>
parents:
3379
diff
changeset
|
448 copy_text_properties (from, to, string, make_number (0), res, Qnil); |
71541ea16adf
* fns.c (Fsubstring, concat): Pass all six arguments to
Jim Blandy <jimb@redhat.com>
parents:
3379
diff
changeset
|
449 return res; |
211 | 450 } |
451 | |
452 DEFUN ("nthcdr", Fnthcdr, Snthcdr, 2, 2, 0, | |
453 "Take cdr N times on LIST, returns the result.") | |
454 (n, list) | |
455 Lisp_Object n; | |
456 register Lisp_Object list; | |
457 { | |
458 register int i, num; | |
459 CHECK_NUMBER (n, 0); | |
460 num = XINT (n); | |
485 | 461 for (i = 0; i < num && !NILP (list); i++) |
211 | 462 { |
463 QUIT; | |
464 list = Fcdr (list); | |
465 } | |
466 return list; | |
467 } | |
468 | |
469 DEFUN ("nth", Fnth, Snth, 2, 2, 0, | |
470 "Return the Nth element of LIST.\n\ | |
471 N counts from zero. If LIST is not that long, nil is returned.") | |
472 (n, list) | |
473 Lisp_Object n, list; | |
474 { | |
475 return Fcar (Fnthcdr (n, list)); | |
476 } | |
477 | |
478 DEFUN ("elt", Felt, Selt, 2, 2, 0, | |
479 "Return element of SEQUENCE at index N.") | |
480 (seq, n) | |
481 register Lisp_Object seq, n; | |
482 { | |
483 CHECK_NUMBER (n, 0); | |
484 while (1) | |
485 { | |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
486 if (CONSP (seq) || NILP (seq)) |
211 | 487 return Fcar (Fnthcdr (n, seq)); |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
488 else if (STRINGP (seq) || VECTORP (seq)) |
211 | 489 return Faref (seq, n); |
490 else | |
491 seq = wrong_type_argument (Qsequencep, seq); | |
492 } | |
493 } | |
494 | |
495 DEFUN ("member", Fmember, Smember, 2, 2, 0, | |
6990 | 496 "Return non-nil if ELT is an element of LIST. Comparison done with `equal'.\n\ |
211 | 497 The value is actually the tail of LIST whose car is ELT.") |
498 (elt, list) | |
499 register Lisp_Object elt; | |
500 Lisp_Object list; | |
501 { | |
502 register Lisp_Object tail; | |
485 | 503 for (tail = list; !NILP (tail); tail = Fcdr (tail)) |
211 | 504 { |
505 register Lisp_Object tem; | |
506 tem = Fcar (tail); | |
485 | 507 if (! NILP (Fequal (elt, tem))) |
211 | 508 return tail; |
509 QUIT; | |
510 } | |
511 return Qnil; | |
512 } | |
513 | |
514 DEFUN ("memq", Fmemq, Smemq, 2, 2, 0, | |
515 "Return non-nil if ELT is an element of LIST. Comparison done with EQ.\n\ | |
516 The value is actually the tail of LIST whose car is ELT.") | |
517 (elt, list) | |
518 register Lisp_Object elt; | |
519 Lisp_Object list; | |
520 { | |
521 register Lisp_Object tail; | |
485 | 522 for (tail = list; !NILP (tail); tail = Fcdr (tail)) |
211 | 523 { |
524 register Lisp_Object tem; | |
525 tem = Fcar (tail); | |
526 if (EQ (elt, tem)) return tail; | |
527 QUIT; | |
528 } | |
529 return Qnil; | |
530 } | |
531 | |
532 DEFUN ("assq", Fassq, Sassq, 2, 2, 0, | |
5661
066830a71a63
(Fassq, Fassoc): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
5437
diff
changeset
|
533 "Return non-nil if KEY is `eq' to the car of an element of LIST.\n\ |
066830a71a63
(Fassq, Fassoc): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
5437
diff
changeset
|
534 The value is actually the element of LIST whose car is KEY.\n\ |
211 | 535 Elements of LIST that are not conses are ignored.") |
536 (key, list) | |
537 register Lisp_Object key; | |
538 Lisp_Object list; | |
539 { | |
540 register Lisp_Object tail; | |
485 | 541 for (tail = list; !NILP (tail); tail = Fcdr (tail)) |
211 | 542 { |
543 register Lisp_Object elt, tem; | |
544 elt = Fcar (tail); | |
545 if (!CONSP (elt)) continue; | |
546 tem = Fcar (elt); | |
547 if (EQ (key, tem)) return elt; | |
548 QUIT; | |
549 } | |
550 return Qnil; | |
551 } | |
552 | |
553 /* Like Fassq but never report an error and do not allow quits. | |
554 Use only on lists known never to be circular. */ | |
555 | |
556 Lisp_Object | |
557 assq_no_quit (key, list) | |
558 register Lisp_Object key; | |
559 Lisp_Object list; | |
560 { | |
561 register Lisp_Object tail; | |
562 for (tail = list; CONSP (tail); tail = Fcdr (tail)) | |
563 { | |
564 register Lisp_Object elt, tem; | |
565 elt = Fcar (tail); | |
566 if (!CONSP (elt)) continue; | |
567 tem = Fcar (elt); | |
568 if (EQ (key, tem)) return elt; | |
569 } | |
570 return Qnil; | |
571 } | |
572 | |
573 DEFUN ("assoc", Fassoc, Sassoc, 2, 2, 0, | |
5661
066830a71a63
(Fassq, Fassoc): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
5437
diff
changeset
|
574 "Return non-nil if KEY is `equal' to the car of an element of LIST.\n\ |
066830a71a63
(Fassq, Fassoc): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
5437
diff
changeset
|
575 The value is actually the element of LIST whose car is KEY.") |
211 | 576 (key, list) |
577 register Lisp_Object key; | |
578 Lisp_Object list; | |
579 { | |
580 register Lisp_Object tail; | |
485 | 581 for (tail = list; !NILP (tail); tail = Fcdr (tail)) |
211 | 582 { |
583 register Lisp_Object elt, tem; | |
584 elt = Fcar (tail); | |
585 if (!CONSP (elt)) continue; | |
586 tem = Fequal (Fcar (elt), key); | |
485 | 587 if (!NILP (tem)) return elt; |
211 | 588 QUIT; |
589 } | |
590 return Qnil; | |
591 } | |
592 | |
593 DEFUN ("rassq", Frassq, Srassq, 2, 2, 0, | |
594 "Return non-nil if ELT is `eq' to the cdr of an element of LIST.\n\ | |
595 The value is actually the element of LIST whose cdr is ELT.") | |
596 (key, list) | |
597 register Lisp_Object key; | |
598 Lisp_Object list; | |
599 { | |
600 register Lisp_Object tail; | |
485 | 601 for (tail = list; !NILP (tail); tail = Fcdr (tail)) |
211 | 602 { |
603 register Lisp_Object elt, tem; | |
604 elt = Fcar (tail); | |
605 if (!CONSP (elt)) continue; | |
606 tem = Fcdr (elt); | |
607 if (EQ (key, tem)) return elt; | |
608 QUIT; | |
609 } | |
610 return Qnil; | |
611 } | |
612 | |
613 DEFUN ("delq", Fdelq, Sdelq, 2, 2, 0, | |
614 "Delete by side effect any occurrences of ELT as a member of LIST.\n\ | |
615 The modified LIST is returned. Comparison is done with `eq'.\n\ | |
616 If the first member of LIST is ELT, there is no way to remove it by side effect;\n\ | |
617 therefore, write `(setq foo (delq element foo))'\n\ | |
618 to be sure of changing the value of `foo'.") | |
619 (elt, list) | |
620 register Lisp_Object elt; | |
621 Lisp_Object list; | |
622 { | |
623 register Lisp_Object tail, prev; | |
624 register Lisp_Object tem; | |
625 | |
626 tail = list; | |
627 prev = Qnil; | |
485 | 628 while (!NILP (tail)) |
211 | 629 { |
630 tem = Fcar (tail); | |
631 if (EQ (elt, tem)) | |
632 { | |
485 | 633 if (NILP (prev)) |
211 | 634 list = Fcdr (tail); |
635 else | |
636 Fsetcdr (prev, Fcdr (tail)); | |
637 } | |
638 else | |
639 prev = tail; | |
640 tail = Fcdr (tail); | |
641 QUIT; | |
642 } | |
643 return list; | |
644 } | |
645 | |
414 | 646 DEFUN ("delete", Fdelete, Sdelete, 2, 2, 0, |
401 | 647 "Delete by side effect any occurrences of ELT as a member of LIST.\n\ |
648 The modified LIST is returned. Comparison is done with `equal'.\n\ | |
6990 | 649 If the first member of LIST is ELT, deleting it is not a side effect;\n\ |
650 it is simply using a different list.\n\ | |
651 Therefore, write `(setq foo (delete element foo))'\n\ | |
401 | 652 to be sure of changing the value of `foo'.") |
653 (elt, list) | |
654 register Lisp_Object elt; | |
655 Lisp_Object list; | |
656 { | |
657 register Lisp_Object tail, prev; | |
658 register Lisp_Object tem; | |
659 | |
660 tail = list; | |
661 prev = Qnil; | |
485 | 662 while (!NILP (tail)) |
401 | 663 { |
664 tem = Fcar (tail); | |
1513
7381accd610d
* fns.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1194
diff
changeset
|
665 if (! NILP (Fequal (elt, tem))) |
401 | 666 { |
485 | 667 if (NILP (prev)) |
401 | 668 list = Fcdr (tail); |
669 else | |
670 Fsetcdr (prev, Fcdr (tail)); | |
671 } | |
672 else | |
673 prev = tail; | |
674 tail = Fcdr (tail); | |
675 QUIT; | |
676 } | |
677 return list; | |
678 } | |
679 | |
211 | 680 DEFUN ("nreverse", Fnreverse, Snreverse, 1, 1, 0, |
681 "Reverse LIST by modifying cdr pointers.\n\ | |
682 Returns the beginning of the reversed list.") | |
683 (list) | |
684 Lisp_Object list; | |
685 { | |
686 register Lisp_Object prev, tail, next; | |
687 | |
485 | 688 if (NILP (list)) return list; |
211 | 689 prev = Qnil; |
690 tail = list; | |
485 | 691 while (!NILP (tail)) |
211 | 692 { |
693 QUIT; | |
694 next = Fcdr (tail); | |
695 Fsetcdr (tail, prev); | |
696 prev = tail; | |
697 tail = next; | |
698 } | |
699 return prev; | |
700 } | |
701 | |
702 DEFUN ("reverse", Freverse, Sreverse, 1, 1, 0, | |
703 "Reverse LIST, copying. Returns the beginning of the reversed list.\n\ | |
704 See also the function `nreverse', which is used more often.") | |
705 (list) | |
706 Lisp_Object list; | |
707 { | |
708 Lisp_Object length; | |
709 register Lisp_Object *vec; | |
710 register Lisp_Object tail; | |
711 register int i; | |
712 | |
713 length = Flength (list); | |
714 vec = (Lisp_Object *) alloca (XINT (length) * sizeof (Lisp_Object)); | |
715 for (i = XINT (length) - 1, tail = list; i >= 0; i--, tail = Fcdr (tail)) | |
716 vec[i] = Fcar (tail); | |
717 | |
718 return Flist (XINT (length), vec); | |
719 } | |
720 | |
721 Lisp_Object merge (); | |
722 | |
723 DEFUN ("sort", Fsort, Ssort, 2, 2, 0, | |
724 "Sort LIST, stably, comparing elements using PREDICATE.\n\ | |
725 Returns the sorted list. LIST is modified by side effects.\n\ | |
726 PREDICATE is called with two elements of LIST, and should return T\n\ | |
727 if the first element is \"less\" than the second.") | |
728 (list, pred) | |
729 Lisp_Object list, pred; | |
730 { | |
731 Lisp_Object front, back; | |
732 register Lisp_Object len, tem; | |
733 struct gcpro gcpro1, gcpro2; | |
734 register int length; | |
735 | |
736 front = list; | |
737 len = Flength (list); | |
738 length = XINT (len); | |
739 if (length < 2) | |
740 return list; | |
741 | |
742 XSETINT (len, (length / 2) - 1); | |
743 tem = Fnthcdr (len, list); | |
744 back = Fcdr (tem); | |
745 Fsetcdr (tem, Qnil); | |
746 | |
747 GCPRO2 (front, back); | |
748 front = Fsort (front, pred); | |
749 back = Fsort (back, pred); | |
750 UNGCPRO; | |
751 return merge (front, back, pred); | |
752 } | |
753 | |
754 Lisp_Object | |
755 merge (org_l1, org_l2, pred) | |
756 Lisp_Object org_l1, org_l2; | |
757 Lisp_Object pred; | |
758 { | |
759 Lisp_Object value; | |
760 register Lisp_Object tail; | |
761 Lisp_Object tem; | |
762 register Lisp_Object l1, l2; | |
763 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; | |
764 | |
765 l1 = org_l1; | |
766 l2 = org_l2; | |
767 tail = Qnil; | |
768 value = Qnil; | |
769 | |
770 /* It is sufficient to protect org_l1 and org_l2. | |
771 When l1 and l2 are updated, we copy the new values | |
772 back into the org_ vars. */ | |
773 GCPRO4 (org_l1, org_l2, pred, value); | |
774 | |
775 while (1) | |
776 { | |
485 | 777 if (NILP (l1)) |
211 | 778 { |
779 UNGCPRO; | |
485 | 780 if (NILP (tail)) |
211 | 781 return l2; |
782 Fsetcdr (tail, l2); | |
783 return value; | |
784 } | |
485 | 785 if (NILP (l2)) |
211 | 786 { |
787 UNGCPRO; | |
485 | 788 if (NILP (tail)) |
211 | 789 return l1; |
790 Fsetcdr (tail, l1); | |
791 return value; | |
792 } | |
793 tem = call2 (pred, Fcar (l2), Fcar (l1)); | |
485 | 794 if (NILP (tem)) |
211 | 795 { |
796 tem = l1; | |
797 l1 = Fcdr (l1); | |
798 org_l1 = l1; | |
799 } | |
800 else | |
801 { | |
802 tem = l2; | |
803 l2 = Fcdr (l2); | |
804 org_l2 = l2; | |
805 } | |
485 | 806 if (NILP (tail)) |
211 | 807 value = tem; |
808 else | |
809 Fsetcdr (tail, tem); | |
810 tail = tem; | |
811 } | |
812 } | |
813 | |
814 DEFUN ("get", Fget, Sget, 2, 2, 0, | |
815 "Return the value of SYMBOL's PROPNAME property.\n\ | |
816 This is the last VALUE stored with `(put SYMBOL PROPNAME VALUE)'.") | |
817 (sym, prop) | |
818 Lisp_Object sym; | |
819 register Lisp_Object prop; | |
820 { | |
821 register Lisp_Object tail; | |
485 | 822 for (tail = Fsymbol_plist (sym); !NILP (tail); tail = Fcdr (Fcdr (tail))) |
211 | 823 { |
824 register Lisp_Object tem; | |
825 tem = Fcar (tail); | |
826 if (EQ (prop, tem)) | |
827 return Fcar (Fcdr (tail)); | |
828 } | |
829 return Qnil; | |
830 } | |
831 | |
832 DEFUN ("put", Fput, Sput, 3, 3, 0, | |
833 "Store SYMBOL's PROPNAME property with value VALUE.\n\ | |
834 It can be retrieved with `(get SYMBOL PROPNAME)'.") | |
835 (sym, prop, val) | |
836 Lisp_Object sym; | |
837 register Lisp_Object prop; | |
838 Lisp_Object val; | |
839 { | |
840 register Lisp_Object tail, prev; | |
841 Lisp_Object newcell; | |
842 prev = Qnil; | |
485 | 843 for (tail = Fsymbol_plist (sym); !NILP (tail); tail = Fcdr (Fcdr (tail))) |
211 | 844 { |
845 register Lisp_Object tem; | |
846 tem = Fcar (tail); | |
847 if (EQ (prop, tem)) | |
848 return Fsetcar (Fcdr (tail), val); | |
849 prev = tail; | |
850 } | |
851 newcell = Fcons (prop, Fcons (val, Qnil)); | |
485 | 852 if (NILP (prev)) |
211 | 853 Fsetplist (sym, newcell); |
854 else | |
855 Fsetcdr (Fcdr (prev), newcell); | |
856 return val; | |
857 } | |
858 | |
859 DEFUN ("equal", Fequal, Sequal, 2, 2, 0, | |
860 "T if two Lisp objects have similar structure and contents.\n\ | |
861 They must have the same data type.\n\ | |
862 Conses are compared by comparing the cars and the cdrs.\n\ | |
863 Vectors and strings are compared element by element.\n\ | |
3379
68f28e378f50
(internal_equal): Don't let ints be equal to floats.
Richard M. Stallman <rms@gnu.org>
parents:
3332
diff
changeset
|
864 Numbers are compared by value, but integers cannot equal floats.\n\ |
68f28e378f50
(internal_equal): Don't let ints be equal to floats.
Richard M. Stallman <rms@gnu.org>
parents:
3332
diff
changeset
|
865 (Use `=' if you want integers and floats to be able to be equal.)\n\ |
68f28e378f50
(internal_equal): Don't let ints be equal to floats.
Richard M. Stallman <rms@gnu.org>
parents:
3332
diff
changeset
|
866 Symbols must match exactly.") |
211 | 867 (o1, o2) |
868 register Lisp_Object o1, o2; | |
869 { | |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
870 return internal_equal (o1, o2, 0) ? Qt : Qnil; |
399
21aa17a1560d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
350
diff
changeset
|
871 } |
21aa17a1560d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
350
diff
changeset
|
872 |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
873 static int |
399
21aa17a1560d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
350
diff
changeset
|
874 internal_equal (o1, o2, depth) |
21aa17a1560d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
350
diff
changeset
|
875 register Lisp_Object o1, o2; |
21aa17a1560d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
350
diff
changeset
|
876 int depth; |
21aa17a1560d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
350
diff
changeset
|
877 { |
21aa17a1560d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
350
diff
changeset
|
878 if (depth > 200) |
21aa17a1560d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
350
diff
changeset
|
879 error ("Stack overflow in equal"); |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
880 tail_recurse: |
211 | 881 QUIT; |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
882 if (EQ (o1, o2)) return 1; |
1822
001382595e48
* fns.c (internal_equal): Protect the clause for comparing numbers
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
883 #ifdef LISP_FLOAT_TYPE |
3379
68f28e378f50
(internal_equal): Don't let ints be equal to floats.
Richard M. Stallman <rms@gnu.org>
parents:
3332
diff
changeset
|
884 if (FLOATP (o1) && FLOATP (o2)) |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
885 return (extract_float (o1) == extract_float (o2)); |
1822
001382595e48
* fns.c (internal_equal): Protect the clause for comparing numbers
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
886 #endif |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
887 if (XTYPE (o1) != XTYPE (o2)) return 0; |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
888 if (MISCP (o1) && XMISC (o1)->type != XMISC (o2)->type) return 0; |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
889 if (CONSP (o1)) |
211 | 890 { |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
891 if (!internal_equal (XCONS (o1)->car, XCONS (o2)->car, depth + 1)) |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
892 return 0; |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
893 o1 = XCONS (o1)->cdr; |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
894 o2 = XCONS (o2)->cdr; |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
895 goto tail_recurse; |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
896 } |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
897 if (OVERLAYP (o1)) |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
898 { |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
899 if (!internal_equal (OVERLAY_START (o1), OVERLAY_START (o1), depth + 1) |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
900 || !internal_equal (OVERLAY_END (o1), OVERLAY_END (o1), depth + 1)) |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
901 return 0; |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
902 o1 = XOVERLAY (o1)->plist; |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
903 o2 = XOVERLAY (o2)->plist; |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
904 goto tail_recurse; |
211 | 905 } |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
906 if (MARKERP (o1)) |
211 | 907 { |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
908 return (XMARKER (o1)->buffer == XMARKER (o2)->buffer |
4616
f2f13eeb1c2e
(internal_equal): Typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
4613
diff
changeset
|
909 && (XMARKER (o1)->buffer == 0 |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
910 || XMARKER (o1)->bufpos == XMARKER (o2)->bufpos)); |
211 | 911 } |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
912 if (VECTORP (o1) || COMPILEDP (o1)) |
211 | 913 { |
914 register int index; | |
915 if (XVECTOR (o1)->size != XVECTOR (o2)->size) | |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
916 return 0; |
211 | 917 for (index = 0; index < XVECTOR (o1)->size; index++) |
918 { | |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
919 Lisp_Object v1, v2; |
211 | 920 v1 = XVECTOR (o1)->contents [index]; |
921 v2 = XVECTOR (o2)->contents [index]; | |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
922 if (!internal_equal (v1, v2, depth + 1)) |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
923 return 0; |
211 | 924 } |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
925 return 1; |
211 | 926 } |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
927 if (STRINGP (o1)) |
211 | 928 { |
929 if (XSTRING (o1)->size != XSTRING (o2)->size) | |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
930 return 0; |
211 | 931 if (bcmp (XSTRING (o1)->data, XSTRING (o2)->data, XSTRING (o1)->size)) |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
932 return 0; |
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
933 return 1; |
211 | 934 } |
9927
05aa745fc829
(internal_equal): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9439
diff
changeset
|
935 return 0; |
211 | 936 } |
937 | |
938 DEFUN ("fillarray", Ffillarray, Sfillarray, 2, 2, 0, | |
939 "Store each element of ARRAY with ITEM. ARRAY is a vector or string.") | |
940 (array, item) | |
941 Lisp_Object array, item; | |
942 { | |
943 register int size, index, charval; | |
944 retry: | |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
945 if (VECTORP (array)) |
211 | 946 { |
947 register Lisp_Object *p = XVECTOR (array)->contents; | |
948 size = XVECTOR (array)->size; | |
949 for (index = 0; index < size; index++) | |
950 p[index] = item; | |
951 } | |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
952 else if (STRINGP (array)) |
211 | 953 { |
954 register unsigned char *p = XSTRING (array)->data; | |
955 CHECK_NUMBER (item, 1); | |
956 charval = XINT (item); | |
957 size = XSTRING (array)->size; | |
958 for (index = 0; index < size; index++) | |
959 p[index] = charval; | |
960 } | |
961 else | |
962 { | |
963 array = wrong_type_argument (Qarrayp, array); | |
964 goto retry; | |
965 } | |
966 return array; | |
967 } | |
968 | |
969 /* ARGSUSED */ | |
970 Lisp_Object | |
971 nconc2 (s1, s2) | |
972 Lisp_Object s1, s2; | |
973 { | |
974 #ifdef NO_ARG_ARRAY | |
975 Lisp_Object args[2]; | |
976 args[0] = s1; | |
977 args[1] = s2; | |
978 return Fnconc (2, args); | |
979 #else | |
980 return Fnconc (2, &s1); | |
981 #endif /* NO_ARG_ARRAY */ | |
982 } | |
983 | |
984 DEFUN ("nconc", Fnconc, Snconc, 0, MANY, 0, | |
985 "Concatenate any number of lists by altering them.\n\ | |
986 Only the last argument is not altered, and need not be a list.") | |
987 (nargs, args) | |
988 int nargs; | |
989 Lisp_Object *args; | |
990 { | |
991 register int argnum; | |
992 register Lisp_Object tail, tem, val; | |
993 | |
994 val = Qnil; | |
995 | |
996 for (argnum = 0; argnum < nargs; argnum++) | |
997 { | |
998 tem = args[argnum]; | |
485 | 999 if (NILP (tem)) continue; |
211 | 1000 |
485 | 1001 if (NILP (val)) |
211 | 1002 val = tem; |
1003 | |
1004 if (argnum + 1 == nargs) break; | |
1005 | |
1006 if (!CONSP (tem)) | |
1007 tem = wrong_type_argument (Qlistp, tem); | |
1008 | |
1009 while (CONSP (tem)) | |
1010 { | |
1011 tail = tem; | |
1012 tem = Fcdr (tail); | |
1013 QUIT; | |
1014 } | |
1015 | |
1016 tem = args[argnum + 1]; | |
1017 Fsetcdr (tail, tem); | |
485 | 1018 if (NILP (tem)) |
211 | 1019 args[argnum + 1] = tail; |
1020 } | |
1021 | |
1022 return val; | |
1023 } | |
1024 | |
1025 /* This is the guts of all mapping functions. | |
1026 Apply fn to each element of seq, one by one, | |
1027 storing the results into elements of vals, a C vector of Lisp_Objects. | |
1028 leni is the length of vals, which should also be the length of seq. */ | |
1029 | |
1030 static void | |
1031 mapcar1 (leni, vals, fn, seq) | |
1032 int leni; | |
1033 Lisp_Object *vals; | |
1034 Lisp_Object fn, seq; | |
1035 { | |
1036 register Lisp_Object tail; | |
1037 Lisp_Object dummy; | |
1038 register int i; | |
1039 struct gcpro gcpro1, gcpro2, gcpro3; | |
1040 | |
1041 /* Don't let vals contain any garbage when GC happens. */ | |
1042 for (i = 0; i < leni; i++) | |
1043 vals[i] = Qnil; | |
1044 | |
1045 GCPRO3 (dummy, fn, seq); | |
1046 gcpro1.var = vals; | |
1047 gcpro1.nvars = leni; | |
1048 /* We need not explicitly protect `tail' because it is used only on lists, and | |
1049 1) lists are not relocated and 2) the list is marked via `seq' so will not be freed */ | |
1050 | |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
1051 if (VECTORP (seq)) |
211 | 1052 { |
1053 for (i = 0; i < leni; i++) | |
1054 { | |
1055 dummy = XVECTOR (seq)->contents[i]; | |
1056 vals[i] = call1 (fn, dummy); | |
1057 } | |
1058 } | |
9128
04a702d7f662
(Frandom, Flength, Fstring_equal, Fstring_lessp, Fcopy_sequence, concat, Felt,
Karl Heuer <kwzh@gnu.org>
parents:
8966
diff
changeset
|
1059 else if (STRINGP (seq)) |
211 | 1060 { |
1061 for (i = 0; i < leni; i++) | |
1062 { | |
9308
2c594629baaa
(Flength, concat, mapcar1): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9289
diff
changeset
|
1063 XSETFASTINT (dummy, XSTRING (seq)->data[i]); |
211 | 1064 vals[i] = call1 (fn, dummy); |
1065 } | |
1066 } | |
1067 else /* Must be a list, since Flength did not get an error */ | |
1068 { | |
1069 tail = seq; | |
1070 for (i = 0; i < leni; i++) | |
1071 { | |
1072 vals[i] = call1 (fn, Fcar (tail)); | |
1073 tail = Fcdr (tail); | |
1074 } | |
1075 } | |
1076 | |
1077 UNGCPRO; | |
1078 } | |
1079 | |
1080 DEFUN ("mapconcat", Fmapconcat, Smapconcat, 3, 3, 0, | |
1081 "Apply FN to each element of SEQ, and concat the results as strings.\n\ | |
1082 In between each pair of results, stick in SEP.\n\ | |
5437 | 1083 Thus, \" \" as SEP results in spaces between the values returned by FN.") |
211 | 1084 (fn, seq, sep) |
1085 Lisp_Object fn, seq, sep; | |
1086 { | |
1087 Lisp_Object len; | |
1088 register int leni; | |
1089 int nargs; | |
1090 register Lisp_Object *args; | |
1091 register int i; | |
1092 struct gcpro gcpro1; | |
1093 | |
1094 len = Flength (seq); | |
1095 leni = XINT (len); | |
1096 nargs = leni + leni - 1; | |
1097 if (nargs < 0) return build_string (""); | |
1098 | |
1099 args = (Lisp_Object *) alloca (nargs * sizeof (Lisp_Object)); | |
1100 | |
1101 GCPRO1 (sep); | |
1102 mapcar1 (leni, args, fn, seq); | |
1103 UNGCPRO; | |
1104 | |
1105 for (i = leni - 1; i >= 0; i--) | |
1106 args[i + i] = args[i]; | |
1107 | |
1108 for (i = 1; i < nargs; i += 2) | |
1109 args[i] = sep; | |
1110 | |
1111 return Fconcat (nargs, args); | |
1112 } | |
1113 | |
1114 DEFUN ("mapcar", Fmapcar, Smapcar, 2, 2, 0, | |
1115 "Apply FUNCTION to each element of SEQUENCE, and make a list of the results.\n\ | |
1116 The result is a list just as long as SEQUENCE.\n\ | |
1117 SEQUENCE may be a list, a vector or a string.") | |
1118 (fn, seq) | |
1119 Lisp_Object fn, seq; | |
1120 { | |
1121 register Lisp_Object len; | |
1122 register int leni; | |
1123 register Lisp_Object *args; | |
1124 | |
1125 len = Flength (seq); | |
1126 leni = XFASTINT (len); | |
1127 args = (Lisp_Object *) alloca (leni * sizeof (Lisp_Object)); | |
1128 | |
1129 mapcar1 (leni, args, fn, seq); | |
1130 | |
1131 return Flist (leni, args); | |
1132 } | |
1133 | |
1134 /* Anything that calls this function must protect from GC! */ | |
1135 | |
1136 DEFUN ("y-or-n-p", Fy_or_n_p, Sy_or_n_p, 1, 1, 0, | |
1137 "Ask user a \"y or n\" question. Return t if answer is \"y\".\n\ | |
759
58b7fc91b74a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
727
diff
changeset
|
1138 Takes one argument, which is the string to display to ask the question.\n\ |
58b7fc91b74a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
727
diff
changeset
|
1139 It should end in a space; `y-or-n-p' adds `(y or n) ' to it.\n\ |
211 | 1140 No confirmation of the answer is requested; a single character is enough.\n\ |
1141 Also accepts Space to mean yes, or Delete to mean no.") | |
1142 (prompt) | |
1143 Lisp_Object prompt; | |
1144 { | |
2091
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1145 register Lisp_Object obj, key, def, answer_string, map; |
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1146 register int answer; |
211 | 1147 Lisp_Object xprompt; |
1148 Lisp_Object args[2]; | |
1149 int ocech = cursor_in_echo_area; | |
1150 struct gcpro gcpro1, gcpro2; | |
1151 | |
2091
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1152 map = Fsymbol_value (intern ("query-replace-map")); |
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1153 |
211 | 1154 CHECK_STRING (prompt, 0); |
1155 xprompt = prompt; | |
1156 GCPRO2 (prompt, xprompt); | |
1157 | |
1158 while (1) | |
1159 { | |
6850
d2d8b40fb599
(Fy_or_n_p, Fyes_or_no_p): Test HAVE_X_MENU.
Karl Heuer <kwzh@gnu.org>
parents:
6478
diff
changeset
|
1160 #ifdef HAVE_X_MENU |
7790
75153e2d5d85
(Fy_or_n_p): Don't use dialog box if not an X frame.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1161 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event)) |
75153e2d5d85
(Fy_or_n_p): Don't use dialog box if not an X frame.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1162 && using_x_p ()) |
6057
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1163 { |
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1164 Lisp_Object pane, menu; |
7815
5d167db8ce8a
(Fy_or_n_p, Fyes_or_no_p) [HAVE_X_MENU]: Redisplay before popping up a menu.
Karl Heuer <kwzh@gnu.org>
parents:
7790
diff
changeset
|
1165 redisplay_preserve_echo_area (); |
6057
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1166 pane = Fcons (Fcons (build_string ("Yes"), Qt), |
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1167 Fcons (Fcons (build_string ("No"), Qnil), |
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1168 Qnil)); |
6478
65c2e184b5d9
(Fy_or_n_p, Fyes_or_no_p): Call Fx_popup_dialog the new way.
Richard M. Stallman <rms@gnu.org>
parents:
6427
diff
changeset
|
1169 menu = Fcons (prompt, pane); |
6303
1571be153f56
(Fyes_or_no_p): Call Fx_popup_dialog instead of Fx_popup_menu.
Fred Pierresteguy <F.Pierresteguy@frcl.bull.fr>
parents:
6057
diff
changeset
|
1170 obj = Fx_popup_dialog (Qt, menu); |
6057
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1171 answer = !NILP (obj); |
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1172 break; |
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1173 } |
6850
d2d8b40fb599
(Fy_or_n_p, Fyes_or_no_p): Test HAVE_X_MENU.
Karl Heuer <kwzh@gnu.org>
parents:
6478
diff
changeset
|
1174 #endif |
d2d8b40fb599
(Fy_or_n_p, Fyes_or_no_p): Test HAVE_X_MENU.
Karl Heuer <kwzh@gnu.org>
parents:
6478
diff
changeset
|
1175 cursor_in_echo_area = 1; |
d2d8b40fb599
(Fy_or_n_p, Fyes_or_no_p): Test HAVE_X_MENU.
Karl Heuer <kwzh@gnu.org>
parents:
6478
diff
changeset
|
1176 message ("%s(y or n) ", XSTRING (xprompt)->data); |
211 | 1177 |
6850
d2d8b40fb599
(Fy_or_n_p, Fyes_or_no_p): Test HAVE_X_MENU.
Karl Heuer <kwzh@gnu.org>
parents:
6478
diff
changeset
|
1178 obj = read_filtered_event (1, 0, 0); |
d2d8b40fb599
(Fy_or_n_p, Fyes_or_no_p): Test HAVE_X_MENU.
Karl Heuer <kwzh@gnu.org>
parents:
6478
diff
changeset
|
1179 cursor_in_echo_area = 0; |
d2d8b40fb599
(Fy_or_n_p, Fyes_or_no_p): Test HAVE_X_MENU.
Karl Heuer <kwzh@gnu.org>
parents:
6478
diff
changeset
|
1180 /* If we need to quit, quit with cursor_in_echo_area = 0. */ |
d2d8b40fb599
(Fy_or_n_p, Fyes_or_no_p): Test HAVE_X_MENU.
Karl Heuer <kwzh@gnu.org>
parents:
6478
diff
changeset
|
1181 QUIT; |
2369
8ce8541f393a
(Fy_or_n_p): Ensure cursor_in_echo_area = 0 when quit.
Richard M. Stallman <rms@gnu.org>
parents:
2311
diff
changeset
|
1182 |
2091
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1183 key = Fmake_vector (make_number (1), obj); |
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1184 def = Flookup_key (map, key); |
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1185 answer_string = Fsingle_key_description (obj); |
211 | 1186 |
2091
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1187 if (EQ (def, intern ("skip"))) |
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1188 { |
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1189 answer = 0; |
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1190 break; |
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1191 } |
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1192 else if (EQ (def, intern ("act"))) |
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1193 { |
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1194 answer = 1; |
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1195 break; |
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1196 } |
2311
98b714786ad0
(Fy_or_n_p): Handle `recenter' response type.
Richard M. Stallman <rms@gnu.org>
parents:
2171
diff
changeset
|
1197 else if (EQ (def, intern ("recenter"))) |
98b714786ad0
(Fy_or_n_p): Handle `recenter' response type.
Richard M. Stallman <rms@gnu.org>
parents:
2171
diff
changeset
|
1198 { |
98b714786ad0
(Fy_or_n_p): Handle `recenter' response type.
Richard M. Stallman <rms@gnu.org>
parents:
2171
diff
changeset
|
1199 Frecenter (Qnil); |
98b714786ad0
(Fy_or_n_p): Handle `recenter' response type.
Richard M. Stallman <rms@gnu.org>
parents:
2171
diff
changeset
|
1200 xprompt = prompt; |
98b714786ad0
(Fy_or_n_p): Handle `recenter' response type.
Richard M. Stallman <rms@gnu.org>
parents:
2171
diff
changeset
|
1201 continue; |
98b714786ad0
(Fy_or_n_p): Handle `recenter' response type.
Richard M. Stallman <rms@gnu.org>
parents:
2171
diff
changeset
|
1202 } |
2091
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1203 else if (EQ (def, intern ("quit"))) |
211 | 1204 Vquit_flag = Qt; |
10059
c1b138be512e
(Fy_or_n_p): Handle exit-prefix in query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
10006
diff
changeset
|
1205 /* We want to exit this command for exit-prefix, |
c1b138be512e
(Fy_or_n_p): Handle exit-prefix in query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
10006
diff
changeset
|
1206 and this is the only way to do it. */ |
c1b138be512e
(Fy_or_n_p): Handle exit-prefix in query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
10006
diff
changeset
|
1207 else if (EQ (def, intern ("exit-prefix"))) |
c1b138be512e
(Fy_or_n_p): Handle exit-prefix in query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
10006
diff
changeset
|
1208 Vquit_flag = Qt; |
2091
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1209 |
211 | 1210 QUIT; |
1194 | 1211 |
1212 /* If we don't clear this, then the next call to read_char will | |
1213 return quit_char again, and we'll enter an infinite loop. */ | |
1193
e1329d41271d
* fns.c (Fy_or_n_p): After testing for a QUIT, clear Vquit_flag.
Jim Blandy <jimb@redhat.com>
parents:
1093
diff
changeset
|
1214 Vquit_flag = Qnil; |
211 | 1215 |
1216 Fding (Qnil); | |
1217 Fdiscard_input (); | |
1218 if (EQ (xprompt, prompt)) | |
1219 { | |
1220 args[0] = build_string ("Please answer y or n. "); | |
1221 args[1] = prompt; | |
1222 xprompt = Fconcat (2, args); | |
1223 } | |
1224 } | |
1225 UNGCPRO; | |
2171
4fbceca13b22
* fns.c (Fy_or_n_p): Display the answer.
Jim Blandy <jimb@redhat.com>
parents:
2091
diff
changeset
|
1226 |
2525
6cf2344e6e7e
(Fy_or_n_p): Echo the answer just once, at exit.
Richard M. Stallman <rms@gnu.org>
parents:
2429
diff
changeset
|
1227 if (! noninteractive) |
6cf2344e6e7e
(Fy_or_n_p): Echo the answer just once, at exit.
Richard M. Stallman <rms@gnu.org>
parents:
2429
diff
changeset
|
1228 { |
6cf2344e6e7e
(Fy_or_n_p): Echo the answer just once, at exit.
Richard M. Stallman <rms@gnu.org>
parents:
2429
diff
changeset
|
1229 cursor_in_echo_area = -1; |
6cf2344e6e7e
(Fy_or_n_p): Echo the answer just once, at exit.
Richard M. Stallman <rms@gnu.org>
parents:
2429
diff
changeset
|
1230 message ("%s(y or n) %c", XSTRING (xprompt)->data, answer ? 'y' : 'n'); |
6cf2344e6e7e
(Fy_or_n_p): Echo the answer just once, at exit.
Richard M. Stallman <rms@gnu.org>
parents:
2429
diff
changeset
|
1231 cursor_in_echo_area = ocech; |
6cf2344e6e7e
(Fy_or_n_p): Echo the answer just once, at exit.
Richard M. Stallman <rms@gnu.org>
parents:
2429
diff
changeset
|
1232 } |
2171
4fbceca13b22
* fns.c (Fy_or_n_p): Display the answer.
Jim Blandy <jimb@redhat.com>
parents:
2091
diff
changeset
|
1233 |
2091
eedbad26e34c
(Fy_or_n_p): Use query-replace-map.
Richard M. Stallman <rms@gnu.org>
parents:
1919
diff
changeset
|
1234 return answer ? Qt : Qnil; |
211 | 1235 } |
1236 | |
1237 /* This is how C code calls `yes-or-no-p' and allows the user | |
1238 to redefined it. | |
1239 | |
1240 Anything that calls this function must protect from GC! */ | |
1241 | |
1242 Lisp_Object | |
1243 do_yes_or_no_p (prompt) | |
1244 Lisp_Object prompt; | |
1245 { | |
1246 return call1 (intern ("yes-or-no-p"), prompt); | |
1247 } | |
1248 | |
1249 /* Anything that calls this function must protect from GC! */ | |
1250 | |
1251 DEFUN ("yes-or-no-p", Fyes_or_no_p, Syes_or_no_p, 1, 1, 0, | |
759
58b7fc91b74a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
727
diff
changeset
|
1252 "Ask user a yes-or-no question. Return t if answer is yes.\n\ |
58b7fc91b74a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
727
diff
changeset
|
1253 Takes one argument, which is the string to display to ask the question.\n\ |
58b7fc91b74a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
727
diff
changeset
|
1254 It should end in a space; `yes-or-no-p' adds `(yes or no) ' to it.\n\ |
58b7fc91b74a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
727
diff
changeset
|
1255 The user must confirm the answer with RET,\n\ |
58b7fc91b74a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
727
diff
changeset
|
1256 and can edit it until it as been confirmed.") |
211 | 1257 (prompt) |
1258 Lisp_Object prompt; | |
1259 { | |
1260 register Lisp_Object ans; | |
1261 Lisp_Object args[2]; | |
1262 struct gcpro gcpro1; | |
6057
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1263 Lisp_Object menu; |
211 | 1264 |
1265 CHECK_STRING (prompt, 0); | |
1266 | |
6850
d2d8b40fb599
(Fy_or_n_p, Fyes_or_no_p): Test HAVE_X_MENU.
Karl Heuer <kwzh@gnu.org>
parents:
6478
diff
changeset
|
1267 #ifdef HAVE_X_MENU |
7790
75153e2d5d85
(Fy_or_n_p): Don't use dialog box if not an X frame.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1268 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event)) |
75153e2d5d85
(Fy_or_n_p): Don't use dialog box if not an X frame.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1269 && using_x_p ()) |
6057
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1270 { |
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1271 Lisp_Object pane, menu, obj; |
7815
5d167db8ce8a
(Fy_or_n_p, Fyes_or_no_p) [HAVE_X_MENU]: Redisplay before popping up a menu.
Karl Heuer <kwzh@gnu.org>
parents:
7790
diff
changeset
|
1272 redisplay_preserve_echo_area (); |
6057
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1273 pane = Fcons (Fcons (build_string ("Yes"), Qt), |
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1274 Fcons (Fcons (build_string ("No"), Qnil), |
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1275 Qnil)); |
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1276 GCPRO1 (pane); |
6478
65c2e184b5d9
(Fy_or_n_p, Fyes_or_no_p): Call Fx_popup_dialog the new way.
Richard M. Stallman <rms@gnu.org>
parents:
6427
diff
changeset
|
1277 menu = Fcons (prompt, pane); |
6344 | 1278 obj = Fx_popup_dialog (Qt, menu); |
6057
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1279 UNGCPRO; |
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1280 return obj; |
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1281 } |
6850
d2d8b40fb599
(Fy_or_n_p, Fyes_or_no_p): Test HAVE_X_MENU.
Karl Heuer <kwzh@gnu.org>
parents:
6478
diff
changeset
|
1282 #endif |
6057
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1283 |
211 | 1284 args[0] = prompt; |
1285 args[1] = build_string ("(yes or no) "); | |
1286 prompt = Fconcat (2, args); | |
1287 | |
1288 GCPRO1 (prompt); | |
6057
b2cc63a56415
(Fy_or_n_p): Use a popup menu if reached via mouse command.
Richard M. Stallman <rms@gnu.org>
parents:
5664
diff
changeset
|
1289 |
211 | 1290 while (1) |
1291 { | |
4456
cbfcf187b5da
(Fyes_or_no_p): Use Qyes_or_no_p_history.
Richard M. Stallman <rms@gnu.org>
parents:
4004
diff
changeset
|
1292 ans = Fdowncase (Fread_from_minibuffer (prompt, Qnil, Qnil, Qnil, |
cbfcf187b5da
(Fyes_or_no_p): Use Qyes_or_no_p_history.
Richard M. Stallman <rms@gnu.org>
parents:
4004
diff
changeset
|
1293 Qyes_or_no_p_history)); |
211 | 1294 if (XSTRING (ans)->size == 3 && !strcmp (XSTRING (ans)->data, "yes")) |
1295 { | |
1296 UNGCPRO; | |
1297 return Qt; | |
1298 } | |
1299 if (XSTRING (ans)->size == 2 && !strcmp (XSTRING (ans)->data, "no")) | |
1300 { | |
1301 UNGCPRO; | |
1302 return Qnil; | |
1303 } | |
1304 | |
1305 Fding (Qnil); | |
1306 Fdiscard_input (); | |
1307 message ("Please answer yes or no."); | |
1045
2ac1c701fced
* fns.c (Fyes_or_no_p): Call Fsleep_for with the appropriate
Jim Blandy <jimb@redhat.com>
parents:
1037
diff
changeset
|
1308 Fsleep_for (make_number (2), Qnil); |
211 | 1309 } |
1310 } | |
1311 | |
1312 DEFUN ("load-average", Fload_average, Sload_average, 0, 0, 0, | |
1313 "Return list of 1 minute, 5 minute and 15 minute load averages.\n\ | |
1314 Each of the three load averages is multiplied by 100,\n\ | |
727 | 1315 then converted to integer.\n\ |
1316 If the 5-minute or 15-minute load averages are not available, return a\n\ | |
1317 shortened list, containing only those averages which are available.") | |
211 | 1318 () |
1319 { | |
727 | 1320 double load_ave[3]; |
1321 int loads = getloadavg (load_ave, 3); | |
1322 Lisp_Object ret; | |
211 | 1323 |
727 | 1324 if (loads < 0) |
1325 error ("load-average not implemented for this operating system"); | |
211 | 1326 |
727 | 1327 ret = Qnil; |
1328 while (loads > 0) | |
1329 ret = Fcons (make_number ((int) (load_ave[--loads] * 100.0)), ret); | |
211 | 1330 |
727 | 1331 return ret; |
211 | 1332 } |
1333 | |
1334 Lisp_Object Vfeatures; | |
1335 | |
1336 DEFUN ("featurep", Ffeaturep, Sfeaturep, 1, 1, 0, | |
1337 "Returns t if FEATURE is present in this Emacs.\n\ | |
1338 Use this to conditionalize execution of lisp code based on the presence or\n\ | |
1339 absence of emacs or environment extensions.\n\ | |
1340 Use `provide' to declare that a feature is available.\n\ | |
1341 This function looks at the value of the variable `features'.") | |
1342 (feature) | |
1343 Lisp_Object feature; | |
1344 { | |
1345 register Lisp_Object tem; | |
1346 CHECK_SYMBOL (feature, 0); | |
1347 tem = Fmemq (feature, Vfeatures); | |
485 | 1348 return (NILP (tem)) ? Qnil : Qt; |
211 | 1349 } |
1350 | |
1351 DEFUN ("provide", Fprovide, Sprovide, 1, 1, 0, | |
1352 "Announce that FEATURE is a feature of the current Emacs.") | |
1353 (feature) | |
1354 Lisp_Object feature; | |
1355 { | |
1356 register Lisp_Object tem; | |
1357 CHECK_SYMBOL (feature, 0); | |
485 | 1358 if (!NILP (Vautoload_queue)) |
211 | 1359 Vautoload_queue = Fcons (Fcons (Vfeatures, Qnil), Vautoload_queue); |
1360 tem = Fmemq (feature, Vfeatures); | |
485 | 1361 if (NILP (tem)) |
211 | 1362 Vfeatures = Fcons (feature, Vfeatures); |
2546
c8cd694d70eb
(provide, require): Put appropriately-marked
Richard M. Stallman <rms@gnu.org>
parents:
2525
diff
changeset
|
1363 LOADHIST_ATTACH (Fcons (Qprovide, feature)); |
211 | 1364 return feature; |
1365 } | |
1366 | |
1367 DEFUN ("require", Frequire, Srequire, 1, 2, 0, | |
1368 "If feature FEATURE is not loaded, load it from FILENAME.\n\ | |
1369 If FEATURE is not a member of the list `features', then the feature\n\ | |
1370 is not loaded; so load the file FILENAME.\n\ | |
1371 If FILENAME is omitted, the printname of FEATURE is used as the file name.") | |
1372 (feature, file_name) | |
1373 Lisp_Object feature, file_name; | |
1374 { | |
1375 register Lisp_Object tem; | |
1376 CHECK_SYMBOL (feature, 0); | |
1377 tem = Fmemq (feature, Vfeatures); | |
2546
c8cd694d70eb
(provide, require): Put appropriately-marked
Richard M. Stallman <rms@gnu.org>
parents:
2525
diff
changeset
|
1378 LOADHIST_ATTACH (Fcons (Qrequire, feature)); |
485 | 1379 if (NILP (tem)) |
211 | 1380 { |
1381 int count = specpdl_ptr - specpdl; | |
1382 | |
1383 /* Value saved here is to be restored into Vautoload_queue */ | |
1384 record_unwind_protect (un_autoload, Vautoload_queue); | |
1385 Vautoload_queue = Qt; | |
1386 | |
485 | 1387 Fload (NILP (file_name) ? Fsymbol_name (feature) : file_name, |
211 | 1388 Qnil, Qt, Qnil); |
1389 | |
1390 tem = Fmemq (feature, Vfeatures); | |
485 | 1391 if (NILP (tem)) |
211 | 1392 error ("Required feature %s was not provided", |
1393 XSYMBOL (feature)->name->data ); | |
1394 | |
1395 /* Once loading finishes, don't undo it. */ | |
1396 Vautoload_queue = Qt; | |
1397 feature = unbind_to (count, feature); | |
1398 } | |
1399 return feature; | |
1400 } | |
1401 | |
1402 syms_of_fns () | |
1403 { | |
1404 Qstring_lessp = intern ("string-lessp"); | |
1405 staticpro (&Qstring_lessp); | |
2546
c8cd694d70eb
(provide, require): Put appropriately-marked
Richard M. Stallman <rms@gnu.org>
parents:
2525
diff
changeset
|
1406 Qprovide = intern ("provide"); |
c8cd694d70eb
(provide, require): Put appropriately-marked
Richard M. Stallman <rms@gnu.org>
parents:
2525
diff
changeset
|
1407 staticpro (&Qprovide); |
c8cd694d70eb
(provide, require): Put appropriately-marked
Richard M. Stallman <rms@gnu.org>
parents:
2525
diff
changeset
|
1408 Qrequire = intern ("require"); |
c8cd694d70eb
(provide, require): Put appropriately-marked
Richard M. Stallman <rms@gnu.org>
parents:
2525
diff
changeset
|
1409 staticpro (&Qrequire); |
4456
cbfcf187b5da
(Fyes_or_no_p): Use Qyes_or_no_p_history.
Richard M. Stallman <rms@gnu.org>
parents:
4004
diff
changeset
|
1410 Qyes_or_no_p_history = intern ("yes-or-no-p-history"); |
cbfcf187b5da
(Fyes_or_no_p): Use Qyes_or_no_p_history.
Richard M. Stallman <rms@gnu.org>
parents:
4004
diff
changeset
|
1411 staticpro (&Qyes_or_no_p_history); |
211 | 1412 |
1413 DEFVAR_LISP ("features", &Vfeatures, | |
1414 "A list of symbols which are the features of the executing emacs.\n\ | |
1415 Used by `featurep' and `require', and altered by `provide'."); | |
1416 Vfeatures = Qnil; | |
1417 | |
1418 defsubr (&Sidentity); | |
1419 defsubr (&Srandom); | |
1420 defsubr (&Slength); | |
1421 defsubr (&Sstring_equal); | |
1422 defsubr (&Sstring_lessp); | |
1423 defsubr (&Sappend); | |
1424 defsubr (&Sconcat); | |
1425 defsubr (&Svconcat); | |
1426 defsubr (&Scopy_sequence); | |
1427 defsubr (&Scopy_alist); | |
1428 defsubr (&Ssubstring); | |
1429 defsubr (&Snthcdr); | |
1430 defsubr (&Snth); | |
1431 defsubr (&Selt); | |
1432 defsubr (&Smember); | |
1433 defsubr (&Smemq); | |
1434 defsubr (&Sassq); | |
1435 defsubr (&Sassoc); | |
1436 defsubr (&Srassq); | |
1437 defsubr (&Sdelq); | |
414 | 1438 defsubr (&Sdelete); |
211 | 1439 defsubr (&Snreverse); |
1440 defsubr (&Sreverse); | |
1441 defsubr (&Ssort); | |
1442 defsubr (&Sget); | |
1443 defsubr (&Sput); | |
1444 defsubr (&Sequal); | |
1445 defsubr (&Sfillarray); | |
1446 defsubr (&Snconc); | |
1447 defsubr (&Smapcar); | |
1448 defsubr (&Smapconcat); | |
1449 defsubr (&Sy_or_n_p); | |
1450 defsubr (&Syes_or_no_p); | |
1451 defsubr (&Sload_average); | |
1452 defsubr (&Sfeaturep); | |
1453 defsubr (&Srequire); | |
1454 defsubr (&Sprovide); | |
1455 } |