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