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