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