(NUM_MOUSE_BUTTONS): Define.
[bpt/emacs.git] / src / fns.c
CommitLineData
7b863bd5 1/* Random utility Lisp functions.
0c6ca44b 2 Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 98, 1999 Free Software Foundation, Inc.
7b863bd5
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
4ff1aed9 8the Free Software Foundation; either version 2, or (at your option)
7b863bd5
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
7b863bd5
JB
20
21
18160b98 22#include <config.h>
7b863bd5 23
dfcf069d
AS
24#ifdef HAVE_UNISTD_H
25#include <unistd.h>
26#endif
58edb572 27#include <time.h>
dfcf069d 28
7b863bd5
JB
29/* Note on some machines this defines `vector' as a typedef,
30 so make sure we don't use that name in this file. */
31#undef vector
32#define vector *****
33
7b863bd5
JB
34#include "lisp.h"
35#include "commands.h"
a8283a4a 36#include "charset.h"
7b863bd5 37
7b863bd5 38#include "buffer.h"
f812877e 39#include "keyboard.h"
ac811a55 40#include "intervals.h"
2d8e7e1f
RS
41#include "frame.h"
42#include "window.h"
d73c6532 43#if defined (HAVE_MENUS) && defined (HAVE_X_WINDOWS)
dfcf069d
AS
44#include "xterm.h"
45#endif
7b863bd5 46
bc937db7
KH
47#ifndef NULL
48#define NULL (void *)0
49#endif
50
d80c6c11
GM
51#ifndef min
52#define min(a, b) ((a) < (b) ? (a) : (b))
53#define max(a, b) ((a) > (b) ? (a) : (b))
54#endif
55
bdd8d692
RS
56/* Nonzero enables use of dialog boxes for questions
57 asked by mouse commands. */
58int use_dialog_box;
59
2d8e7e1f
RS
60extern int minibuffer_auto_raise;
61extern Lisp_Object minibuf_window;
62
68732608 63Lisp_Object Qstring_lessp, Qprovide, Qrequire;
0ce830bc 64Lisp_Object Qyes_or_no_p_history;
eb4ffa4e 65Lisp_Object Qcursor_in_echo_area;
b4f334f7 66Lisp_Object Qwidget_type;
7b863bd5 67
3844ee44
RS
68extern Lisp_Object Qinput_method_function;
69
6cb9cafb 70static int internal_equal ();
49bdcd3e
RS
71
72extern long get_random ();
73extern void seed_random ();
74
75#ifndef HAVE_UNISTD_H
76extern long time ();
77#endif
e0f5cf5a 78\f
7b863bd5
JB
79DEFUN ("identity", Fidentity, Sidentity, 1, 1, 0,
80 "Return the argument unchanged.")
81 (arg)
82 Lisp_Object arg;
83{
84 return arg;
85}
86
87DEFUN ("random", Frandom, Srandom, 0, 1, 0,
88 "Return a pseudo-random number.\n\
4cab5074
KH
89All integers representable in Lisp are equally likely.\n\
90 On most systems, this is 28 bits' worth.\n\
99175c23 91With positive integer argument N, return random number in interval [0,N).\n\
7b863bd5 92With argument t, set the random number seed from the current time and pid.")
88fe8140
EN
93 (n)
94 Lisp_Object n;
7b863bd5 95{
e2d6972a
KH
96 EMACS_INT val;
97 Lisp_Object lispy_val;
78217ef1 98 unsigned long denominator;
7b863bd5 99
88fe8140 100 if (EQ (n, Qt))
e2d6972a 101 seed_random (getpid () + time (NULL));
88fe8140 102 if (NATNUMP (n) && XFASTINT (n) != 0)
7b863bd5 103 {
4cab5074
KH
104 /* Try to take our random number from the higher bits of VAL,
105 not the lower, since (says Gentzel) the low bits of `random'
106 are less random than the higher ones. We do this by using the
107 quotient rather than the remainder. At the high end of the RNG
88fe8140 108 it's possible to get a quotient larger than n; discarding
4cab5074 109 these values eliminates the bias that would otherwise appear
88fe8140
EN
110 when using a large n. */
111 denominator = ((unsigned long)1 << VALBITS) / XFASTINT (n);
4cab5074 112 do
99175c23 113 val = get_random () / denominator;
88fe8140 114 while (val >= XFASTINT (n));
7b863bd5 115 }
78217ef1 116 else
99175c23 117 val = get_random ();
e2d6972a
KH
118 XSETINT (lispy_val, val);
119 return lispy_val;
7b863bd5
JB
120}
121\f
122/* Random data-structure functions */
123
124DEFUN ("length", Flength, Slength, 1, 1, 0,
125 "Return the length of vector, list or string SEQUENCE.\n\
0c57d6fd
RS
126A byte-code function object is also allowed.\n\
127If the string contains multibyte characters, this is not the necessarily\n\
96ced23c
AS
128the number of bytes in the string; it is the number of characters.\n\
129To get the number of bytes, use `string-bytes'")
88fe8140
EN
130 (sequence)
131 register Lisp_Object sequence;
7b863bd5
JB
132{
133 register Lisp_Object tail, val;
134 register int i;
135
136 retry:
88fe8140
EN
137 if (STRINGP (sequence))
138 XSETFASTINT (val, XSTRING (sequence)->size);
139 else if (VECTORP (sequence))
140 XSETFASTINT (val, XVECTOR (sequence)->size);
141 else if (CHAR_TABLE_P (sequence))
64a5094a 142 XSETFASTINT (val, MAX_CHAR);
88fe8140
EN
143 else if (BOOL_VECTOR_P (sequence))
144 XSETFASTINT (val, XBOOL_VECTOR (sequence)->size);
145 else if (COMPILEDP (sequence))
146 XSETFASTINT (val, XVECTOR (sequence)->size & PSEUDOVECTOR_SIZE_MASK);
147 else if (CONSP (sequence))
7b863bd5 148 {
7843e09c
GM
149 i = 0;
150 while (CONSP (sequence))
7b863bd5 151 {
f2be3671 152 sequence = XCDR (sequence);
7843e09c
GM
153 ++i;
154
155 if (!CONSP (sequence))
156 break;
157
158 sequence = XCDR (sequence);
159 ++i;
160 QUIT;
7b863bd5
JB
161 }
162
f2be3671
GM
163 if (!NILP (sequence))
164 wrong_type_argument (Qlistp, sequence);
165
166 val = make_number (i);
7b863bd5 167 }
88fe8140 168 else if (NILP (sequence))
a2ad3e19 169 XSETFASTINT (val, 0);
7b863bd5
JB
170 else
171 {
88fe8140 172 sequence = wrong_type_argument (Qsequencep, sequence);
7b863bd5
JB
173 goto retry;
174 }
a2ad3e19 175 return val;
7b863bd5
JB
176}
177
5a30fab8
RS
178/* This does not check for quits. That is safe
179 since it must terminate. */
180
181DEFUN ("safe-length", Fsafe_length, Ssafe_length, 1, 1, 0,
182 "Return the length of a list, but avoid error or infinite loop.\n\
183This function never gets an error. If LIST is not really a list,\n\
184it returns 0. If LIST is circular, it returns a finite value\n\
185which is at least the number of distinct elements.")
b4f334f7 186 (list)
5a30fab8
RS
187 Lisp_Object list;
188{
189 Lisp_Object tail, halftail, length;
190 int len = 0;
191
192 /* halftail is used to detect circular lists. */
193 halftail = list;
70949dac 194 for (tail = list; CONSP (tail); tail = XCDR (tail))
5a30fab8
RS
195 {
196 if (EQ (tail, halftail) && len != 0)
cb3d1a0a 197 break;
5a30fab8 198 len++;
3a61aeb4 199 if ((len & 1) == 0)
70949dac 200 halftail = XCDR (halftail);
5a30fab8
RS
201 }
202
203 XSETINT (length, len);
204 return length;
205}
206
026f59ce
RS
207DEFUN ("string-bytes", Fstring_bytes, Sstring_bytes, 1, 1, 0,
208 "Return the number of bytes in STRING.\n\
209If STRING is a multibyte string, this is greater than the length of STRING.")
210 (string)
eaf17c6b 211 Lisp_Object string;
026f59ce
RS
212{
213 CHECK_STRING (string, 1);
fc932ac6 214 return make_number (STRING_BYTES (XSTRING (string)));
026f59ce
RS
215}
216
7b863bd5 217DEFUN ("string-equal", Fstring_equal, Sstring_equal, 2, 2, 0,
ea35ce3d 218 "Return t if two strings have identical contents.\n\
76d0f732 219Case is significant, but text properties are ignored.\n\
7b863bd5
JB
220Symbols are also allowed; their print names are used instead.")
221 (s1, s2)
222 register Lisp_Object s1, s2;
223{
7650760e 224 if (SYMBOLP (s1))
b2791413 225 XSETSTRING (s1, XSYMBOL (s1)->name);
7650760e 226 if (SYMBOLP (s2))
b2791413 227 XSETSTRING (s2, XSYMBOL (s2)->name);
7b863bd5
JB
228 CHECK_STRING (s1, 0);
229 CHECK_STRING (s2, 1);
230
ea35ce3d 231 if (XSTRING (s1)->size != XSTRING (s2)->size
fc932ac6
RS
232 || STRING_BYTES (XSTRING (s1)) != STRING_BYTES (XSTRING (s2))
233 || bcmp (XSTRING (s1)->data, XSTRING (s2)->data, STRING_BYTES (XSTRING (s1))))
7b863bd5
JB
234 return Qnil;
235 return Qt;
236}
237
0e1e9f8d 238DEFUN ("compare-strings", Fcompare_strings,
f95837d0 239 Scompare_strings, 6, 7, 0,
0e1e9f8d
RS
240 "Compare the contents of two strings, converting to multibyte if needed.\n\
241In string STR1, skip the first START1 characters and stop at END1.\n\
242In string STR2, skip the first START2 characters and stop at END2.\n\
d68cc14c
RS
243END1 and END2 default to the full lengths of the respective strings.\n\
244\n\
0e1e9f8d
RS
245Case is significant in this comparison if IGNORE-CASE is nil.\n\
246Unibyte strings are converted to multibyte for comparison.\n\
247\n\
248The value is t if the strings (or specified portions) match.\n\
249If string STR1 is less, the value is a negative number N;\n\
250 - 1 - N is the number of characters that match at the beginning.\n\
251If string STR1 is greater, the value is a positive number N;\n\
252 N - 1 is the number of characters that match at the beginning.")
253 (str1, start1, end1, str2, start2, end2, ignore_case)
254 Lisp_Object str1, start1, end1, start2, str2, end2, ignore_case;
255{
256 register int end1_char, end2_char;
257 register int i1, i1_byte, i2, i2_byte;
258
259 CHECK_STRING (str1, 0);
260 CHECK_STRING (str2, 1);
261 if (NILP (start1))
262 start1 = make_number (0);
263 if (NILP (start2))
264 start2 = make_number (0);
265 CHECK_NATNUM (start1, 2);
266 CHECK_NATNUM (start2, 3);
267 if (! NILP (end1))
268 CHECK_NATNUM (end1, 4);
269 if (! NILP (end2))
270 CHECK_NATNUM (end2, 4);
271
272 i1 = XINT (start1);
273 i2 = XINT (start2);
274
275 i1_byte = string_char_to_byte (str1, i1);
276 i2_byte = string_char_to_byte (str2, i2);
277
278 end1_char = XSTRING (str1)->size;
279 if (! NILP (end1) && end1_char > XINT (end1))
280 end1_char = XINT (end1);
281
282 end2_char = XSTRING (str2)->size;
283 if (! NILP (end2) && end2_char > XINT (end2))
284 end2_char = XINT (end2);
285
286 while (i1 < end1_char && i2 < end2_char)
287 {
288 /* When we find a mismatch, we must compare the
289 characters, not just the bytes. */
290 int c1, c2;
291
292 if (STRING_MULTIBYTE (str1))
293 FETCH_STRING_CHAR_ADVANCE (c1, str1, i1, i1_byte);
294 else
295 {
296 c1 = XSTRING (str1)->data[i1++];
297 c1 = unibyte_char_to_multibyte (c1);
298 }
299
300 if (STRING_MULTIBYTE (str2))
301 FETCH_STRING_CHAR_ADVANCE (c2, str2, i2, i2_byte);
302 else
303 {
304 c2 = XSTRING (str2)->data[i2++];
305 c2 = unibyte_char_to_multibyte (c2);
306 }
307
308 if (c1 == c2)
309 continue;
310
311 if (! NILP (ignore_case))
312 {
313 Lisp_Object tem;
314
315 tem = Fupcase (make_number (c1));
316 c1 = XINT (tem);
317 tem = Fupcase (make_number (c2));
318 c2 = XINT (tem);
319 }
320
321 if (c1 == c2)
322 continue;
323
324 /* Note that I1 has already been incremented
325 past the character that we are comparing;
326 hence we don't add or subtract 1 here. */
327 if (c1 < c2)
328 return make_number (- i1);
329 else
330 return make_number (i1);
331 }
332
333 if (i1 < end1_char)
334 return make_number (i1 - XINT (start1) + 1);
335 if (i2 < end2_char)
336 return make_number (- i1 + XINT (start1) - 1);
337
338 return Qt;
339}
340
7b863bd5 341DEFUN ("string-lessp", Fstring_lessp, Sstring_lessp, 2, 2, 0,
ea35ce3d 342 "Return t if first arg string is less than second in lexicographic order.\n\
7b863bd5
JB
343Case is significant.\n\
344Symbols are also allowed; their print names are used instead.")
345 (s1, s2)
346 register Lisp_Object s1, s2;
347{
7b863bd5 348 register int end;
09ab3c3b 349 register int i1, i1_byte, i2, i2_byte;
7b863bd5 350
7650760e 351 if (SYMBOLP (s1))
b2791413 352 XSETSTRING (s1, XSYMBOL (s1)->name);
7650760e 353 if (SYMBOLP (s2))
b2791413 354 XSETSTRING (s2, XSYMBOL (s2)->name);
7b863bd5
JB
355 CHECK_STRING (s1, 0);
356 CHECK_STRING (s2, 1);
357
09ab3c3b
KH
358 i1 = i1_byte = i2 = i2_byte = 0;
359
360 end = XSTRING (s1)->size;
361 if (end > XSTRING (s2)->size)
362 end = XSTRING (s2)->size;
7b863bd5 363
09ab3c3b 364 while (i1 < end)
7b863bd5 365 {
09ab3c3b
KH
366 /* When we find a mismatch, we must compare the
367 characters, not just the bytes. */
368 int c1, c2;
369
370 if (STRING_MULTIBYTE (s1))
371 FETCH_STRING_CHAR_ADVANCE (c1, s1, i1, i1_byte);
372 else
373 c1 = XSTRING (s1)->data[i1++];
374
375 if (STRING_MULTIBYTE (s2))
376 FETCH_STRING_CHAR_ADVANCE (c2, s2, i2, i2_byte);
377 else
378 c2 = XSTRING (s2)->data[i2++];
379
380 if (c1 != c2)
381 return c1 < c2 ? Qt : Qnil;
7b863bd5 382 }
09ab3c3b 383 return i1 < XSTRING (s2)->size ? Qt : Qnil;
7b863bd5
JB
384}
385\f
386static Lisp_Object concat ();
387
388/* ARGSUSED */
389Lisp_Object
390concat2 (s1, s2)
391 Lisp_Object s1, s2;
392{
393#ifdef NO_ARG_ARRAY
394 Lisp_Object args[2];
395 args[0] = s1;
396 args[1] = s2;
397 return concat (2, args, Lisp_String, 0);
398#else
399 return concat (2, &s1, Lisp_String, 0);
400#endif /* NO_ARG_ARRAY */
401}
402
d4af3687
RS
403/* ARGSUSED */
404Lisp_Object
405concat3 (s1, s2, s3)
406 Lisp_Object s1, s2, s3;
407{
408#ifdef NO_ARG_ARRAY
409 Lisp_Object args[3];
410 args[0] = s1;
411 args[1] = s2;
412 args[2] = s3;
413 return concat (3, args, Lisp_String, 0);
414#else
415 return concat (3, &s1, Lisp_String, 0);
416#endif /* NO_ARG_ARRAY */
417}
418
7b863bd5
JB
419DEFUN ("append", Fappend, Sappend, 0, MANY, 0,
420 "Concatenate all the arguments and make the result a list.\n\
421The result is a list whose elements are the elements of all the arguments.\n\
422Each argument may be a list, vector or string.\n\
aec1184c 423The last argument is not copied, just used as the tail of the new list.")
7b863bd5
JB
424 (nargs, args)
425 int nargs;
426 Lisp_Object *args;
427{
428 return concat (nargs, args, Lisp_Cons, 1);
429}
430
431DEFUN ("concat", Fconcat, Sconcat, 0, MANY, 0,
432 "Concatenate all the arguments and make the result a string.\n\
433The result is a string whose elements are the elements of all the arguments.\n\
37d40ae9
RS
434Each argument may be a string or a list or vector of characters (integers).\n\
435\n\
436Do not use individual integers as arguments!\n\
437The behavior of `concat' in that case will be changed later!\n\
438If your program passes an integer as an argument to `concat',\n\
439you should change it right away not to do so.")
7b863bd5
JB
440 (nargs, args)
441 int nargs;
442 Lisp_Object *args;
443{
444 return concat (nargs, args, Lisp_String, 0);
445}
446
447DEFUN ("vconcat", Fvconcat, Svconcat, 0, MANY, 0,
448 "Concatenate all the arguments and make the result a vector.\n\
449The result is a vector whose elements are the elements of all the arguments.\n\
450Each argument may be a list, vector or string.")
451 (nargs, args)
452 int nargs;
453 Lisp_Object *args;
454{
3e7383eb 455 return concat (nargs, args, Lisp_Vectorlike, 0);
7b863bd5
JB
456}
457
3720677d
KH
458/* Retrun a copy of a sub char table ARG. The elements except for a
459 nested sub char table are not copied. */
460static Lisp_Object
461copy_sub_char_table (arg)
e1335ba2 462 Lisp_Object arg;
3720677d
KH
463{
464 Lisp_Object copy = make_sub_char_table (XCHAR_TABLE (arg)->defalt);
465 int i;
466
467 /* Copy all the contents. */
468 bcopy (XCHAR_TABLE (arg)->contents, XCHAR_TABLE (copy)->contents,
469 SUB_CHAR_TABLE_ORDINARY_SLOTS * sizeof (Lisp_Object));
470 /* Recursively copy any sub char-tables in the ordinary slots. */
471 for (i = 32; i < SUB_CHAR_TABLE_ORDINARY_SLOTS; i++)
472 if (SUB_CHAR_TABLE_P (XCHAR_TABLE (arg)->contents[i]))
473 XCHAR_TABLE (copy)->contents[i]
474 = copy_sub_char_table (XCHAR_TABLE (copy)->contents[i]);
475
476 return copy;
477}
478
479
7b863bd5
JB
480DEFUN ("copy-sequence", Fcopy_sequence, Scopy_sequence, 1, 1, 0,
481 "Return a copy of a list, vector or string.\n\
482The elements of a list or vector are not copied; they are shared\n\
483with the original.")
484 (arg)
485 Lisp_Object arg;
486{
265a9e55 487 if (NILP (arg)) return arg;
e03f7933
RS
488
489 if (CHAR_TABLE_P (arg))
490 {
25c30748 491 int i;
e03f7933
RS
492 Lisp_Object copy;
493
c8640abf 494 copy = Fmake_char_table (XCHAR_TABLE (arg)->purpose, Qnil);
e03f7933 495 /* Copy all the slots, including the extra ones. */
69b3a14b 496 bcopy (XVECTOR (arg)->contents, XVECTOR (copy)->contents,
25c30748
KH
497 ((XCHAR_TABLE (arg)->size & PSEUDOVECTOR_SIZE_MASK)
498 * sizeof (Lisp_Object)));
e03f7933 499
3720677d
KH
500 /* Recursively copy any sub char tables in the ordinary slots
501 for multibyte characters. */
502 for (i = CHAR_TABLE_SINGLE_BYTE_SLOTS;
503 i < CHAR_TABLE_ORDINARY_SLOTS; i++)
504 if (SUB_CHAR_TABLE_P (XCHAR_TABLE (arg)->contents[i]))
e03f7933 505 XCHAR_TABLE (copy)->contents[i]
3720677d 506 = copy_sub_char_table (XCHAR_TABLE (copy)->contents[i]);
e03f7933
RS
507
508 return copy;
509 }
510
511 if (BOOL_VECTOR_P (arg))
512 {
513 Lisp_Object val;
e03f7933 514 int size_in_chars
e22e4283 515 = (XBOOL_VECTOR (arg)->size + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
e03f7933
RS
516
517 val = Fmake_bool_vector (Flength (arg), Qnil);
518 bcopy (XBOOL_VECTOR (arg)->data, XBOOL_VECTOR (val)->data,
519 size_in_chars);
520 return val;
521 }
522
7650760e 523 if (!CONSP (arg) && !VECTORP (arg) && !STRINGP (arg))
7b863bd5
JB
524 arg = wrong_type_argument (Qsequencep, arg);
525 return concat (1, &arg, CONSP (arg) ? Lisp_Cons : XTYPE (arg), 0);
526}
527
2d6115c8
KH
528/* In string STR of length LEN, see if bytes before STR[I] combine
529 with bytes after STR[I] to form a single character. If so, return
530 the number of bytes after STR[I] which combine in this way.
531 Otherwize, return 0. */
532
533static int
534count_combining (str, len, i)
535 unsigned char *str;
536 int len, i;
537{
e50d9192 538 int j = i - 1, bytes;
2d6115c8
KH
539
540 if (i == 0 || i == len || CHAR_HEAD_P (str[i]))
541 return 0;
542 while (j >= 0 && !CHAR_HEAD_P (str[j])) j--;
543 if (j < 0 || ! BASE_LEADING_CODE_P (str[j]))
544 return 0;
e50d9192
KH
545 PARSE_MULTIBYTE_SEQ (str + j, len - j, bytes);
546 return (bytes <= i - j ? 0 : bytes - (i - j));
2d6115c8
KH
547}
548
549/* This structure holds information of an argument of `concat' that is
550 a string and has text properties to be copied. */
87f0532f 551struct textprop_rec
2d6115c8
KH
552{
553 int argnum; /* refer to ARGS (arguments of `concat') */
554 int from; /* refer to ARGS[argnum] (argument string) */
555 int to; /* refer to VAL (the target string) */
556};
557
7b863bd5
JB
558static Lisp_Object
559concat (nargs, args, target_type, last_special)
560 int nargs;
561 Lisp_Object *args;
562 enum Lisp_Type target_type;
563 int last_special;
564{
565 Lisp_Object val;
7b863bd5
JB
566 register Lisp_Object tail;
567 register Lisp_Object this;
568 int toindex;
ea35ce3d
RS
569 int toindex_byte;
570 register int result_len;
571 register int result_len_byte;
7b863bd5
JB
572 register int argnum;
573 Lisp_Object last_tail;
574 Lisp_Object prev;
ea35ce3d 575 int some_multibyte;
2d6115c8
KH
576 /* When we make a multibyte string, we can't copy text properties
577 while concatinating each string because the length of resulting
578 string can't be decided until we finish the whole concatination.
579 So, we record strings that have text properties to be copied
580 here, and copy the text properties after the concatination. */
87f0532f
KH
581 struct textprop_rec *textprops;
582 /* Number of elments in textprops. */
583 int num_textprops = 0;
7b863bd5
JB
584
585 /* In append, the last arg isn't treated like the others */
586 if (last_special && nargs > 0)
587 {
588 nargs--;
589 last_tail = args[nargs];
590 }
591 else
592 last_tail = Qnil;
593
ea35ce3d 594 /* Canonicalize each argument. */
7b863bd5
JB
595 for (argnum = 0; argnum < nargs; argnum++)
596 {
597 this = args[argnum];
7650760e 598 if (!(CONSP (this) || NILP (this) || VECTORP (this) || STRINGP (this)
e03f7933 599 || COMPILEDP (this) || BOOL_VECTOR_P (this)))
7b863bd5 600 {
7650760e 601 if (INTEGERP (this))
37d40ae9 602 args[argnum] = Fnumber_to_string (this);
7b863bd5
JB
603 else
604 args[argnum] = wrong_type_argument (Qsequencep, this);
605 }
606 }
607
ea35ce3d
RS
608 /* Compute total length in chars of arguments in RESULT_LEN.
609 If desired output is a string, also compute length in bytes
610 in RESULT_LEN_BYTE, and determine in SOME_MULTIBYTE
611 whether the result should be a multibyte string. */
612 result_len_byte = 0;
613 result_len = 0;
614 some_multibyte = 0;
615 for (argnum = 0; argnum < nargs; argnum++)
7b863bd5 616 {
ea35ce3d 617 int len;
7b863bd5 618 this = args[argnum];
ea35ce3d
RS
619 len = XFASTINT (Flength (this));
620 if (target_type == Lisp_String)
5b6dddaa 621 {
09ab3c3b
KH
622 /* We must count the number of bytes needed in the string
623 as well as the number of characters. */
5b6dddaa
KH
624 int i;
625 Lisp_Object ch;
ea35ce3d 626 int this_len_byte;
5b6dddaa 627
dec58e65 628 if (VECTORP (this))
ea35ce3d 629 for (i = 0; i < len; i++)
dec58e65
KH
630 {
631 ch = XVECTOR (this)->contents[i];
632 if (! INTEGERP (ch))
633 wrong_type_argument (Qintegerp, ch);
cc531c44 634 this_len_byte = CHAR_BYTES (XINT (ch));
ea35ce3d
RS
635 result_len_byte += this_len_byte;
636 if (this_len_byte > 1)
637 some_multibyte = 1;
dec58e65 638 }
6d475204
RS
639 else if (BOOL_VECTOR_P (this) && XBOOL_VECTOR (this)->size > 0)
640 wrong_type_argument (Qintegerp, Faref (this, make_number (0)));
ea35ce3d 641 else if (CONSP (this))
70949dac 642 for (; CONSP (this); this = XCDR (this))
dec58e65 643 {
70949dac 644 ch = XCAR (this);
dec58e65
KH
645 if (! INTEGERP (ch))
646 wrong_type_argument (Qintegerp, ch);
cc531c44 647 this_len_byte = CHAR_BYTES (XINT (ch));
ea35ce3d
RS
648 result_len_byte += this_len_byte;
649 if (this_len_byte > 1)
650 some_multibyte = 1;
dec58e65 651 }
470730a8 652 else if (STRINGP (this))
ea35ce3d 653 {
06f57aa7 654 if (STRING_MULTIBYTE (this))
09ab3c3b
KH
655 {
656 some_multibyte = 1;
fc932ac6 657 result_len_byte += STRING_BYTES (XSTRING (this));
09ab3c3b
KH
658 }
659 else
660 result_len_byte += count_size_as_multibyte (XSTRING (this)->data,
661 XSTRING (this)->size);
ea35ce3d 662 }
5b6dddaa 663 }
ea35ce3d
RS
664
665 result_len += len;
7b863bd5
JB
666 }
667
09ab3c3b
KH
668 if (! some_multibyte)
669 result_len_byte = result_len;
7b863bd5 670
ea35ce3d 671 /* Create the output object. */
7b863bd5 672 if (target_type == Lisp_Cons)
ea35ce3d 673 val = Fmake_list (make_number (result_len), Qnil);
3e7383eb 674 else if (target_type == Lisp_Vectorlike)
ea35ce3d 675 val = Fmake_vector (make_number (result_len), Qnil);
b10b2daa 676 else if (some_multibyte)
ea35ce3d 677 val = make_uninit_multibyte_string (result_len, result_len_byte);
b10b2daa
RS
678 else
679 val = make_uninit_string (result_len);
7b863bd5 680
09ab3c3b
KH
681 /* In `append', if all but last arg are nil, return last arg. */
682 if (target_type == Lisp_Cons && EQ (val, Qnil))
683 return last_tail;
7b863bd5 684
ea35ce3d 685 /* Copy the contents of the args into the result. */
7b863bd5 686 if (CONSP (val))
2d6115c8 687 tail = val, toindex = -1; /* -1 in toindex is flag we are making a list */
7b863bd5 688 else
ea35ce3d 689 toindex = 0, toindex_byte = 0;
7b863bd5
JB
690
691 prev = Qnil;
2d6115c8 692 if (STRINGP (val))
87f0532f
KH
693 textprops
694 = (struct textprop_rec *) alloca (sizeof (struct textprop_rec) * nargs);
7b863bd5
JB
695
696 for (argnum = 0; argnum < nargs; argnum++)
697 {
698 Lisp_Object thislen;
699 int thisleni;
de712da3 700 register unsigned int thisindex = 0;
ea35ce3d 701 register unsigned int thisindex_byte = 0;
7b863bd5
JB
702
703 this = args[argnum];
704 if (!CONSP (this))
705 thislen = Flength (this), thisleni = XINT (thislen);
706
ea35ce3d
RS
707 /* Between strings of the same kind, copy fast. */
708 if (STRINGP (this) && STRINGP (val)
709 && STRING_MULTIBYTE (this) == some_multibyte)
7b863bd5 710 {
fc932ac6 711 int thislen_byte = STRING_BYTES (XSTRING (this));
2d6115c8
KH
712 int combined;
713
ea35ce3d 714 bcopy (XSTRING (this)->data, XSTRING (val)->data + toindex_byte,
fc932ac6 715 STRING_BYTES (XSTRING (this)));
2d6115c8
KH
716 combined = (some_multibyte && toindex_byte > 0
717 ? count_combining (XSTRING (val)->data,
718 toindex_byte + thislen_byte,
719 toindex_byte)
720 : 0);
721 if (! NULL_INTERVAL_P (XSTRING (this)->intervals))
722 {
87f0532f 723 textprops[num_textprops].argnum = argnum;
2d6115c8 724 /* We ignore text properties on characters being combined. */
87f0532f
KH
725 textprops[num_textprops].from = combined;
726 textprops[num_textprops++].to = toindex;
2d6115c8 727 }
ea35ce3d 728 toindex_byte += thislen_byte;
2d6115c8
KH
729 toindex += thisleni - combined;
730 XSTRING (val)->size -= combined;
ea35ce3d 731 }
09ab3c3b
KH
732 /* Copy a single-byte string to a multibyte string. */
733 else if (STRINGP (this) && STRINGP (val))
734 {
2d6115c8
KH
735 if (! NULL_INTERVAL_P (XSTRING (this)->intervals))
736 {
87f0532f
KH
737 textprops[num_textprops].argnum = argnum;
738 textprops[num_textprops].from = 0;
739 textprops[num_textprops++].to = toindex;
2d6115c8 740 }
09ab3c3b
KH
741 toindex_byte += copy_text (XSTRING (this)->data,
742 XSTRING (val)->data + toindex_byte,
743 XSTRING (this)->size, 0, 1);
744 toindex += thisleni;
745 }
ea35ce3d
RS
746 else
747 /* Copy element by element. */
748 while (1)
749 {
750 register Lisp_Object elt;
751
752 /* Fetch next element of `this' arg into `elt', or break if
753 `this' is exhausted. */
754 if (NILP (this)) break;
755 if (CONSP (this))
70949dac 756 elt = XCAR (this), this = XCDR (this);
6a7df83b
RS
757 else if (thisindex >= thisleni)
758 break;
759 else if (STRINGP (this))
ea35ce3d 760 {
2cef5737 761 int c;
6a7df83b 762 if (STRING_MULTIBYTE (this))
ea35ce3d 763 {
6a7df83b
RS
764 FETCH_STRING_CHAR_ADVANCE (c, this,
765 thisindex,
766 thisindex_byte);
767 XSETFASTINT (elt, c);
ea35ce3d 768 }
6a7df83b 769 else
ea35ce3d 770 {
6a7df83b 771 XSETFASTINT (elt, XSTRING (this)->data[thisindex++]);
e0e25273
KH
772 if (some_multibyte
773 && (XINT (elt) >= 0240
f9638719
EZ
774 || (XINT (elt) >= 0200
775 && ! NILP (Vnonascii_translation_table)))
6a7df83b
RS
776 && XINT (elt) < 0400)
777 {
2cef5737 778 c = unibyte_char_to_multibyte (XINT (elt));
6a7df83b
RS
779 XSETINT (elt, c);
780 }
ea35ce3d 781 }
6a7df83b
RS
782 }
783 else if (BOOL_VECTOR_P (this))
784 {
785 int byte;
786 byte = XBOOL_VECTOR (this)->data[thisindex / BITS_PER_CHAR];
787 if (byte & (1 << (thisindex % BITS_PER_CHAR)))
788 elt = Qt;
ea35ce3d 789 else
6a7df83b
RS
790 elt = Qnil;
791 thisindex++;
ea35ce3d 792 }
6a7df83b
RS
793 else
794 elt = XVECTOR (this)->contents[thisindex++];
7b863bd5 795
ea35ce3d
RS
796 /* Store this element into the result. */
797 if (toindex < 0)
7b863bd5 798 {
70949dac 799 XCAR (tail) = elt;
ea35ce3d 800 prev = tail;
70949dac 801 tail = XCDR (tail);
7b863bd5 802 }
ea35ce3d
RS
803 else if (VECTORP (val))
804 XVECTOR (val)->contents[toindex++] = elt;
805 else
806 {
807 CHECK_NUMBER (elt, 0);
808 if (SINGLE_BYTE_CHAR_P (XINT (elt)))
809 {
2d6115c8 810 XSTRING (val)->data[toindex_byte++] = XINT (elt);
18cc260b
KH
811 if (some_multibyte
812 && toindex_byte > 0
2d6115c8
KH
813 && count_combining (XSTRING (val)->data,
814 toindex_byte, toindex_byte - 1))
815 XSTRING (val)->size--;
816 else
817 toindex++;
ea35ce3d
RS
818 }
819 else
820 /* If we have any multibyte characters,
821 we already decided to make a multibyte string. */
822 {
823 int c = XINT (elt);
ea35ce3d
RS
824 /* P exists as a variable
825 to avoid a bug on the Masscomp C compiler. */
826 unsigned char *p = & XSTRING (val)->data[toindex_byte];
64a5094a
KH
827
828 toindex_byte += CHAR_STRING (c, p);
ea35ce3d
RS
829 toindex++;
830 }
831 }
832 }
7b863bd5 833 }
265a9e55 834 if (!NILP (prev))
70949dac 835 XCDR (prev) = last_tail;
7b863bd5 836
87f0532f 837 if (num_textprops > 0)
2d6115c8 838 {
87f0532f 839 for (argnum = 0; argnum < num_textprops; argnum++)
2d6115c8 840 {
87f0532f
KH
841 this = args[textprops[argnum].argnum];
842 copy_text_properties (make_number (textprops[argnum].from),
7c752c80 843 make_number (XSTRING (this)->size), this,
87f0532f 844 make_number (textprops[argnum].to), val, Qnil);
2d6115c8
KH
845 }
846 }
b4f334f7 847 return val;
7b863bd5
JB
848}
849\f
09ab3c3b
KH
850static Lisp_Object string_char_byte_cache_string;
851static int string_char_byte_cache_charpos;
852static int string_char_byte_cache_bytepos;
853
57247650
KH
854void
855clear_string_char_byte_cache ()
856{
857 string_char_byte_cache_string = Qnil;
858}
859
ea35ce3d
RS
860/* Return the character index corresponding to CHAR_INDEX in STRING. */
861
862int
863string_char_to_byte (string, char_index)
864 Lisp_Object string;
865 int char_index;
866{
09ab3c3b
KH
867 int i, i_byte;
868 int best_below, best_below_byte;
869 int best_above, best_above_byte;
ea35ce3d
RS
870
871 if (! STRING_MULTIBYTE (string))
872 return char_index;
873
09ab3c3b
KH
874 best_below = best_below_byte = 0;
875 best_above = XSTRING (string)->size;
fc932ac6 876 best_above_byte = STRING_BYTES (XSTRING (string));
09ab3c3b
KH
877
878 if (EQ (string, string_char_byte_cache_string))
879 {
880 if (string_char_byte_cache_charpos < char_index)
881 {
882 best_below = string_char_byte_cache_charpos;
883 best_below_byte = string_char_byte_cache_bytepos;
884 }
885 else
886 {
887 best_above = string_char_byte_cache_charpos;
888 best_above_byte = string_char_byte_cache_bytepos;
889 }
890 }
891
892 if (char_index - best_below < best_above - char_index)
893 {
894 while (best_below < char_index)
895 {
896 int c;
897 FETCH_STRING_CHAR_ADVANCE (c, string, best_below, best_below_byte);
898 }
899 i = best_below;
900 i_byte = best_below_byte;
901 }
902 else
ea35ce3d 903 {
09ab3c3b
KH
904 while (best_above > char_index)
905 {
e50d9192
KH
906 unsigned char *pend = XSTRING (string)->data + best_above_byte;
907 unsigned char *pbeg = pend - best_above_byte;
908 unsigned char *p = pend - 1;
909 int bytes;
910
911 while (p > pbeg && !CHAR_HEAD_P (*p)) p--;
912 PARSE_MULTIBYTE_SEQ (p, pend - p, bytes);
913 if (bytes == pend - p)
914 best_above_byte -= bytes;
915 else if (bytes > pend - p)
916 best_above_byte -= (pend - p);
917 else
09ab3c3b 918 best_above_byte--;
09ab3c3b
KH
919 best_above--;
920 }
921 i = best_above;
922 i_byte = best_above_byte;
ea35ce3d
RS
923 }
924
09ab3c3b
KH
925 string_char_byte_cache_bytepos = i_byte;
926 string_char_byte_cache_charpos = i;
927 string_char_byte_cache_string = string;
928
ea35ce3d
RS
929 return i_byte;
930}
09ab3c3b 931\f
ea35ce3d
RS
932/* Return the character index corresponding to BYTE_INDEX in STRING. */
933
934int
935string_byte_to_char (string, byte_index)
936 Lisp_Object string;
937 int byte_index;
938{
09ab3c3b
KH
939 int i, i_byte;
940 int best_below, best_below_byte;
941 int best_above, best_above_byte;
ea35ce3d
RS
942
943 if (! STRING_MULTIBYTE (string))
944 return byte_index;
945
09ab3c3b
KH
946 best_below = best_below_byte = 0;
947 best_above = XSTRING (string)->size;
fc932ac6 948 best_above_byte = STRING_BYTES (XSTRING (string));
09ab3c3b
KH
949
950 if (EQ (string, string_char_byte_cache_string))
951 {
952 if (string_char_byte_cache_bytepos < byte_index)
953 {
954 best_below = string_char_byte_cache_charpos;
955 best_below_byte = string_char_byte_cache_bytepos;
956 }
957 else
958 {
959 best_above = string_char_byte_cache_charpos;
960 best_above_byte = string_char_byte_cache_bytepos;
961 }
962 }
963
964 if (byte_index - best_below_byte < best_above_byte - byte_index)
965 {
966 while (best_below_byte < byte_index)
967 {
968 int c;
969 FETCH_STRING_CHAR_ADVANCE (c, string, best_below, best_below_byte);
970 }
971 i = best_below;
972 i_byte = best_below_byte;
973 }
974 else
ea35ce3d 975 {
09ab3c3b
KH
976 while (best_above_byte > byte_index)
977 {
e50d9192
KH
978 unsigned char *pend = XSTRING (string)->data + best_above_byte;
979 unsigned char *pbeg = pend - best_above_byte;
980 unsigned char *p = pend - 1;
981 int bytes;
982
983 while (p > pbeg && !CHAR_HEAD_P (*p)) p--;
984 PARSE_MULTIBYTE_SEQ (p, pend - p, bytes);
985 if (bytes == pend - p)
986 best_above_byte -= bytes;
987 else if (bytes > pend - p)
988 best_above_byte -= (pend - p);
989 else
09ab3c3b 990 best_above_byte--;
09ab3c3b
KH
991 best_above--;
992 }
993 i = best_above;
994 i_byte = best_above_byte;
ea35ce3d
RS
995 }
996
09ab3c3b
KH
997 string_char_byte_cache_bytepos = i_byte;
998 string_char_byte_cache_charpos = i;
999 string_char_byte_cache_string = string;
1000
ea35ce3d
RS
1001 return i;
1002}
09ab3c3b 1003\f
ea35ce3d 1004/* Convert STRING to a multibyte string.
2cef5737 1005 Single-byte characters 0240 through 0377 are converted
ea35ce3d
RS
1006 by adding nonascii_insert_offset to each. */
1007
1008Lisp_Object
1009string_make_multibyte (string)
1010 Lisp_Object string;
1011{
1012 unsigned char *buf;
1013 int nbytes;
1014
1015 if (STRING_MULTIBYTE (string))
1016 return string;
1017
1018 nbytes = count_size_as_multibyte (XSTRING (string)->data,
1019 XSTRING (string)->size);
6d475204
RS
1020 /* If all the chars are ASCII, they won't need any more bytes
1021 once converted. In that case, we can return STRING itself. */
fc932ac6 1022 if (nbytes == STRING_BYTES (XSTRING (string)))
6d475204
RS
1023 return string;
1024
ea35ce3d 1025 buf = (unsigned char *) alloca (nbytes);
fc932ac6 1026 copy_text (XSTRING (string)->data, buf, STRING_BYTES (XSTRING (string)),
ea35ce3d
RS
1027 0, 1);
1028
1029 return make_multibyte_string (buf, XSTRING (string)->size, nbytes);
1030}
1031
1032/* Convert STRING to a single-byte string. */
1033
1034Lisp_Object
1035string_make_unibyte (string)
1036 Lisp_Object string;
1037{
1038 unsigned char *buf;
1039
1040 if (! STRING_MULTIBYTE (string))
1041 return string;
1042
1043 buf = (unsigned char *) alloca (XSTRING (string)->size);
1044
fc932ac6 1045 copy_text (XSTRING (string)->data, buf, STRING_BYTES (XSTRING (string)),
ea35ce3d
RS
1046 1, 0);
1047
1048 return make_unibyte_string (buf, XSTRING (string)->size);
1049}
09ab3c3b
KH
1050
1051DEFUN ("string-make-multibyte", Fstring_make_multibyte, Sstring_make_multibyte,
1052 1, 1, 0,
a6ee6aa4
RS
1053 "Return the multibyte equivalent of STRING.\n\
1054The function `unibyte-char-to-multibyte' is used to convert\n\
1055each unibyte character to a multibyte character.")
09ab3c3b
KH
1056 (string)
1057 Lisp_Object string;
1058{
aabd38ec
KH
1059 CHECK_STRING (string, 0);
1060
09ab3c3b
KH
1061 return string_make_multibyte (string);
1062}
1063
1064DEFUN ("string-make-unibyte", Fstring_make_unibyte, Sstring_make_unibyte,
1065 1, 1, 0,
a6ee6aa4
RS
1066 "Return the unibyte equivalent of STRING.\n\
1067Multibyte character codes are converted to unibyte\n\
1068by using just the low 8 bits.")
09ab3c3b
KH
1069 (string)
1070 Lisp_Object string;
1071{
aabd38ec
KH
1072 CHECK_STRING (string, 0);
1073
09ab3c3b
KH
1074 return string_make_unibyte (string);
1075}
6d475204
RS
1076
1077DEFUN ("string-as-unibyte", Fstring_as_unibyte, Sstring_as_unibyte,
1078 1, 1, 0,
1079 "Return a unibyte string with the same individual bytes as STRING.\n\
f4e09ae7 1080If STRING is unibyte, the result is STRING itself.\n\
f4e09ae7 1081Otherwise it is a newly created string, with no text properties.")
6d475204
RS
1082 (string)
1083 Lisp_Object string;
1084{
aabd38ec
KH
1085 CHECK_STRING (string, 0);
1086
6d475204
RS
1087 if (STRING_MULTIBYTE (string))
1088 {
1089 string = Fcopy_sequence (string);
fc932ac6 1090 XSTRING (string)->size = STRING_BYTES (XSTRING (string));
f4e09ae7 1091 XSTRING (string)->intervals = NULL_INTERVAL;
fa251740 1092 SET_STRING_BYTES (XSTRING (string), -1);
6d475204
RS
1093 }
1094 return string;
1095}
1096
1097DEFUN ("string-as-multibyte", Fstring_as_multibyte, Sstring_as_multibyte,
1098 1, 1, 0,
1099 "Return a multibyte string with the same individual bytes as STRING.\n\
f4e09ae7
RS
1100If STRING is multibyte, the result is STRING itself.\n\
1101Otherwise it is a newly created string, with no text properties.")
6d475204
RS
1102 (string)
1103 Lisp_Object string;
1104{
aabd38ec
KH
1105 CHECK_STRING (string, 0);
1106
6d475204
RS
1107 if (! STRING_MULTIBYTE (string))
1108 {
9658795c
RS
1109 int nbytes = STRING_BYTES (XSTRING (string));
1110 int newlen = multibyte_chars_in_text (XSTRING (string)->data, nbytes);
1111
1112 string = Fcopy_sequence (string);
1113 XSTRING (string)->size = newlen;
1114 XSTRING (string)->size_byte = nbytes;
f4e09ae7 1115 XSTRING (string)->intervals = NULL_INTERVAL;
6d475204
RS
1116 }
1117 return string;
1118}
ea35ce3d 1119\f
7b863bd5
JB
1120DEFUN ("copy-alist", Fcopy_alist, Scopy_alist, 1, 1, 0,
1121 "Return a copy of ALIST.\n\
1122This is an alist which represents the same mapping from objects to objects,\n\
1123but does not share the alist structure with ALIST.\n\
1124The objects mapped (cars and cdrs of elements of the alist)\n\
1125are shared, however.\n\
1126Elements of ALIST that are not conses are also shared.")
1127 (alist)
1128 Lisp_Object alist;
1129{
1130 register Lisp_Object tem;
1131
1132 CHECK_LIST (alist, 0);
265a9e55 1133 if (NILP (alist))
7b863bd5
JB
1134 return alist;
1135 alist = concat (1, &alist, Lisp_Cons, 0);
70949dac 1136 for (tem = alist; CONSP (tem); tem = XCDR (tem))
7b863bd5
JB
1137 {
1138 register Lisp_Object car;
70949dac 1139 car = XCAR (tem);
7b863bd5
JB
1140
1141 if (CONSP (car))
70949dac 1142 XCAR (tem) = Fcons (XCAR (car), XCDR (car));
7b863bd5
JB
1143 }
1144 return alist;
1145}
1146
1147DEFUN ("substring", Fsubstring, Ssubstring, 2, 3, 0,
1148 "Return a substring of STRING, starting at index FROM and ending before TO.\n\
1149TO may be nil or omitted; then the substring runs to the end of STRING.\n\
21fbc8e5
RS
1150If FROM or TO is negative, it counts from the end.\n\
1151\n\
1152This function allows vectors as well as strings.")
7b863bd5
JB
1153 (string, from, to)
1154 Lisp_Object string;
1155 register Lisp_Object from, to;
1156{
ac811a55 1157 Lisp_Object res;
21fbc8e5 1158 int size;
ea35ce3d
RS
1159 int size_byte;
1160 int from_char, to_char;
1161 int from_byte, to_byte;
21fbc8e5
RS
1162
1163 if (! (STRINGP (string) || VECTORP (string)))
1164 wrong_type_argument (Qarrayp, string);
ac811a55 1165
7b863bd5 1166 CHECK_NUMBER (from, 1);
21fbc8e5
RS
1167
1168 if (STRINGP (string))
ea35ce3d
RS
1169 {
1170 size = XSTRING (string)->size;
fc932ac6 1171 size_byte = STRING_BYTES (XSTRING (string));
ea35ce3d 1172 }
21fbc8e5
RS
1173 else
1174 size = XVECTOR (string)->size;
1175
265a9e55 1176 if (NILP (to))
ea35ce3d
RS
1177 {
1178 to_char = size;
1179 to_byte = size_byte;
1180 }
7b863bd5 1181 else
ea35ce3d
RS
1182 {
1183 CHECK_NUMBER (to, 2);
1184
1185 to_char = XINT (to);
1186 if (to_char < 0)
1187 to_char += size;
1188
1189 if (STRINGP (string))
1190 to_byte = string_char_to_byte (string, to_char);
1191 }
1192
1193 from_char = XINT (from);
1194 if (from_char < 0)
1195 from_char += size;
1196 if (STRINGP (string))
1197 from_byte = string_char_to_byte (string, from_char);
7b863bd5 1198
ea35ce3d
RS
1199 if (!(0 <= from_char && from_char <= to_char && to_char <= size))
1200 args_out_of_range_3 (string, make_number (from_char),
1201 make_number (to_char));
7b863bd5 1202
21fbc8e5
RS
1203 if (STRINGP (string))
1204 {
b10b2daa
RS
1205 res = make_specified_string (XSTRING (string)->data + from_byte,
1206 to_char - from_char, to_byte - from_byte,
1207 STRING_MULTIBYTE (string));
21ab867f
AS
1208 copy_text_properties (make_number (from_char), make_number (to_char),
1209 string, make_number (0), res, Qnil);
ea35ce3d
RS
1210 }
1211 else
1212 res = Fvector (to_char - from_char,
1213 XVECTOR (string)->contents + from_char);
1214
1215 return res;
1216}
1217
1218/* Extract a substring of STRING, giving start and end positions
1219 both in characters and in bytes. */
1220
1221Lisp_Object
1222substring_both (string, from, from_byte, to, to_byte)
1223 Lisp_Object string;
1224 int from, from_byte, to, to_byte;
1225{
1226 Lisp_Object res;
1227 int size;
1228 int size_byte;
1229
1230 if (! (STRINGP (string) || VECTORP (string)))
1231 wrong_type_argument (Qarrayp, string);
1232
1233 if (STRINGP (string))
1234 {
1235 size = XSTRING (string)->size;
fc932ac6 1236 size_byte = STRING_BYTES (XSTRING (string));
ea35ce3d
RS
1237 }
1238 else
1239 size = XVECTOR (string)->size;
1240
1241 if (!(0 <= from && from <= to && to <= size))
1242 args_out_of_range_3 (string, make_number (from), make_number (to));
1243
1244 if (STRINGP (string))
1245 {
b10b2daa
RS
1246 res = make_specified_string (XSTRING (string)->data + from_byte,
1247 to - from, to_byte - from_byte,
1248 STRING_MULTIBYTE (string));
21ab867f
AS
1249 copy_text_properties (make_number (from), make_number (to),
1250 string, make_number (0), res, Qnil);
21fbc8e5
RS
1251 }
1252 else
ea35ce3d
RS
1253 res = Fvector (to - from,
1254 XVECTOR (string)->contents + from);
b4f334f7 1255
ac811a55 1256 return res;
7b863bd5
JB
1257}
1258\f
1259DEFUN ("nthcdr", Fnthcdr, Snthcdr, 2, 2, 0,
1260 "Take cdr N times on LIST, returns the result.")
1261 (n, list)
1262 Lisp_Object n;
1263 register Lisp_Object list;
1264{
1265 register int i, num;
1266 CHECK_NUMBER (n, 0);
1267 num = XINT (n);
265a9e55 1268 for (i = 0; i < num && !NILP (list); i++)
7b863bd5
JB
1269 {
1270 QUIT;
71a8e74b
DL
1271 if (! CONSP (list))
1272 wrong_type_argument (Qlistp, list);
1273 list = XCDR (list);
7b863bd5
JB
1274 }
1275 return list;
1276}
1277
1278DEFUN ("nth", Fnth, Snth, 2, 2, 0,
1279 "Return the Nth element of LIST.\n\
1280N counts from zero. If LIST is not that long, nil is returned.")
1281 (n, list)
1282 Lisp_Object n, list;
1283{
1284 return Fcar (Fnthcdr (n, list));
1285}
1286
1287DEFUN ("elt", Felt, Selt, 2, 2, 0,
1288 "Return element of SEQUENCE at index N.")
88fe8140
EN
1289 (sequence, n)
1290 register Lisp_Object sequence, n;
7b863bd5
JB
1291{
1292 CHECK_NUMBER (n, 0);
1293 while (1)
1294 {
88fe8140
EN
1295 if (CONSP (sequence) || NILP (sequence))
1296 return Fcar (Fnthcdr (n, sequence));
1297 else if (STRINGP (sequence) || VECTORP (sequence)
1298 || BOOL_VECTOR_P (sequence) || CHAR_TABLE_P (sequence))
1299 return Faref (sequence, n);
7b863bd5 1300 else
88fe8140 1301 sequence = wrong_type_argument (Qsequencep, sequence);
7b863bd5
JB
1302 }
1303}
1304
1305DEFUN ("member", Fmember, Smember, 2, 2, 0,
1d58e36f 1306 "Return non-nil if ELT is an element of LIST. Comparison done with `equal'.\n\
7b863bd5
JB
1307The value is actually the tail of LIST whose car is ELT.")
1308 (elt, list)
1309 register Lisp_Object elt;
1310 Lisp_Object list;
1311{
1312 register Lisp_Object tail;
70949dac 1313 for (tail = list; !NILP (tail); tail = XCDR (tail))
7b863bd5
JB
1314 {
1315 register Lisp_Object tem;
71a8e74b
DL
1316 if (! CONSP (tail))
1317 wrong_type_argument (Qlistp, list);
1318 tem = XCAR (tail);
265a9e55 1319 if (! NILP (Fequal (elt, tem)))
7b863bd5
JB
1320 return tail;
1321 QUIT;
1322 }
1323 return Qnil;
1324}
1325
1326DEFUN ("memq", Fmemq, Smemq, 2, 2, 0,
f2be3671
GM
1327 "Return non-nil if ELT is an element of LIST.\n\
1328Comparison done with EQ. The value is actually the tail of LIST\n\
1329whose car is ELT.")
7b863bd5 1330 (elt, list)
f2be3671 1331 Lisp_Object elt, list;
7b863bd5 1332{
f2be3671 1333 while (1)
7b863bd5 1334 {
f2be3671
GM
1335 if (!CONSP (list) || EQ (XCAR (list), elt))
1336 break;
1337
1338 list = XCDR (list);
1339 if (!CONSP (list) || EQ (XCAR (list), elt))
1340 break;
1341
1342 list = XCDR (list);
1343 if (!CONSP (list) || EQ (XCAR (list), elt))
1344 break;
1345
1346 list = XCDR (list);
7b863bd5
JB
1347 QUIT;
1348 }
f2be3671
GM
1349
1350 if (!CONSP (list) && !NILP (list))
1351 list = wrong_type_argument (Qlistp, list);
1352
1353 return list;
7b863bd5
JB
1354}
1355
1356DEFUN ("assq", Fassq, Sassq, 2, 2, 0,
3797b4c3
RS
1357 "Return non-nil if KEY is `eq' to the car of an element of LIST.\n\
1358The value is actually the element of LIST whose car is KEY.\n\
7b863bd5
JB
1359Elements of LIST that are not conses are ignored.")
1360 (key, list)
f2be3671 1361 Lisp_Object key, list;
7b863bd5 1362{
f2be3671
GM
1363 Lisp_Object result;
1364
1365 while (1)
7b863bd5 1366 {
f2be3671
GM
1367 if (!CONSP (list)
1368 || (CONSP (XCAR (list))
1369 && EQ (XCAR (XCAR (list)), key)))
1370 break;
1371
1372 list = XCDR (list);
1373 if (!CONSP (list)
1374 || (CONSP (XCAR (list))
1375 && EQ (XCAR (XCAR (list)), key)))
1376 break;
1377
1378 list = XCDR (list);
1379 if (!CONSP (list)
1380 || (CONSP (XCAR (list))
1381 && EQ (XCAR (XCAR (list)), key)))
1382 break;
1383
1384 list = XCDR (list);
7b863bd5
JB
1385 QUIT;
1386 }
f2be3671
GM
1387
1388 if (CONSP (list))
1389 result = XCAR (list);
1390 else if (NILP (list))
1391 result = Qnil;
1392 else
1393 result = wrong_type_argument (Qlistp, list);
1394
1395 return result;
7b863bd5
JB
1396}
1397
1398/* Like Fassq but never report an error and do not allow quits.
1399 Use only on lists known never to be circular. */
1400
1401Lisp_Object
1402assq_no_quit (key, list)
f2be3671 1403 Lisp_Object key, list;
7b863bd5 1404{
f2be3671
GM
1405 while (CONSP (list)
1406 && (!CONSP (XCAR (list))
1407 || !EQ (XCAR (XCAR (list)), key)))
1408 list = XCDR (list);
1409
1410 return CONSP (list) ? XCAR (list) : Qnil;
7b863bd5
JB
1411}
1412
1413DEFUN ("assoc", Fassoc, Sassoc, 2, 2, 0,
3797b4c3 1414 "Return non-nil if KEY is `equal' to the car of an element of LIST.\n\
0fb5a19c 1415The value is actually the element of LIST whose car equals KEY.")
7b863bd5 1416 (key, list)
f2be3671 1417 Lisp_Object key, list;
7b863bd5 1418{
f2be3671
GM
1419 Lisp_Object result, car;
1420
1421 while (1)
7b863bd5 1422 {
f2be3671
GM
1423 if (!CONSP (list)
1424 || (CONSP (XCAR (list))
1425 && (car = XCAR (XCAR (list)),
1426 EQ (car, key) || !NILP (Fequal (car, key)))))
1427 break;
1428
1429 list = XCDR (list);
1430 if (!CONSP (list)
1431 || (CONSP (XCAR (list))
1432 && (car = XCAR (XCAR (list)),
1433 EQ (car, key) || !NILP (Fequal (car, key)))))
1434 break;
1435
1436 list = XCDR (list);
1437 if (!CONSP (list)
1438 || (CONSP (XCAR (list))
1439 && (car = XCAR (XCAR (list)),
1440 EQ (car, key) || !NILP (Fequal (car, key)))))
1441 break;
1442
1443 list = XCDR (list);
7b863bd5
JB
1444 QUIT;
1445 }
f2be3671
GM
1446
1447 if (CONSP (list))
1448 result = XCAR (list);
1449 else if (NILP (list))
1450 result = Qnil;
1451 else
1452 result = wrong_type_argument (Qlistp, list);
1453
1454 return result;
7b863bd5
JB
1455}
1456
1457DEFUN ("rassq", Frassq, Srassq, 2, 2, 0,
f2be3671
GM
1458 "Return non-nil if KEY is `eq' to the cdr of an element of LIST.\n\
1459The value is actually the element of LIST whose cdr is KEY.")
7b863bd5
JB
1460 (key, list)
1461 register Lisp_Object key;
1462 Lisp_Object list;
1463{
f2be3671
GM
1464 Lisp_Object result;
1465
1466 while (1)
7b863bd5 1467 {
f2be3671
GM
1468 if (!CONSP (list)
1469 || (CONSP (XCAR (list))
1470 && EQ (XCDR (XCAR (list)), key)))
1471 break;
1472
1473 list = XCDR (list);
1474 if (!CONSP (list)
1475 || (CONSP (XCAR (list))
1476 && EQ (XCDR (XCAR (list)), key)))
1477 break;
1478
1479 list = XCDR (list);
1480 if (!CONSP (list)
1481 || (CONSP (XCAR (list))
1482 && EQ (XCDR (XCAR (list)), key)))
1483 break;
1484
1485 list = XCDR (list);
7b863bd5
JB
1486 QUIT;
1487 }
f2be3671
GM
1488
1489 if (NILP (list))
1490 result = Qnil;
1491 else if (CONSP (list))
1492 result = XCAR (list);
1493 else
1494 result = wrong_type_argument (Qlistp, list);
1495
1496 return result;
7b863bd5 1497}
0fb5a19c
RS
1498
1499DEFUN ("rassoc", Frassoc, Srassoc, 2, 2, 0,
1500 "Return non-nil if KEY is `equal' to the cdr of an element of LIST.\n\
1501The value is actually the element of LIST whose cdr equals KEY.")
1502 (key, list)
f2be3671 1503 Lisp_Object key, list;
0fb5a19c 1504{
f2be3671
GM
1505 Lisp_Object result, cdr;
1506
1507 while (1)
0fb5a19c 1508 {
f2be3671
GM
1509 if (!CONSP (list)
1510 || (CONSP (XCAR (list))
1511 && (cdr = XCDR (XCAR (list)),
1512 EQ (cdr, key) || !NILP (Fequal (cdr, key)))))
1513 break;
1514
1515 list = XCDR (list);
1516 if (!CONSP (list)
1517 || (CONSP (XCAR (list))
1518 && (cdr = XCDR (XCAR (list)),
1519 EQ (cdr, key) || !NILP (Fequal (cdr, key)))))
1520 break;
1521
1522 list = XCDR (list);
1523 if (!CONSP (list)
1524 || (CONSP (XCAR (list))
1525 && (cdr = XCDR (XCAR (list)),
1526 EQ (cdr, key) || !NILP (Fequal (cdr, key)))))
1527 break;
1528
1529 list = XCDR (list);
0fb5a19c
RS
1530 QUIT;
1531 }
f2be3671
GM
1532
1533 if (CONSP (list))
1534 result = XCAR (list);
1535 else if (NILP (list))
1536 result = Qnil;
1537 else
1538 result = wrong_type_argument (Qlistp, list);
1539
1540 return result;
0fb5a19c 1541}
7b863bd5
JB
1542\f
1543DEFUN ("delq", Fdelq, Sdelq, 2, 2, 0,
1544 "Delete by side effect any occurrences of ELT as a member of LIST.\n\
1545The modified LIST is returned. Comparison is done with `eq'.\n\
1546If the first member of LIST is ELT, there is no way to remove it by side effect;\n\
1547therefore, write `(setq foo (delq element foo))'\n\
1548to be sure of changing the value of `foo'.")
1549 (elt, list)
1550 register Lisp_Object elt;
1551 Lisp_Object list;
1552{
1553 register Lisp_Object tail, prev;
1554 register Lisp_Object tem;
1555
1556 tail = list;
1557 prev = Qnil;
265a9e55 1558 while (!NILP (tail))
7b863bd5 1559 {
71a8e74b
DL
1560 if (! CONSP (tail))
1561 wrong_type_argument (Qlistp, list);
1562 tem = XCAR (tail);
7b863bd5
JB
1563 if (EQ (elt, tem))
1564 {
265a9e55 1565 if (NILP (prev))
70949dac 1566 list = XCDR (tail);
7b863bd5 1567 else
70949dac 1568 Fsetcdr (prev, XCDR (tail));
7b863bd5
JB
1569 }
1570 else
1571 prev = tail;
70949dac 1572 tail = XCDR (tail);
7b863bd5
JB
1573 QUIT;
1574 }
1575 return list;
1576}
1577
ca8dd546 1578DEFUN ("delete", Fdelete, Sdelete, 2, 2, 0,
1e134a5f
RM
1579 "Delete by side effect any occurrences of ELT as a member of LIST.\n\
1580The modified LIST is returned. Comparison is done with `equal'.\n\
1d58e36f
RS
1581If the first member of LIST is ELT, deleting it is not a side effect;\n\
1582it is simply using a different list.\n\
1583Therefore, write `(setq foo (delete element foo))'\n\
1e134a5f
RM
1584to be sure of changing the value of `foo'.")
1585 (elt, list)
1586 register Lisp_Object elt;
1587 Lisp_Object list;
1588{
1589 register Lisp_Object tail, prev;
1590 register Lisp_Object tem;
1591
1592 tail = list;
1593 prev = Qnil;
265a9e55 1594 while (!NILP (tail))
1e134a5f 1595 {
71a8e74b
DL
1596 if (! CONSP (tail))
1597 wrong_type_argument (Qlistp, list);
1598 tem = XCAR (tail);
f812877e 1599 if (! NILP (Fequal (elt, tem)))
1e134a5f 1600 {
265a9e55 1601 if (NILP (prev))
70949dac 1602 list = XCDR (tail);
1e134a5f 1603 else
70949dac 1604 Fsetcdr (prev, XCDR (tail));
1e134a5f
RM
1605 }
1606 else
1607 prev = tail;
70949dac 1608 tail = XCDR (tail);
1e134a5f
RM
1609 QUIT;
1610 }
1611 return list;
1612}
1613
7b863bd5
JB
1614DEFUN ("nreverse", Fnreverse, Snreverse, 1, 1, 0,
1615 "Reverse LIST by modifying cdr pointers.\n\
1616Returns the beginning of the reversed list.")
1617 (list)
1618 Lisp_Object list;
1619{
1620 register Lisp_Object prev, tail, next;
1621
265a9e55 1622 if (NILP (list)) return list;
7b863bd5
JB
1623 prev = Qnil;
1624 tail = list;
265a9e55 1625 while (!NILP (tail))
7b863bd5
JB
1626 {
1627 QUIT;
71a8e74b
DL
1628 if (! CONSP (tail))
1629 wrong_type_argument (Qlistp, list);
1630 next = XCDR (tail);
7b863bd5
JB
1631 Fsetcdr (tail, prev);
1632 prev = tail;
1633 tail = next;
1634 }
1635 return prev;
1636}
1637
1638DEFUN ("reverse", Freverse, Sreverse, 1, 1, 0,
1639 "Reverse LIST, copying. Returns the beginning of the reversed list.\n\
1640See also the function `nreverse', which is used more often.")
1641 (list)
1642 Lisp_Object list;
1643{
9d14ae76 1644 Lisp_Object new;
7b863bd5 1645
70949dac
KR
1646 for (new = Qnil; CONSP (list); list = XCDR (list))
1647 new = Fcons (XCAR (list), new);
9d14ae76
RS
1648 if (!NILP (list))
1649 wrong_type_argument (Qconsp, list);
1650 return new;
7b863bd5
JB
1651}
1652\f
1653Lisp_Object merge ();
1654
1655DEFUN ("sort", Fsort, Ssort, 2, 2, 0,
1656 "Sort LIST, stably, comparing elements using PREDICATE.\n\
1657Returns the sorted list. LIST is modified by side effects.\n\
1658PREDICATE is called with two elements of LIST, and should return T\n\
1659if the first element is \"less\" than the second.")
88fe8140
EN
1660 (list, predicate)
1661 Lisp_Object list, predicate;
7b863bd5
JB
1662{
1663 Lisp_Object front, back;
1664 register Lisp_Object len, tem;
1665 struct gcpro gcpro1, gcpro2;
1666 register int length;
1667
1668 front = list;
1669 len = Flength (list);
1670 length = XINT (len);
1671 if (length < 2)
1672 return list;
1673
1674 XSETINT (len, (length / 2) - 1);
1675 tem = Fnthcdr (len, list);
1676 back = Fcdr (tem);
1677 Fsetcdr (tem, Qnil);
1678
1679 GCPRO2 (front, back);
88fe8140
EN
1680 front = Fsort (front, predicate);
1681 back = Fsort (back, predicate);
7b863bd5 1682 UNGCPRO;
88fe8140 1683 return merge (front, back, predicate);
7b863bd5
JB
1684}
1685
1686Lisp_Object
1687merge (org_l1, org_l2, pred)
1688 Lisp_Object org_l1, org_l2;
1689 Lisp_Object pred;
1690{
1691 Lisp_Object value;
1692 register Lisp_Object tail;
1693 Lisp_Object tem;
1694 register Lisp_Object l1, l2;
1695 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1696
1697 l1 = org_l1;
1698 l2 = org_l2;
1699 tail = Qnil;
1700 value = Qnil;
1701
1702 /* It is sufficient to protect org_l1 and org_l2.
1703 When l1 and l2 are updated, we copy the new values
1704 back into the org_ vars. */
1705 GCPRO4 (org_l1, org_l2, pred, value);
1706
1707 while (1)
1708 {
265a9e55 1709 if (NILP (l1))
7b863bd5
JB
1710 {
1711 UNGCPRO;
265a9e55 1712 if (NILP (tail))
7b863bd5
JB
1713 return l2;
1714 Fsetcdr (tail, l2);
1715 return value;
1716 }
265a9e55 1717 if (NILP (l2))
7b863bd5
JB
1718 {
1719 UNGCPRO;
265a9e55 1720 if (NILP (tail))
7b863bd5
JB
1721 return l1;
1722 Fsetcdr (tail, l1);
1723 return value;
1724 }
1725 tem = call2 (pred, Fcar (l2), Fcar (l1));
265a9e55 1726 if (NILP (tem))
7b863bd5
JB
1727 {
1728 tem = l1;
1729 l1 = Fcdr (l1);
1730 org_l1 = l1;
1731 }
1732 else
1733 {
1734 tem = l2;
1735 l2 = Fcdr (l2);
1736 org_l2 = l2;
1737 }
265a9e55 1738 if (NILP (tail))
7b863bd5
JB
1739 value = tem;
1740 else
1741 Fsetcdr (tail, tem);
1742 tail = tem;
1743 }
1744}
1745\f
be9d483d
BG
1746
1747DEFUN ("plist-get", Fplist_get, Splist_get, 2, 2, 0,
1fbb64aa 1748 "Extract a value from a property list.\n\
be9d483d 1749PLIST is a property list, which is a list of the form\n\
c07289e0 1750\(PROP1 VALUE1 PROP2 VALUE2...). This function returns the value\n\
be9d483d
BG
1751corresponding to the given PROP, or nil if PROP is not\n\
1752one of the properties on the list.")
1fbb64aa
EN
1753 (plist, prop)
1754 Lisp_Object plist;
7b863bd5
JB
1755 register Lisp_Object prop;
1756{
1757 register Lisp_Object tail;
70949dac 1758 for (tail = plist; !NILP (tail); tail = Fcdr (XCDR (tail)))
7b863bd5
JB
1759 {
1760 register Lisp_Object tem;
1761 tem = Fcar (tail);
1762 if (EQ (prop, tem))
70949dac 1763 return Fcar (XCDR (tail));
7b863bd5
JB
1764 }
1765 return Qnil;
1766}
1767
be9d483d
BG
1768DEFUN ("get", Fget, Sget, 2, 2, 0,
1769 "Return the value of SYMBOL's PROPNAME property.\n\
c07289e0
RS
1770This is the last value stored with `(put SYMBOL PROPNAME VALUE)'.")
1771 (symbol, propname)
1772 Lisp_Object symbol, propname;
be9d483d 1773{
c07289e0
RS
1774 CHECK_SYMBOL (symbol, 0);
1775 return Fplist_get (XSYMBOL (symbol)->plist, propname);
be9d483d
BG
1776}
1777
1778DEFUN ("plist-put", Fplist_put, Splist_put, 3, 3, 0,
1779 "Change value in PLIST of PROP to VAL.\n\
1780PLIST is a property list, which is a list of the form\n\
c07289e0 1781\(PROP1 VALUE1 PROP2 VALUE2 ...). PROP is a symbol and VAL is any object.\n\
be9d483d 1782If PROP is already a property on the list, its value is set to VAL,\n\
88435890 1783otherwise the new PROP VAL pair is added. The new plist is returned;\n\
be9d483d
BG
1784use `(setq x (plist-put x prop val))' to be sure to use the new value.\n\
1785The PLIST is modified by side effects.")
1786 (plist, prop, val)
b4f334f7
KH
1787 Lisp_Object plist;
1788 register Lisp_Object prop;
1789 Lisp_Object val;
7b863bd5
JB
1790{
1791 register Lisp_Object tail, prev;
1792 Lisp_Object newcell;
1793 prev = Qnil;
70949dac
KR
1794 for (tail = plist; CONSP (tail) && CONSP (XCDR (tail));
1795 tail = XCDR (XCDR (tail)))
7b863bd5 1796 {
70949dac 1797 if (EQ (prop, XCAR (tail)))
be9d483d 1798 {
70949dac 1799 Fsetcar (XCDR (tail), val);
be9d483d
BG
1800 return plist;
1801 }
7b863bd5
JB
1802 prev = tail;
1803 }
1804 newcell = Fcons (prop, Fcons (val, Qnil));
265a9e55 1805 if (NILP (prev))
be9d483d 1806 return newcell;
7b863bd5 1807 else
70949dac 1808 Fsetcdr (XCDR (prev), newcell);
be9d483d
BG
1809 return plist;
1810}
1811
1812DEFUN ("put", Fput, Sput, 3, 3, 0,
1813 "Store SYMBOL's PROPNAME property with value VALUE.\n\
1814It can be retrieved with `(get SYMBOL PROPNAME)'.")
c07289e0
RS
1815 (symbol, propname, value)
1816 Lisp_Object symbol, propname, value;
be9d483d 1817{
c07289e0
RS
1818 CHECK_SYMBOL (symbol, 0);
1819 XSYMBOL (symbol)->plist
1820 = Fplist_put (XSYMBOL (symbol)->plist, propname, value);
1821 return value;
7b863bd5
JB
1822}
1823
1824DEFUN ("equal", Fequal, Sequal, 2, 2, 0,
ea35ce3d 1825 "Return t if two Lisp objects have similar structure and contents.\n\
7b863bd5
JB
1826They must have the same data type.\n\
1827Conses are compared by comparing the cars and the cdrs.\n\
1828Vectors and strings are compared element by element.\n\
d28c4332
RS
1829Numbers are compared by value, but integers cannot equal floats.\n\
1830 (Use `=' if you want integers and floats to be able to be equal.)\n\
1831Symbols must match exactly.")
7b863bd5
JB
1832 (o1, o2)
1833 register Lisp_Object o1, o2;
1834{
6cb9cafb 1835 return internal_equal (o1, o2, 0) ? Qt : Qnil;
e0f5cf5a
RS
1836}
1837
6cb9cafb 1838static int
e0f5cf5a
RS
1839internal_equal (o1, o2, depth)
1840 register Lisp_Object o1, o2;
1841 int depth;
1842{
1843 if (depth > 200)
1844 error ("Stack overflow in equal");
4ff1aed9 1845
6cb9cafb 1846 tail_recurse:
7b863bd5 1847 QUIT;
4ff1aed9
RS
1848 if (EQ (o1, o2))
1849 return 1;
1850 if (XTYPE (o1) != XTYPE (o2))
1851 return 0;
1852
1853 switch (XTYPE (o1))
1854 {
4ff1aed9
RS
1855 case Lisp_Float:
1856 return (extract_float (o1) == extract_float (o2));
4ff1aed9
RS
1857
1858 case Lisp_Cons:
70949dac 1859 if (!internal_equal (XCAR (o1), XCAR (o2), depth + 1))
4cab5074 1860 return 0;
70949dac
KR
1861 o1 = XCDR (o1);
1862 o2 = XCDR (o2);
4cab5074 1863 goto tail_recurse;
4ff1aed9
RS
1864
1865 case Lisp_Misc:
81d1fba6 1866 if (XMISCTYPE (o1) != XMISCTYPE (o2))
6cb9cafb 1867 return 0;
4ff1aed9 1868 if (OVERLAYP (o1))
7b863bd5 1869 {
e23f814f 1870 if (!internal_equal (OVERLAY_START (o1), OVERLAY_START (o2),
4ff1aed9 1871 depth + 1)
e23f814f 1872 || !internal_equal (OVERLAY_END (o1), OVERLAY_END (o2),
4ff1aed9 1873 depth + 1))
6cb9cafb 1874 return 0;
4ff1aed9
RS
1875 o1 = XOVERLAY (o1)->plist;
1876 o2 = XOVERLAY (o2)->plist;
1877 goto tail_recurse;
7b863bd5 1878 }
4ff1aed9
RS
1879 if (MARKERP (o1))
1880 {
1881 return (XMARKER (o1)->buffer == XMARKER (o2)->buffer
1882 && (XMARKER (o1)->buffer == 0
6ced1284 1883 || XMARKER (o1)->bytepos == XMARKER (o2)->bytepos));
4ff1aed9
RS
1884 }
1885 break;
1886
1887 case Lisp_Vectorlike:
4cab5074
KH
1888 {
1889 register int i, size;
1890 size = XVECTOR (o1)->size;
1891 /* Pseudovectors have the type encoded in the size field, so this test
1892 actually checks that the objects have the same type as well as the
1893 same size. */
1894 if (XVECTOR (o2)->size != size)
1895 return 0;
e03f7933
RS
1896 /* Boolvectors are compared much like strings. */
1897 if (BOOL_VECTOR_P (o1))
1898 {
e03f7933 1899 int size_in_chars
e22e4283 1900 = (XBOOL_VECTOR (o1)->size + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
e03f7933
RS
1901
1902 if (XBOOL_VECTOR (o1)->size != XBOOL_VECTOR (o2)->size)
1903 return 0;
1904 if (bcmp (XBOOL_VECTOR (o1)->data, XBOOL_VECTOR (o2)->data,
1905 size_in_chars))
1906 return 0;
1907 return 1;
1908 }
ed73fcc1 1909 if (WINDOW_CONFIGURATIONP (o1))
48646924 1910 return compare_window_configurations (o1, o2, 0);
e03f7933
RS
1911
1912 /* Aside from them, only true vectors, char-tables, and compiled
1913 functions are sensible to compare, so eliminate the others now. */
4cab5074
KH
1914 if (size & PSEUDOVECTOR_FLAG)
1915 {
e03f7933 1916 if (!(size & (PVEC_COMPILED | PVEC_CHAR_TABLE)))
4cab5074
KH
1917 return 0;
1918 size &= PSEUDOVECTOR_SIZE_MASK;
1919 }
1920 for (i = 0; i < size; i++)
1921 {
1922 Lisp_Object v1, v2;
1923 v1 = XVECTOR (o1)->contents [i];
1924 v2 = XVECTOR (o2)->contents [i];
1925 if (!internal_equal (v1, v2, depth + 1))
1926 return 0;
1927 }
1928 return 1;
1929 }
4ff1aed9
RS
1930 break;
1931
1932 case Lisp_String:
4cab5074
KH
1933 if (XSTRING (o1)->size != XSTRING (o2)->size)
1934 return 0;
fc932ac6 1935 if (STRING_BYTES (XSTRING (o1)) != STRING_BYTES (XSTRING (o2)))
ea35ce3d 1936 return 0;
4cab5074 1937 if (bcmp (XSTRING (o1)->data, XSTRING (o2)->data,
fc932ac6 1938 STRING_BYTES (XSTRING (o1))))
4cab5074 1939 return 0;
4cab5074 1940 return 1;
7b863bd5 1941 }
6cb9cafb 1942 return 0;
7b863bd5
JB
1943}
1944\f
2e34157c
RS
1945extern Lisp_Object Fmake_char_internal ();
1946
7b863bd5 1947DEFUN ("fillarray", Ffillarray, Sfillarray, 2, 2, 0,
e03f7933
RS
1948 "Store each element of ARRAY with ITEM.\n\
1949ARRAY is a vector, string, char-table, or bool-vector.")
7b863bd5
JB
1950 (array, item)
1951 Lisp_Object array, item;
1952{
1953 register int size, index, charval;
1954 retry:
7650760e 1955 if (VECTORP (array))
7b863bd5
JB
1956 {
1957 register Lisp_Object *p = XVECTOR (array)->contents;
1958 size = XVECTOR (array)->size;
1959 for (index = 0; index < size; index++)
1960 p[index] = item;
1961 }
e03f7933
RS
1962 else if (CHAR_TABLE_P (array))
1963 {
1964 register Lisp_Object *p = XCHAR_TABLE (array)->contents;
1965 size = CHAR_TABLE_ORDINARY_SLOTS;
1966 for (index = 0; index < size; index++)
1967 p[index] = item;
1968 XCHAR_TABLE (array)->defalt = Qnil;
1969 }
7650760e 1970 else if (STRINGP (array))
7b863bd5
JB
1971 {
1972 register unsigned char *p = XSTRING (array)->data;
1973 CHECK_NUMBER (item, 1);
1974 charval = XINT (item);
1975 size = XSTRING (array)->size;
57247650
KH
1976 if (STRING_MULTIBYTE (array))
1977 {
64a5094a
KH
1978 unsigned char str[MAX_MULTIBYTE_LENGTH];
1979 int len = CHAR_STRING (charval, str);
57247650
KH
1980 int size_byte = STRING_BYTES (XSTRING (array));
1981 unsigned char *p1 = p, *endp = p + size_byte;
95b8aba7 1982 int i;
57247650 1983
95b8aba7
KH
1984 if (size != size_byte)
1985 while (p1 < endp)
1986 {
1987 int this_len = MULTIBYTE_FORM_LENGTH (p1, endp - p1);
1988 if (len != this_len)
1989 error ("Attempt to change byte length of a string");
1990 p1 += this_len;
1991 }
57247650
KH
1992 for (i = 0; i < size_byte; i++)
1993 *p++ = str[i % len];
1994 }
1995 else
1996 for (index = 0; index < size; index++)
1997 p[index] = charval;
7b863bd5 1998 }
e03f7933
RS
1999 else if (BOOL_VECTOR_P (array))
2000 {
2001 register unsigned char *p = XBOOL_VECTOR (array)->data;
e03f7933 2002 int size_in_chars
e22e4283 2003 = (XBOOL_VECTOR (array)->size + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
e03f7933
RS
2004
2005 charval = (! NILP (item) ? -1 : 0);
2006 for (index = 0; index < size_in_chars; index++)
2007 p[index] = charval;
2008 }
7b863bd5
JB
2009 else
2010 {
2011 array = wrong_type_argument (Qarrayp, array);
2012 goto retry;
2013 }
2014 return array;
2015}
ea35ce3d 2016\f
999de246
RS
2017DEFUN ("char-table-subtype", Fchar_table_subtype, Schar_table_subtype,
2018 1, 1, 0,
2019 "Return the subtype of char-table CHAR-TABLE. The value is a symbol.")
88fe8140
EN
2020 (char_table)
2021 Lisp_Object char_table;
999de246 2022{
b4f334f7 2023 CHECK_CHAR_TABLE (char_table, 0);
999de246 2024
88fe8140 2025 return XCHAR_TABLE (char_table)->purpose;
999de246
RS
2026}
2027
e03f7933
RS
2028DEFUN ("char-table-parent", Fchar_table_parent, Schar_table_parent,
2029 1, 1, 0,
2030 "Return the parent char-table of CHAR-TABLE.\n\
2031The value is either nil or another char-table.\n\
2032If CHAR-TABLE holds nil for a given character,\n\
2033then the actual applicable value is inherited from the parent char-table\n\
2034\(or from its parents, if necessary).")
88fe8140
EN
2035 (char_table)
2036 Lisp_Object char_table;
e03f7933 2037{
b4f334f7 2038 CHECK_CHAR_TABLE (char_table, 0);
e03f7933 2039
88fe8140 2040 return XCHAR_TABLE (char_table)->parent;
e03f7933
RS
2041}
2042
2043DEFUN ("set-char-table-parent", Fset_char_table_parent, Sset_char_table_parent,
2044 2, 2, 0,
2045 "Set the parent char-table of CHAR-TABLE to PARENT.\n\
2046PARENT must be either nil or another char-table.")
88fe8140
EN
2047 (char_table, parent)
2048 Lisp_Object char_table, parent;
e03f7933
RS
2049{
2050 Lisp_Object temp;
2051
b4f334f7 2052 CHECK_CHAR_TABLE (char_table, 0);
e03f7933 2053
c8640abf
RS
2054 if (!NILP (parent))
2055 {
b4f334f7 2056 CHECK_CHAR_TABLE (parent, 0);
c8640abf
RS
2057
2058 for (temp = parent; !NILP (temp); temp = XCHAR_TABLE (temp)->parent)
55cc974d 2059 if (EQ (temp, char_table))
c8640abf
RS
2060 error ("Attempt to make a chartable be its own parent");
2061 }
e03f7933 2062
88fe8140 2063 XCHAR_TABLE (char_table)->parent = parent;
e03f7933
RS
2064
2065 return parent;
2066}
2067
2068DEFUN ("char-table-extra-slot", Fchar_table_extra_slot, Schar_table_extra_slot,
2069 2, 2, 0,
25c30748 2070 "Return the value of CHAR-TABLE's extra-slot number N.")
88fe8140
EN
2071 (char_table, n)
2072 Lisp_Object char_table, n;
e03f7933 2073{
88fe8140 2074 CHECK_CHAR_TABLE (char_table, 1);
e03f7933
RS
2075 CHECK_NUMBER (n, 2);
2076 if (XINT (n) < 0
88fe8140
EN
2077 || XINT (n) >= CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (char_table)))
2078 args_out_of_range (char_table, n);
e03f7933 2079
88fe8140 2080 return XCHAR_TABLE (char_table)->extras[XINT (n)];
e03f7933
RS
2081}
2082
2083DEFUN ("set-char-table-extra-slot", Fset_char_table_extra_slot,
2084 Sset_char_table_extra_slot,
2085 3, 3, 0,
25c30748 2086 "Set CHAR-TABLE's extra-slot number N to VALUE.")
88fe8140
EN
2087 (char_table, n, value)
2088 Lisp_Object char_table, n, value;
e03f7933 2089{
88fe8140 2090 CHECK_CHAR_TABLE (char_table, 1);
e03f7933
RS
2091 CHECK_NUMBER (n, 2);
2092 if (XINT (n) < 0
88fe8140
EN
2093 || XINT (n) >= CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (char_table)))
2094 args_out_of_range (char_table, n);
e03f7933 2095
88fe8140 2096 return XCHAR_TABLE (char_table)->extras[XINT (n)] = value;
e03f7933 2097}
ea35ce3d 2098\f
999de246
RS
2099DEFUN ("char-table-range", Fchar_table_range, Schar_table_range,
2100 2, 2, 0,
88fe8140 2101 "Return the value in CHAR-TABLE for a range of characters RANGE.\n\
6d475204 2102RANGE should be nil (for the default value)\n\
999de246 2103a vector which identifies a character set or a row of a character set,\n\
6d475204 2104a character set name, or a character code.")
88fe8140
EN
2105 (char_table, range)
2106 Lisp_Object char_table, range;
999de246 2107{
88fe8140 2108 CHECK_CHAR_TABLE (char_table, 0);
b4f334f7 2109
999de246 2110 if (EQ (range, Qnil))
88fe8140 2111 return XCHAR_TABLE (char_table)->defalt;
999de246 2112 else if (INTEGERP (range))
88fe8140 2113 return Faref (char_table, range);
6d475204
RS
2114 else if (SYMBOLP (range))
2115 {
2116 Lisp_Object charset_info;
2117
2118 charset_info = Fget (range, Qcharset);
2119 CHECK_VECTOR (charset_info, 0);
2120
21ab867f
AS
2121 return Faref (char_table,
2122 make_number (XINT (XVECTOR (charset_info)->contents[0])
2123 + 128));
6d475204 2124 }
999de246
RS
2125 else if (VECTORP (range))
2126 {
e814a159 2127 if (XVECTOR (range)->size == 1)
21ab867f
AS
2128 return Faref (char_table,
2129 make_number (XINT (XVECTOR (range)->contents[0]) + 128));
e814a159
RS
2130 else
2131 {
2132 int size = XVECTOR (range)->size;
2133 Lisp_Object *val = XVECTOR (range)->contents;
2134 Lisp_Object ch = Fmake_char_internal (size <= 0 ? Qnil : val[0],
2135 size <= 1 ? Qnil : val[1],
2136 size <= 2 ? Qnil : val[2]);
2137 return Faref (char_table, ch);
2138 }
999de246
RS
2139 }
2140 else
2141 error ("Invalid RANGE argument to `char-table-range'");
2142}
2143
e03f7933
RS
2144DEFUN ("set-char-table-range", Fset_char_table_range, Sset_char_table_range,
2145 3, 3, 0,
88fe8140 2146 "Set the value in CHAR-TABLE for a range of characters RANGE to VALUE.\n\
e03f7933
RS
2147RANGE should be t (for all characters), nil (for the default value)\n\
2148a vector which identifies a character set or a row of a character set,\n\
6d475204 2149a coding system, or a character code.")
88fe8140
EN
2150 (char_table, range, value)
2151 Lisp_Object char_table, range, value;
e03f7933
RS
2152{
2153 int i;
2154
88fe8140 2155 CHECK_CHAR_TABLE (char_table, 0);
b4f334f7 2156
e03f7933
RS
2157 if (EQ (range, Qt))
2158 for (i = 0; i < CHAR_TABLE_ORDINARY_SLOTS; i++)
88fe8140 2159 XCHAR_TABLE (char_table)->contents[i] = value;
e03f7933 2160 else if (EQ (range, Qnil))
88fe8140 2161 XCHAR_TABLE (char_table)->defalt = value;
6d475204
RS
2162 else if (SYMBOLP (range))
2163 {
2164 Lisp_Object charset_info;
2165
2166 charset_info = Fget (range, Qcharset);
2167 CHECK_VECTOR (charset_info, 0);
2168
21ab867f
AS
2169 return Faset (char_table,
2170 make_number (XINT (XVECTOR (charset_info)->contents[0])
2171 + 128),
6d475204
RS
2172 value);
2173 }
e03f7933 2174 else if (INTEGERP (range))
88fe8140 2175 Faset (char_table, range, value);
e03f7933
RS
2176 else if (VECTORP (range))
2177 {
e814a159 2178 if (XVECTOR (range)->size == 1)
21ab867f
AS
2179 return Faset (char_table,
2180 make_number (XINT (XVECTOR (range)->contents[0]) + 128),
2181 value);
e814a159
RS
2182 else
2183 {
2184 int size = XVECTOR (range)->size;
2185 Lisp_Object *val = XVECTOR (range)->contents;
2186 Lisp_Object ch = Fmake_char_internal (size <= 0 ? Qnil : val[0],
2187 size <= 1 ? Qnil : val[1],
2188 size <= 2 ? Qnil : val[2]);
2189 return Faset (char_table, ch, value);
2190 }
e03f7933
RS
2191 }
2192 else
2193 error ("Invalid RANGE argument to `set-char-table-range'");
2194
2195 return value;
2196}
e1335ba2
KH
2197
2198DEFUN ("set-char-table-default", Fset_char_table_default,
2199 Sset_char_table_default, 3, 3, 0,
2200 "Set the default value in CHAR-TABLE for a generic character CHAR to VALUE.\n\
2201The generic character specifies the group of characters.\n\
2202See also the documentation of make-char.")
2203 (char_table, ch, value)
2204 Lisp_Object char_table, ch, value;
2205{
ada0fa14 2206 int c, charset, code1, code2;
e1335ba2
KH
2207 Lisp_Object temp;
2208
2209 CHECK_CHAR_TABLE (char_table, 0);
2210 CHECK_NUMBER (ch, 1);
2211
2212 c = XINT (ch);
2db66414 2213 SPLIT_CHAR (c, charset, code1, code2);
0da528a9
KH
2214
2215 /* Since we may want to set the default value for a character set
2216 not yet defined, we check only if the character set is in the
2217 valid range or not, instead of it is already defined or not. */
2218 if (! CHARSET_VALID_P (charset))
f71599f4 2219 invalid_character (c);
e1335ba2
KH
2220
2221 if (charset == CHARSET_ASCII)
2222 return (XCHAR_TABLE (char_table)->defalt = value);
2223
2224 /* Even if C is not a generic char, we had better behave as if a
2225 generic char is specified. */
64a5094a 2226 if (CHARSET_DIMENSION (charset) == 1)
e1335ba2
KH
2227 code1 = 0;
2228 temp = XCHAR_TABLE (char_table)->contents[charset + 128];
2229 if (!code1)
2230 {
2231 if (SUB_CHAR_TABLE_P (temp))
2232 XCHAR_TABLE (temp)->defalt = value;
2233 else
2234 XCHAR_TABLE (char_table)->contents[charset + 128] = value;
2235 return value;
2236 }
2237 char_table = temp;
2238 if (! SUB_CHAR_TABLE_P (char_table))
2239 char_table = (XCHAR_TABLE (char_table)->contents[charset + 128]
2240 = make_sub_char_table (temp));
2241 temp = XCHAR_TABLE (char_table)->contents[code1];
2242 if (SUB_CHAR_TABLE_P (temp))
2243 XCHAR_TABLE (temp)->defalt = value;
2244 else
2245 XCHAR_TABLE (char_table)->contents[code1] = value;
2246 return value;
2247}
1d969a23
RS
2248
2249/* Look up the element in TABLE at index CH,
2250 and return it as an integer.
2251 If the element is nil, return CH itself.
2252 (Actually we do that for any non-integer.) */
2253
2254int
2255char_table_translate (table, ch)
2256 Lisp_Object table;
2257 int ch;
2258{
2259 Lisp_Object value;
2260 value = Faref (table, make_number (ch));
2261 if (! INTEGERP (value))
2262 return ch;
2263 return XINT (value);
2264}
52ef6c89
KH
2265
2266static void
2267optimize_sub_char_table (table, chars)
2268 Lisp_Object *table;
2269 int chars;
2270{
2271 Lisp_Object elt;
2272 int from, to;
2273
2274 if (chars == 94)
2275 from = 33, to = 127;
2276 else
2277 from = 32, to = 128;
2278
2279 if (!SUB_CHAR_TABLE_P (*table))
2280 return;
2281 elt = XCHAR_TABLE (*table)->contents[from++];
2282 for (; from < to; from++)
2283 if (NILP (Fequal (elt, XCHAR_TABLE (*table)->contents[from])))
2284 return;
2285 *table = elt;
2286}
2287
2288DEFUN ("optimize-char-table", Foptimize_char_table, Soptimize_char_table,
2289 1, 1, 0,
2290 "Optimize char table TABLE.")
2291 (table)
2292 Lisp_Object table;
2293{
2294 Lisp_Object elt;
2295 int dim;
2296 int i, j;
2297
2298 CHECK_CHAR_TABLE (table, 0);
2299
2300 for (i = CHAR_TABLE_SINGLE_BYTE_SLOTS; i < CHAR_TABLE_ORDINARY_SLOTS; i++)
2301 {
2302 elt = XCHAR_TABLE (table)->contents[i];
2303 if (!SUB_CHAR_TABLE_P (elt))
2304 continue;
2305 dim = CHARSET_DIMENSION (i);
2306 if (dim == 2)
2307 for (j = 32; j < SUB_CHAR_TABLE_ORDINARY_SLOTS; j++)
2308 optimize_sub_char_table (XCHAR_TABLE (elt)->contents + j, dim);
2309 optimize_sub_char_table (XCHAR_TABLE (table)->contents + i, dim);
2310 }
2311 return Qnil;
2312}
2313
e03f7933 2314\f
46ed603f 2315/* Map C_FUNCTION or FUNCTION over SUBTABLE, calling it for each
c8640abf
RS
2316 character or group of characters that share a value.
2317 DEPTH is the current depth in the originally specified
2318 chartable, and INDICES contains the vector indices
46ed603f
RS
2319 for the levels our callers have descended.
2320
2321 ARG is passed to C_FUNCTION when that is called. */
c8640abf
RS
2322
2323void
46ed603f 2324map_char_table (c_function, function, subtable, arg, depth, indices)
22e6f12b
AS
2325 void (*c_function) P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
2326 Lisp_Object function, subtable, arg, *indices;
1847b19b 2327 int depth;
e03f7933 2328{
3720677d 2329 int i, to;
e03f7933 2330
a8283a4a 2331 if (depth == 0)
3720677d
KH
2332 {
2333 /* At first, handle ASCII and 8-bit European characters. */
2334 for (i = 0; i < CHAR_TABLE_SINGLE_BYTE_SLOTS; i++)
2335 {
46ed603f 2336 Lisp_Object elt = XCHAR_TABLE (subtable)->contents[i];
3720677d 2337 if (c_function)
46ed603f 2338 (*c_function) (arg, make_number (i), elt);
3720677d
KH
2339 else
2340 call2 (function, make_number (i), elt);
2341 }
ea35ce3d
RS
2342#if 0 /* If the char table has entries for higher characters,
2343 we should report them. */
de86fcba
KH
2344 if (NILP (current_buffer->enable_multibyte_characters))
2345 return;
ea35ce3d 2346#endif
3720677d
KH
2347 to = CHAR_TABLE_ORDINARY_SLOTS;
2348 }
a8283a4a 2349 else
e03f7933 2350 {
de86fcba 2351 i = 32;
3720677d 2352 to = SUB_CHAR_TABLE_ORDINARY_SLOTS;
e03f7933
RS
2353 }
2354
7e798f25 2355 for (; i < to; i++)
e03f7933 2356 {
46ed603f 2357 Lisp_Object elt = XCHAR_TABLE (subtable)->contents[i];
3720677d 2358
09ee221d 2359 XSETFASTINT (indices[depth], i);
3720677d
KH
2360
2361 if (SUB_CHAR_TABLE_P (elt))
2362 {
2363 if (depth >= 3)
2364 error ("Too deep char table");
7e798f25 2365 map_char_table (c_function, function, elt, arg, depth + 1, indices);
3720677d 2366 }
e03f7933 2367 else
a8283a4a 2368 {
3720677d
KH
2369 int charset = XFASTINT (indices[0]) - 128, c1, c2, c;
2370
a8283a4a
KH
2371 if (CHARSET_DEFINED_P (charset))
2372 {
3720677d
KH
2373 c1 = depth >= 1 ? XFASTINT (indices[1]) : 0;
2374 c2 = depth >= 2 ? XFASTINT (indices[2]) : 0;
a8283a4a 2375 c = MAKE_NON_ASCII_CHAR (charset, c1, c2);
3720677d 2376 if (c_function)
46ed603f 2377 (*c_function) (arg, make_number (c), elt);
3720677d
KH
2378 else
2379 call2 (function, make_number (c), elt);
a8283a4a 2380 }
b4f334f7 2381 }
e03f7933
RS
2382 }
2383}
2384
2385DEFUN ("map-char-table", Fmap_char_table, Smap_char_table,
2386 2, 2, 0,
7e798f25 2387 "Call FUNCTION for each (normal and generic) characters in CHAR-TABLE.\n\
e03f7933 2388FUNCTION is called with two arguments--a key and a value.\n\
7e798f25 2389The key is always a possible IDX argument to `aref'.")
88fe8140
EN
2390 (function, char_table)
2391 Lisp_Object function, char_table;
e03f7933 2392{
3720677d 2393 /* The depth of char table is at most 3. */
7e798f25
KH
2394 Lisp_Object indices[3];
2395
2396 CHECK_CHAR_TABLE (char_table, 1);
e03f7933 2397
46ed603f 2398 map_char_table (NULL, function, char_table, char_table, 0, indices);
e03f7933
RS
2399 return Qnil;
2400}
2401\f
7b863bd5
JB
2402/* ARGSUSED */
2403Lisp_Object
2404nconc2 (s1, s2)
2405 Lisp_Object s1, s2;
2406{
2407#ifdef NO_ARG_ARRAY
2408 Lisp_Object args[2];
2409 args[0] = s1;
2410 args[1] = s2;
2411 return Fnconc (2, args);
2412#else
2413 return Fnconc (2, &s1);
2414#endif /* NO_ARG_ARRAY */
2415}
2416
2417DEFUN ("nconc", Fnconc, Snconc, 0, MANY, 0,
2418 "Concatenate any number of lists by altering them.\n\
2419Only the last argument is not altered, and need not be a list.")
2420 (nargs, args)
2421 int nargs;
2422 Lisp_Object *args;
2423{
2424 register int argnum;
2425 register Lisp_Object tail, tem, val;
2426
2427 val = Qnil;
2428
2429 for (argnum = 0; argnum < nargs; argnum++)
2430 {
2431 tem = args[argnum];
265a9e55 2432 if (NILP (tem)) continue;
7b863bd5 2433
265a9e55 2434 if (NILP (val))
7b863bd5
JB
2435 val = tem;
2436
2437 if (argnum + 1 == nargs) break;
2438
2439 if (!CONSP (tem))
2440 tem = wrong_type_argument (Qlistp, tem);
2441
2442 while (CONSP (tem))
2443 {
2444 tail = tem;
2445 tem = Fcdr (tail);
2446 QUIT;
2447 }
2448
2449 tem = args[argnum + 1];
2450 Fsetcdr (tail, tem);
265a9e55 2451 if (NILP (tem))
7b863bd5
JB
2452 args[argnum + 1] = tail;
2453 }
2454
2455 return val;
2456}
2457\f
2458/* This is the guts of all mapping functions.
ea35ce3d
RS
2459 Apply FN to each element of SEQ, one by one,
2460 storing the results into elements of VALS, a C vector of Lisp_Objects.
2461 LENI is the length of VALS, which should also be the length of SEQ. */
7b863bd5
JB
2462
2463static void
2464mapcar1 (leni, vals, fn, seq)
2465 int leni;
2466 Lisp_Object *vals;
2467 Lisp_Object fn, seq;
2468{
2469 register Lisp_Object tail;
2470 Lisp_Object dummy;
2471 register int i;
2472 struct gcpro gcpro1, gcpro2, gcpro3;
2473
2474 /* Don't let vals contain any garbage when GC happens. */
2475 for (i = 0; i < leni; i++)
2476 vals[i] = Qnil;
2477
2478 GCPRO3 (dummy, fn, seq);
2479 gcpro1.var = vals;
2480 gcpro1.nvars = leni;
2481 /* We need not explicitly protect `tail' because it is used only on lists, and
2482 1) lists are not relocated and 2) the list is marked via `seq' so will not be freed */
2483
7650760e 2484 if (VECTORP (seq))
7b863bd5
JB
2485 {
2486 for (i = 0; i < leni; i++)
2487 {
2488 dummy = XVECTOR (seq)->contents[i];
2489 vals[i] = call1 (fn, dummy);
2490 }
2491 }
33aa0881
KH
2492 else if (BOOL_VECTOR_P (seq))
2493 {
2494 for (i = 0; i < leni; i++)
2495 {
2496 int byte;
2497 byte = XBOOL_VECTOR (seq)->data[i / BITS_PER_CHAR];
2498 if (byte & (1 << (i % BITS_PER_CHAR)))
2499 dummy = Qt;
2500 else
2501 dummy = Qnil;
2502
2503 vals[i] = call1 (fn, dummy);
2504 }
2505 }
ea35ce3d 2506 else if (STRINGP (seq) && ! STRING_MULTIBYTE (seq))
7b863bd5 2507 {
ea35ce3d 2508 /* Single-byte string. */
7b863bd5
JB
2509 for (i = 0; i < leni; i++)
2510 {
ad17573a 2511 XSETFASTINT (dummy, XSTRING (seq)->data[i]);
7b863bd5
JB
2512 vals[i] = call1 (fn, dummy);
2513 }
2514 }
ea35ce3d
RS
2515 else if (STRINGP (seq))
2516 {
2517 /* Multi-byte string. */
ea35ce3d
RS
2518 int i_byte;
2519
2520 for (i = 0, i_byte = 0; i < leni;)
2521 {
2522 int c;
0ab6a3d8
KH
2523 int i_before = i;
2524
2525 FETCH_STRING_CHAR_ADVANCE (c, seq, i, i_byte);
ea35ce3d 2526 XSETFASTINT (dummy, c);
0ab6a3d8 2527 vals[i_before] = call1 (fn, dummy);
ea35ce3d
RS
2528 }
2529 }
7b863bd5
JB
2530 else /* Must be a list, since Flength did not get an error */
2531 {
2532 tail = seq;
2533 for (i = 0; i < leni; i++)
2534 {
2535 vals[i] = call1 (fn, Fcar (tail));
70949dac 2536 tail = XCDR (tail);
7b863bd5
JB
2537 }
2538 }
2539
2540 UNGCPRO;
2541}
2542
2543DEFUN ("mapconcat", Fmapconcat, Smapconcat, 3, 3, 0,
88fe8140
EN
2544 "Apply FUNCTION to each element of SEQUENCE, and concat the results as strings.\n\
2545In between each pair of results, stick in SEPARATOR. Thus, \" \" as\n\
33aa0881
KH
2546SEPARATOR results in spaces between the values returned by FUNCTION.\n\
2547SEQUENCE may be a list, a vector, a bool-vector, or a string.")
88fe8140
EN
2548 (function, sequence, separator)
2549 Lisp_Object function, sequence, separator;
7b863bd5
JB
2550{
2551 Lisp_Object len;
2552 register int leni;
2553 int nargs;
2554 register Lisp_Object *args;
2555 register int i;
2556 struct gcpro gcpro1;
2557
88fe8140 2558 len = Flength (sequence);
7b863bd5
JB
2559 leni = XINT (len);
2560 nargs = leni + leni - 1;
2561 if (nargs < 0) return build_string ("");
2562
2563 args = (Lisp_Object *) alloca (nargs * sizeof (Lisp_Object));
2564
88fe8140
EN
2565 GCPRO1 (separator);
2566 mapcar1 (leni, args, function, sequence);
7b863bd5
JB
2567 UNGCPRO;
2568
2569 for (i = leni - 1; i >= 0; i--)
2570 args[i + i] = args[i];
b4f334f7 2571
7b863bd5 2572 for (i = 1; i < nargs; i += 2)
88fe8140 2573 args[i] = separator;
7b863bd5
JB
2574
2575 return Fconcat (nargs, args);
2576}
2577
2578DEFUN ("mapcar", Fmapcar, Smapcar, 2, 2, 0,
2579 "Apply FUNCTION to each element of SEQUENCE, and make a list of the results.\n\
2580The result is a list just as long as SEQUENCE.\n\
33aa0881 2581SEQUENCE may be a list, a vector, a bool-vector, or a string.")
88fe8140
EN
2582 (function, sequence)
2583 Lisp_Object function, sequence;
7b863bd5
JB
2584{
2585 register Lisp_Object len;
2586 register int leni;
2587 register Lisp_Object *args;
2588
88fe8140 2589 len = Flength (sequence);
7b863bd5
JB
2590 leni = XFASTINT (len);
2591 args = (Lisp_Object *) alloca (leni * sizeof (Lisp_Object));
2592
88fe8140 2593 mapcar1 (leni, args, function, sequence);
7b863bd5
JB
2594
2595 return Flist (leni, args);
2596}
2597\f
2598/* Anything that calls this function must protect from GC! */
2599
2600DEFUN ("y-or-n-p", Fy_or_n_p, Sy_or_n_p, 1, 1, 0,
2601 "Ask user a \"y or n\" question. Return t if answer is \"y\".\n\
c763f396
RS
2602Takes one argument, which is the string to display to ask the question.\n\
2603It should end in a space; `y-or-n-p' adds `(y or n) ' to it.\n\
7b863bd5 2604No confirmation of the answer is requested; a single character is enough.\n\
2b8503ea 2605Also accepts Space to mean yes, or Delete to mean no. \(Actually, it uses\n\
71a8e74b 2606the bindings in `query-replace-map'; see the documentation of that variable\n\
2b8503ea
KH
2607for more information. In this case, the useful bindings are `act', `skip',\n\
2608`recenter', and `quit'.\)\n\
0c6ca44b
DL
2609\n\
2610Under a windowing system a dialog box will be used if `last-nonmenu-event'\n\
2611is nil.")
7b863bd5
JB
2612 (prompt)
2613 Lisp_Object prompt;
2614{
2b8503ea 2615 register Lisp_Object obj, key, def, map;
f5313ed9 2616 register int answer;
7b863bd5
JB
2617 Lisp_Object xprompt;
2618 Lisp_Object args[2];
7b863bd5 2619 struct gcpro gcpro1, gcpro2;
eb4ffa4e
RS
2620 int count = specpdl_ptr - specpdl;
2621
2622 specbind (Qcursor_in_echo_area, Qt);
7b863bd5 2623
f5313ed9
RS
2624 map = Fsymbol_value (intern ("query-replace-map"));
2625
7b863bd5
JB
2626 CHECK_STRING (prompt, 0);
2627 xprompt = prompt;
2628 GCPRO2 (prompt, xprompt);
2629
eff95916
GM
2630#ifdef HAVE_X_WINDOWS
2631 if (display_busy_cursor_p)
2632 cancel_busy_cursor ();
2633#endif
2634
7b863bd5
JB
2635 while (1)
2636 {
eb4ffa4e 2637
0ef68e8a 2638#ifdef HAVE_MENUS
588064ce 2639 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
bdd8d692 2640 && use_dialog_box
0ef68e8a 2641 && have_menus_p ())
1db4cfb2
RS
2642 {
2643 Lisp_Object pane, menu;
a3b14a45 2644 redisplay_preserve_echo_area ();
1db4cfb2
RS
2645 pane = Fcons (Fcons (build_string ("Yes"), Qt),
2646 Fcons (Fcons (build_string ("No"), Qnil),
2647 Qnil));
ec26e1b9 2648 menu = Fcons (prompt, pane);
d2f28f78 2649 obj = Fx_popup_dialog (Qt, menu);
1db4cfb2
RS
2650 answer = !NILP (obj);
2651 break;
2652 }
0ef68e8a 2653#endif /* HAVE_MENUS */
dfa89228 2654 cursor_in_echo_area = 1;
b312cc52 2655 choose_minibuf_frame ();
ea35ce3d 2656 message_with_string ("%s(y or n) ", xprompt, 0);
7b863bd5 2657
2d8e7e1f
RS
2658 if (minibuffer_auto_raise)
2659 {
2660 Lisp_Object mini_frame;
2661
2662 mini_frame = WINDOW_FRAME (XWINDOW (minibuf_window));
2663
2664 Fraise_frame (mini_frame);
2665 }
2666
7ba13c57 2667 obj = read_filtered_event (1, 0, 0, 0);
dfa89228
KH
2668 cursor_in_echo_area = 0;
2669 /* If we need to quit, quit with cursor_in_echo_area = 0. */
2670 QUIT;
a63f658b 2671
f5313ed9 2672 key = Fmake_vector (make_number (1), obj);
aad2a123 2673 def = Flookup_key (map, key, Qt);
7b863bd5 2674
f5313ed9
RS
2675 if (EQ (def, intern ("skip")))
2676 {
2677 answer = 0;
2678 break;
2679 }
2680 else if (EQ (def, intern ("act")))
2681 {
2682 answer = 1;
2683 break;
2684 }
29944b73
RS
2685 else if (EQ (def, intern ("recenter")))
2686 {
2687 Frecenter (Qnil);
2688 xprompt = prompt;
2689 continue;
2690 }
f5313ed9 2691 else if (EQ (def, intern ("quit")))
7b863bd5 2692 Vquit_flag = Qt;
ec63af1b
RS
2693 /* We want to exit this command for exit-prefix,
2694 and this is the only way to do it. */
2695 else if (EQ (def, intern ("exit-prefix")))
2696 Vquit_flag = Qt;
f5313ed9 2697
7b863bd5 2698 QUIT;
20aa96aa
JB
2699
2700 /* If we don't clear this, then the next call to read_char will
2701 return quit_char again, and we'll enter an infinite loop. */
088880f1 2702 Vquit_flag = Qnil;
7b863bd5
JB
2703
2704 Fding (Qnil);
2705 Fdiscard_input ();
2706 if (EQ (xprompt, prompt))
2707 {
2708 args[0] = build_string ("Please answer y or n. ");
2709 args[1] = prompt;
2710 xprompt = Fconcat (2, args);
2711 }
2712 }
2713 UNGCPRO;
6a8a9750 2714
09c95874
RS
2715 if (! noninteractive)
2716 {
2717 cursor_in_echo_area = -1;
ea35ce3d
RS
2718 message_with_string (answer ? "%s(y or n) y" : "%s(y or n) n",
2719 xprompt, 0);
09c95874 2720 }
6a8a9750 2721
eb4ffa4e 2722 unbind_to (count, Qnil);
f5313ed9 2723 return answer ? Qt : Qnil;
7b863bd5
JB
2724}
2725\f
2726/* This is how C code calls `yes-or-no-p' and allows the user
2727 to redefined it.
2728
2729 Anything that calls this function must protect from GC! */
2730
2731Lisp_Object
2732do_yes_or_no_p (prompt)
2733 Lisp_Object prompt;
2734{
2735 return call1 (intern ("yes-or-no-p"), prompt);
2736}
2737
2738/* Anything that calls this function must protect from GC! */
2739
2740DEFUN ("yes-or-no-p", Fyes_or_no_p, Syes_or_no_p, 1, 1, 0,
c763f396
RS
2741 "Ask user a yes-or-no question. Return t if answer is yes.\n\
2742Takes one argument, which is the string to display to ask the question.\n\
2743It should end in a space; `yes-or-no-p' adds `(yes or no) ' to it.\n\
2744The user must confirm the answer with RET,\n\
0c6ca44b
DL
2745and can edit it until it has been confirmed.\n\
2746\n\
2747Under a windowing system a dialog box will be used if `last-nonmenu-event'\n\
2748is nil.")
7b863bd5
JB
2749 (prompt)
2750 Lisp_Object prompt;
2751{
2752 register Lisp_Object ans;
2753 Lisp_Object args[2];
2754 struct gcpro gcpro1;
2755
2756 CHECK_STRING (prompt, 0);
2757
0ef68e8a 2758#ifdef HAVE_MENUS
b4f334f7 2759 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
bdd8d692 2760 && use_dialog_box
0ef68e8a 2761 && have_menus_p ())
1db4cfb2
RS
2762 {
2763 Lisp_Object pane, menu, obj;
a3b14a45 2764 redisplay_preserve_echo_area ();
1db4cfb2
RS
2765 pane = Fcons (Fcons (build_string ("Yes"), Qt),
2766 Fcons (Fcons (build_string ("No"), Qnil),
2767 Qnil));
2768 GCPRO1 (pane);
ec26e1b9 2769 menu = Fcons (prompt, pane);
b5ccb0a9 2770 obj = Fx_popup_dialog (Qt, menu);
1db4cfb2
RS
2771 UNGCPRO;
2772 return obj;
2773 }
0ef68e8a 2774#endif /* HAVE_MENUS */
1db4cfb2 2775
7b863bd5
JB
2776 args[0] = prompt;
2777 args[1] = build_string ("(yes or no) ");
2778 prompt = Fconcat (2, args);
2779
2780 GCPRO1 (prompt);
1db4cfb2 2781
7b863bd5
JB
2782 while (1)
2783 {
0ce830bc 2784 ans = Fdowncase (Fread_from_minibuffer (prompt, Qnil, Qnil, Qnil,
b24014d4
KH
2785 Qyes_or_no_p_history, Qnil,
2786 Qnil));
7b863bd5
JB
2787 if (XSTRING (ans)->size == 3 && !strcmp (XSTRING (ans)->data, "yes"))
2788 {
2789 UNGCPRO;
2790 return Qt;
2791 }
2792 if (XSTRING (ans)->size == 2 && !strcmp (XSTRING (ans)->data, "no"))
2793 {
2794 UNGCPRO;
2795 return Qnil;
2796 }
2797
2798 Fding (Qnil);
2799 Fdiscard_input ();
2800 message ("Please answer yes or no.");
99dc4745 2801 Fsleep_for (make_number (2), Qnil);
7b863bd5 2802 }
7b863bd5
JB
2803}
2804\f
f4b50f66 2805DEFUN ("load-average", Fload_average, Sload_average, 0, 1, 0,
7b863bd5
JB
2806 "Return list of 1 minute, 5 minute and 15 minute load averages.\n\
2807Each of the three load averages is multiplied by 100,\n\
daa37602 2808then converted to integer.\n\
f4b50f66
RS
2809When USE-FLOATS is non-nil, floats will be used instead of integers.\n\
2810These floats are not multiplied by 100.\n\n\
daa37602
JB
2811If the 5-minute or 15-minute load averages are not available, return a\n\
2812shortened list, containing only those averages which are available.")
f4b50f66
RS
2813 (use_floats)
2814 Lisp_Object use_floats;
7b863bd5 2815{
daa37602
JB
2816 double load_ave[3];
2817 int loads = getloadavg (load_ave, 3);
f4b50f66 2818 Lisp_Object ret = Qnil;
7b863bd5 2819
daa37602
JB
2820 if (loads < 0)
2821 error ("load-average not implemented for this operating system");
2822
f4b50f66
RS
2823 while (loads-- > 0)
2824 {
2825 Lisp_Object load = (NILP (use_floats) ?
2826 make_number ((int) (100.0 * load_ave[loads]))
2827 : make_float (load_ave[loads]));
2828 ret = Fcons (load, ret);
2829 }
daa37602
JB
2830
2831 return ret;
2832}
7b863bd5
JB
2833\f
2834Lisp_Object Vfeatures;
2835
2836DEFUN ("featurep", Ffeaturep, Sfeaturep, 1, 1, 0,
2837 "Returns t if FEATURE is present in this Emacs.\n\
2838Use this to conditionalize execution of lisp code based on the presence or\n\
2839absence of emacs or environment extensions.\n\
2840Use `provide' to declare that a feature is available.\n\
2841This function looks at the value of the variable `features'.")
b4f334f7 2842 (feature)
7b863bd5
JB
2843 Lisp_Object feature;
2844{
2845 register Lisp_Object tem;
2846 CHECK_SYMBOL (feature, 0);
2847 tem = Fmemq (feature, Vfeatures);
265a9e55 2848 return (NILP (tem)) ? Qnil : Qt;
7b863bd5
JB
2849}
2850
2851DEFUN ("provide", Fprovide, Sprovide, 1, 1, 0,
2852 "Announce that FEATURE is a feature of the current Emacs.")
b4f334f7 2853 (feature)
7b863bd5
JB
2854 Lisp_Object feature;
2855{
2856 register Lisp_Object tem;
2857 CHECK_SYMBOL (feature, 0);
265a9e55 2858 if (!NILP (Vautoload_queue))
7b863bd5
JB
2859 Vautoload_queue = Fcons (Fcons (Vfeatures, Qnil), Vautoload_queue);
2860 tem = Fmemq (feature, Vfeatures);
265a9e55 2861 if (NILP (tem))
7b863bd5 2862 Vfeatures = Fcons (feature, Vfeatures);
68732608 2863 LOADHIST_ATTACH (Fcons (Qprovide, feature));
7b863bd5
JB
2864 return feature;
2865}
2866
53d5acf5 2867DEFUN ("require", Frequire, Srequire, 1, 3, 0,
7b863bd5
JB
2868 "If feature FEATURE is not loaded, load it from FILENAME.\n\
2869If FEATURE is not a member of the list `features', then the feature\n\
2870is not loaded; so load the file FILENAME.\n\
f0c030b3 2871If FILENAME is omitted, the printname of FEATURE is used as the file name,\n\
53d5acf5
RS
2872but in this case `load' insists on adding the suffix `.el' or `.elc'.\n\
2873If the optional third argument NOERROR is non-nil,\n\
2874then return nil if the file is not found.\n\
2875Normally the return value is FEATURE.")
2876 (feature, file_name, noerror)
2877 Lisp_Object feature, file_name, noerror;
7b863bd5
JB
2878{
2879 register Lisp_Object tem;
2880 CHECK_SYMBOL (feature, 0);
2881 tem = Fmemq (feature, Vfeatures);
68732608 2882 LOADHIST_ATTACH (Fcons (Qrequire, feature));
265a9e55 2883 if (NILP (tem))
7b863bd5
JB
2884 {
2885 int count = specpdl_ptr - specpdl;
2886
2887 /* Value saved here is to be restored into Vautoload_queue */
2888 record_unwind_protect (un_autoload, Vautoload_queue);
2889 Vautoload_queue = Qt;
2890
53d5acf5
RS
2891 tem = Fload (NILP (file_name) ? Fsymbol_name (feature) : file_name,
2892 noerror, Qt, Qnil, (NILP (file_name) ? Qt : Qnil));
2893 /* If load failed entirely, return nil. */
2894 if (NILP (tem))
41857307 2895 return unbind_to (count, Qnil);
7b863bd5
JB
2896
2897 tem = Fmemq (feature, Vfeatures);
265a9e55 2898 if (NILP (tem))
7b863bd5 2899 error ("Required feature %s was not provided",
fdb5bec0 2900 XSYMBOL (feature)->name->data);
7b863bd5
JB
2901
2902 /* Once loading finishes, don't undo it. */
2903 Vautoload_queue = Qt;
2904 feature = unbind_to (count, feature);
2905 }
2906 return feature;
2907}
2908\f
b4f334f7
KH
2909/* Primitives for work of the "widget" library.
2910 In an ideal world, this section would not have been necessary.
2911 However, lisp function calls being as slow as they are, it turns
2912 out that some functions in the widget library (wid-edit.el) are the
2913 bottleneck of Widget operation. Here is their translation to C,
2914 for the sole reason of efficiency. */
2915
2916DEFUN ("widget-plist-member", Fwidget_plist_member, Swidget_plist_member, 2, 2, 0,
2917 "Return non-nil if PLIST has the property PROP.\n\
2918PLIST is a property list, which is a list of the form\n\
2919\(PROP1 VALUE1 PROP2 VALUE2 ...\). PROP is a symbol.\n\
2920Unlike `plist-get', this allows you to distinguish between a missing\n\
2921property and a property with the value nil.\n\
2922The value is actually the tail of PLIST whose car is PROP.")
2923 (plist, prop)
2924 Lisp_Object plist, prop;
2925{
2926 while (CONSP (plist) && !EQ (XCAR (plist), prop))
2927 {
2928 QUIT;
2929 plist = XCDR (plist);
2930 plist = CDR (plist);
2931 }
2932 return plist;
2933}
2934
2935DEFUN ("widget-put", Fwidget_put, Swidget_put, 3, 3, 0,
2936 "In WIDGET, set PROPERTY to VALUE.\n\
2937The value can later be retrieved with `widget-get'.")
2938 (widget, property, value)
2939 Lisp_Object widget, property, value;
2940{
2941 CHECK_CONS (widget, 1);
2942 XCDR (widget) = Fplist_put (XCDR (widget), property, value);
f7993597 2943 return value;
b4f334f7
KH
2944}
2945
2946DEFUN ("widget-get", Fwidget_get, Swidget_get, 2, 2, 0,
2947 "In WIDGET, get the value of PROPERTY.\n\
2948The value could either be specified when the widget was created, or\n\
2949later with `widget-put'.")
2950 (widget, property)
2951 Lisp_Object widget, property;
2952{
2953 Lisp_Object tmp;
2954
2955 while (1)
2956 {
2957 if (NILP (widget))
2958 return Qnil;
2959 CHECK_CONS (widget, 1);
2960 tmp = Fwidget_plist_member (XCDR (widget), property);
2961 if (CONSP (tmp))
2962 {
2963 tmp = XCDR (tmp);
2964 return CAR (tmp);
2965 }
2966 tmp = XCAR (widget);
2967 if (NILP (tmp))
2968 return Qnil;
2969 widget = Fget (tmp, Qwidget_type);
2970 }
2971}
2972
2973DEFUN ("widget-apply", Fwidget_apply, Swidget_apply, 2, MANY, 0,
2974 "Apply the value of WIDGET's PROPERTY to the widget itself.\n\
2975ARGS are passed as extra arguments to the function.")
2976 (nargs, args)
2977 int nargs;
2978 Lisp_Object *args;
2979{
2980 /* This function can GC. */
2981 Lisp_Object newargs[3];
2982 struct gcpro gcpro1, gcpro2;
2983 Lisp_Object result;
2984
2985 newargs[0] = Fwidget_get (args[0], args[1]);
2986 newargs[1] = args[0];
2987 newargs[2] = Flist (nargs - 2, args + 2);
2988 GCPRO2 (newargs[0], newargs[2]);
2989 result = Fapply (3, newargs);
2990 UNGCPRO;
2991 return result;
2992}
2993\f
24c129e4
KH
2994/* base64 encode/decode functions.
2995 Based on code from GNU recode. */
2996
2997#define MIME_LINE_LENGTH 76
2998
2999#define IS_ASCII(Character) \
3000 ((Character) < 128)
3001#define IS_BASE64(Character) \
3002 (IS_ASCII (Character) && base64_char_to_value[Character] >= 0)
9a092df0
PF
3003#define IS_BASE64_IGNORABLE(Character) \
3004 ((Character) == ' ' || (Character) == '\t' || (Character) == '\n' \
3005 || (Character) == '\f' || (Character) == '\r')
3006
3007/* Used by base64_decode_1 to retrieve a non-base64-ignorable
3008 character or return retval if there are no characters left to
3009 process. */
3010#define READ_QUADRUPLET_BYTE(retval) \
3011 do \
3012 { \
3013 if (i == length) \
3014 return (retval); \
3015 c = from[i++]; \
3016 } \
3017 while (IS_BASE64_IGNORABLE (c))
24c129e4 3018
4b2e75e6
EZ
3019/* Don't use alloca for regions larger than this, lest we overflow
3020 their stack. */
3021#define MAX_ALLOCA 16*1024
3022
24c129e4
KH
3023/* Table of characters coding the 64 values. */
3024static char base64_value_to_char[64] =
3025{
3026 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', /* 0- 9 */
3027 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', /* 10-19 */
3028 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', /* 20-29 */
3029 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', /* 30-39 */
3030 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', /* 40-49 */
3031 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', /* 50-59 */
3032 '8', '9', '+', '/' /* 60-63 */
3033};
3034
3035/* Table of base64 values for first 128 characters. */
3036static short base64_char_to_value[128] =
3037{
3038 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 0- 9 */
3039 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 10- 19 */
3040 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 20- 29 */
3041 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 30- 39 */
3042 -1, -1, -1, 62, -1, -1, -1, 63, 52, 53, /* 40- 49 */
3043 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, /* 50- 59 */
3044 -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, /* 60- 69 */
3045 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, /* 70- 79 */
3046 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, /* 80- 89 */
3047 25, -1, -1, -1, -1, -1, -1, 26, 27, 28, /* 90- 99 */
3048 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, /* 100-109 */
3049 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, /* 110-119 */
3050 49, 50, 51, -1, -1, -1, -1, -1 /* 120-127 */
3051};
3052
3053/* The following diagram shows the logical steps by which three octets
3054 get transformed into four base64 characters.
3055
3056 .--------. .--------. .--------.
3057 |aaaaaabb| |bbbbcccc| |ccdddddd|
3058 `--------' `--------' `--------'
3059 6 2 4 4 2 6
3060 .--------+--------+--------+--------.
3061 |00aaaaaa|00bbbbbb|00cccccc|00dddddd|
3062 `--------+--------+--------+--------'
3063
3064 .--------+--------+--------+--------.
3065 |AAAAAAAA|BBBBBBBB|CCCCCCCC|DDDDDDDD|
3066 `--------+--------+--------+--------'
3067
3068 The octets are divided into 6 bit chunks, which are then encoded into
3069 base64 characters. */
3070
3071
3072static int base64_encode_1 P_ ((const char *, char *, int, int));
3073static int base64_decode_1 P_ ((const char *, char *, int));
3074
3075DEFUN ("base64-encode-region", Fbase64_encode_region, Sbase64_encode_region,
3076 2, 3, "r",
46ac5b26 3077 "Base64-encode the region between BEG and END.\n\
15a9a50c 3078Return the length of the encoded text.\n\
24c129e4
KH
3079Optional third argument NO-LINE-BREAK means do not break long lines\n\
3080into shorter lines.")
3081 (beg, end, no_line_break)
3082 Lisp_Object beg, end, no_line_break;
3083{
3084 char *encoded;
3085 int allength, length;
3086 int ibeg, iend, encoded_length;
3087 int old_pos = PT;
3088
3089 validate_region (&beg, &end);
3090
3091 ibeg = CHAR_TO_BYTE (XFASTINT (beg));
3092 iend = CHAR_TO_BYTE (XFASTINT (end));
3093 move_gap_both (XFASTINT (beg), ibeg);
3094
3095 /* We need to allocate enough room for encoding the text.
3096 We need 33 1/3% more space, plus a newline every 76
3097 characters, and then we round up. */
3098 length = iend - ibeg;
3099 allength = length + length/3 + 1;
3100 allength += allength / MIME_LINE_LENGTH + 1 + 6;
3101
4b2e75e6
EZ
3102 if (allength <= MAX_ALLOCA)
3103 encoded = (char *) alloca (allength);
3104 else
3105 encoded = (char *) xmalloc (allength);
24c129e4
KH
3106 encoded_length = base64_encode_1 (BYTE_POS_ADDR (ibeg), encoded, length,
3107 NILP (no_line_break));
3108 if (encoded_length > allength)
3109 abort ();
3110
3111 /* Now we have encoded the region, so we insert the new contents
3112 and delete the old. (Insert first in order to preserve markers.) */
8b835738 3113 SET_PT_BOTH (XFASTINT (beg), ibeg);
24c129e4 3114 insert (encoded, encoded_length);
4b2e75e6 3115 if (allength > MAX_ALLOCA)
8c217645 3116 xfree (encoded);
24c129e4
KH
3117 del_range_byte (ibeg + encoded_length, iend + encoded_length, 1);
3118
3119 /* If point was outside of the region, restore it exactly; else just
3120 move to the beginning of the region. */
3121 if (old_pos >= XFASTINT (end))
3122 old_pos += encoded_length - (XFASTINT (end) - XFASTINT (beg));
8b835738
AS
3123 else if (old_pos > XFASTINT (beg))
3124 old_pos = XFASTINT (beg);
24c129e4
KH
3125 SET_PT (old_pos);
3126
3127 /* We return the length of the encoded text. */
3128 return make_number (encoded_length);
3129}
3130
3131DEFUN ("base64-encode-string", Fbase64_encode_string, Sbase64_encode_string,
c22554ac
KH
3132 1, 2, 0,
3133 "Base64-encode STRING and return the result.\n\
3134Optional second argument NO-LINE-BREAK means do not break long lines\n\
3135into shorter lines.")
3136 (string, no_line_break)
915b8312 3137 Lisp_Object string, no_line_break;
24c129e4
KH
3138{
3139 int allength, length, encoded_length;
3140 char *encoded;
4b2e75e6 3141 Lisp_Object encoded_string;
24c129e4
KH
3142
3143 CHECK_STRING (string, 1);
3144
7f8a0840
KH
3145 /* We need to allocate enough room for encoding the text.
3146 We need 33 1/3% more space, plus a newline every 76
3147 characters, and then we round up. */
24c129e4 3148 length = STRING_BYTES (XSTRING (string));
7f8a0840
KH
3149 allength = length + length/3 + 1;
3150 allength += allength / MIME_LINE_LENGTH + 1 + 6;
24c129e4
KH
3151
3152 /* We need to allocate enough room for decoding the text. */
4b2e75e6
EZ
3153 if (allength <= MAX_ALLOCA)
3154 encoded = (char *) alloca (allength);
3155 else
3156 encoded = (char *) xmalloc (allength);
24c129e4
KH
3157
3158 encoded_length = base64_encode_1 (XSTRING (string)->data,
c22554ac 3159 encoded, length, NILP (no_line_break));
24c129e4
KH
3160 if (encoded_length > allength)
3161 abort ();
3162
4b2e75e6
EZ
3163 encoded_string = make_unibyte_string (encoded, encoded_length);
3164 if (allength > MAX_ALLOCA)
8c217645 3165 xfree (encoded);
4b2e75e6
EZ
3166
3167 return encoded_string;
24c129e4
KH
3168}
3169
3170static int
3171base64_encode_1 (from, to, length, line_break)
3172 const char *from;
3173 char *to;
3174 int length;
3175 int line_break;
3176{
3177 int counter = 0, i = 0;
3178 char *e = to;
3179 unsigned char c;
3180 unsigned int value;
3181
3182 while (i < length)
3183 {
3184 c = from[i++];
3185
3186 /* Wrap line every 76 characters. */
3187
3188 if (line_break)
3189 {
3190 if (counter < MIME_LINE_LENGTH / 4)
3191 counter++;
3192 else
3193 {
3194 *e++ = '\n';
3195 counter = 1;
3196 }
3197 }
3198
3199 /* Process first byte of a triplet. */
3200
3201 *e++ = base64_value_to_char[0x3f & c >> 2];
3202 value = (0x03 & c) << 4;
3203
3204 /* Process second byte of a triplet. */
3205
3206 if (i == length)
3207 {
3208 *e++ = base64_value_to_char[value];
3209 *e++ = '=';
3210 *e++ = '=';
3211 break;
3212 }
3213
3214 c = from[i++];
3215
3216 *e++ = base64_value_to_char[value | (0x0f & c >> 4)];
3217 value = (0x0f & c) << 2;
3218
3219 /* Process third byte of a triplet. */
3220
3221 if (i == length)
3222 {
3223 *e++ = base64_value_to_char[value];
3224 *e++ = '=';
3225 break;
3226 }
3227
3228 c = from[i++];
3229
3230 *e++ = base64_value_to_char[value | (0x03 & c >> 6)];
3231 *e++ = base64_value_to_char[0x3f & c];
3232 }
3233
24c129e4
KH
3234 return e - to;
3235}
3236
3237
3238DEFUN ("base64-decode-region", Fbase64_decode_region, Sbase64_decode_region,
3239 2, 2, "r",
46ac5b26 3240 "Base64-decode the region between BEG and END.\n\
15a9a50c 3241Return the length of the decoded text.\n\
3d6c79c5 3242If the region can't be decoded, signal an error and don't modify the buffer.")
24c129e4
KH
3243 (beg, end)
3244 Lisp_Object beg, end;
3245{
3246 int ibeg, iend, length;
3247 char *decoded;
3248 int old_pos = PT;
3249 int decoded_length;
9b703a38 3250 int inserted_chars;
24c129e4
KH
3251
3252 validate_region (&beg, &end);
3253
3254 ibeg = CHAR_TO_BYTE (XFASTINT (beg));
3255 iend = CHAR_TO_BYTE (XFASTINT (end));
3256
3257 length = iend - ibeg;
3258 /* We need to allocate enough room for decoding the text. */
4b2e75e6
EZ
3259 if (length <= MAX_ALLOCA)
3260 decoded = (char *) alloca (length);
3261 else
3262 decoded = (char *) xmalloc (length);
24c129e4
KH
3263
3264 move_gap_both (XFASTINT (beg), ibeg);
3265 decoded_length = base64_decode_1 (BYTE_POS_ADDR (ibeg), decoded, length);
3266 if (decoded_length > length)
3267 abort ();
3268
3269 if (decoded_length < 0)
8c217645
KH
3270 {
3271 /* The decoding wasn't possible. */
3272 if (length > MAX_ALLOCA)
3273 xfree (decoded);
3d6c79c5 3274 error ("Base64 decoding failed");
8c217645 3275 }
24c129e4
KH
3276
3277 /* Now we have decoded the region, so we insert the new contents
3278 and delete the old. (Insert first in order to preserve markers.) */
9b703a38
KH
3279 /* We insert two spaces, then insert the decoded text in between
3280 them, at last, delete those extra two spaces. This is to avoid
922dfd86 3281 byte combining while inserting. */
9b703a38
KH
3282 TEMP_SET_PT_BOTH (XFASTINT (beg), ibeg);
3283 insert_1_both (" ", 2, 2, 0, 1, 0);
3284 TEMP_SET_PT_BOTH (XFASTINT (beg) + 1, ibeg + 1);
24c129e4 3285 insert (decoded, decoded_length);
9b703a38 3286 inserted_chars = PT - (XFASTINT (beg) + 1);
4b2e75e6 3287 if (length > MAX_ALLOCA)
8c217645 3288 xfree (decoded);
3d6c79c5 3289 /* At first delete the original text. This never causes byte
922dfd86
KH
3290 combining. */
3291 del_range_both (PT + 1, PT_BYTE + 1, XFASTINT (end) + inserted_chars + 2,
9b703a38 3292 iend + decoded_length + 2, 1);
922dfd86
KH
3293 /* Next delete the extra spaces. This will cause byte combining
3294 error. */
3295 del_range_both (PT, PT_BYTE, PT + 1, PT_BYTE + 1, 0);
3296 del_range_both (XFASTINT (beg), ibeg, XFASTINT (beg) + 1, ibeg + 1, 0);
9b703a38 3297 inserted_chars = PT - XFASTINT (beg);
24c129e4
KH
3298
3299 /* If point was outside of the region, restore it exactly; else just
3300 move to the beginning of the region. */
3301 if (old_pos >= XFASTINT (end))
9b703a38
KH
3302 old_pos += inserted_chars - (XFASTINT (end) - XFASTINT (beg));
3303 else if (old_pos > XFASTINT (beg))
3304 old_pos = XFASTINT (beg);
e52ad9c9 3305 SET_PT (old_pos > ZV ? ZV : old_pos);
24c129e4 3306
9b703a38 3307 return make_number (inserted_chars);
24c129e4
KH
3308}
3309
3310DEFUN ("base64-decode-string", Fbase64_decode_string, Sbase64_decode_string,
3311 1, 1, 0,
3d6c79c5
GM
3312 "Base64-decode STRING and return the result.")
3313 (string)
24c129e4
KH
3314 Lisp_Object string;
3315{
3316 char *decoded;
3317 int length, decoded_length;
4b2e75e6 3318 Lisp_Object decoded_string;
24c129e4
KH
3319
3320 CHECK_STRING (string, 1);
3321
3322 length = STRING_BYTES (XSTRING (string));
3323 /* We need to allocate enough room for decoding the text. */
4b2e75e6
EZ
3324 if (length <= MAX_ALLOCA)
3325 decoded = (char *) alloca (length);
3326 else
3327 decoded = (char *) xmalloc (length);
24c129e4
KH
3328
3329 decoded_length = base64_decode_1 (XSTRING (string)->data, decoded, length);
3330 if (decoded_length > length)
3331 abort ();
3d6c79c5 3332 else if (decoded_length >= 0)
8c217645 3333 decoded_string = make_string (decoded, decoded_length);
3d6c79c5
GM
3334 else
3335 decoded_string = Qnil;
24c129e4 3336
4b2e75e6 3337 if (length > MAX_ALLOCA)
8c217645 3338 xfree (decoded);
3d6c79c5
GM
3339 if (!STRINGP (decoded_string))
3340 error ("Base64 decoding failed");
4b2e75e6
EZ
3341
3342 return decoded_string;
24c129e4
KH
3343}
3344
3345static int
3346base64_decode_1 (from, to, length)
3347 const char *from;
3348 char *to;
3349 int length;
3350{
9a092df0 3351 int i = 0;
24c129e4
KH
3352 char *e = to;
3353 unsigned char c;
3354 unsigned long value;
3355
9a092df0 3356 while (1)
24c129e4 3357 {
9a092df0 3358 /* Process first byte of a quadruplet. */
24c129e4 3359
9a092df0 3360 READ_QUADRUPLET_BYTE (e-to);
24c129e4
KH
3361
3362 if (!IS_BASE64 (c))
3363 return -1;
3364 value = base64_char_to_value[c] << 18;
3365
3366 /* Process second byte of a quadruplet. */
3367
9a092df0 3368 READ_QUADRUPLET_BYTE (-1);
24c129e4
KH
3369
3370 if (!IS_BASE64 (c))
3371 return -1;
3372 value |= base64_char_to_value[c] << 12;
3373
3374 *e++ = (unsigned char) (value >> 16);
3375
3376 /* Process third byte of a quadruplet. */
9a092df0
PF
3377
3378 READ_QUADRUPLET_BYTE (-1);
24c129e4
KH
3379
3380 if (c == '=')
3381 {
9a092df0
PF
3382 READ_QUADRUPLET_BYTE (-1);
3383
24c129e4
KH
3384 if (c != '=')
3385 return -1;
3386 continue;
3387 }
3388
3389 if (!IS_BASE64 (c))
3390 return -1;
3391 value |= base64_char_to_value[c] << 6;
3392
3393 *e++ = (unsigned char) (0xff & value >> 8);
3394
3395 /* Process fourth byte of a quadruplet. */
3396
9a092df0 3397 READ_QUADRUPLET_BYTE (-1);
24c129e4
KH
3398
3399 if (c == '=')
3400 continue;
3401
3402 if (!IS_BASE64 (c))
3403 return -1;
3404 value |= base64_char_to_value[c];
3405
3406 *e++ = (unsigned char) (0xff & value);
3407 }
24c129e4 3408}
d80c6c11
GM
3409
3410
3411\f
3412/***********************************************************************
3413 ***** *****
3414 ***** Hash Tables *****
3415 ***** *****
3416 ***********************************************************************/
3417
3418/* Implemented by gerd@gnu.org. This hash table implementation was
3419 inspired by CMUCL hash tables. */
3420
3421/* Ideas:
3422
3423 1. For small tables, association lists are probably faster than
3424 hash tables because they have lower overhead.
3425
3426 For uses of hash tables where the O(1) behavior of table
3427 operations is not a requirement, it might therefore be a good idea
3428 not to hash. Instead, we could just do a linear search in the
3429 key_and_value vector of the hash table. This could be done
3430 if a `:linear-search t' argument is given to make-hash-table. */
3431
3432
3433/* Return the contents of vector V at index IDX. */
3434
3435#define AREF(V, IDX) XVECTOR (V)->contents[IDX]
3436
3437/* Value is the key part of entry IDX in hash table H. */
3438
3439#define HASH_KEY(H, IDX) AREF ((H)->key_and_value, 2 * (IDX))
3440
3441/* Value is the value part of entry IDX in hash table H. */
3442
3443#define HASH_VALUE(H, IDX) AREF ((H)->key_and_value, 2 * (IDX) + 1)
3444
3445/* Value is the index of the next entry following the one at IDX
3446 in hash table H. */
3447
3448#define HASH_NEXT(H, IDX) AREF ((H)->next, (IDX))
3449
3450/* Value is the hash code computed for entry IDX in hash table H. */
3451
3452#define HASH_HASH(H, IDX) AREF ((H)->hash, (IDX))
3453
3454/* Value is the index of the element in hash table H that is the
3455 start of the collision list at index IDX in the index vector of H. */
3456
3457#define HASH_INDEX(H, IDX) AREF ((H)->index, (IDX))
3458
3459/* Value is the size of hash table H. */
3460
3461#define HASH_TABLE_SIZE(H) XVECTOR ((H)->next)->size
3462
3463/* The list of all weak hash tables. Don't staticpro this one. */
3464
3465Lisp_Object Vweak_hash_tables;
3466
3467/* Various symbols. */
3468
f899c503 3469Lisp_Object Qhash_table_p, Qeq, Qeql, Qequal, Qkey, Qvalue;
ee0403b3 3470Lisp_Object QCtest, QCsize, QCrehash_size, QCrehash_threshold, QCweakness;
d80c6c11
GM
3471Lisp_Object Qhash_table_test;
3472
3473/* Function prototypes. */
3474
3475static struct Lisp_Hash_Table *check_hash_table P_ ((Lisp_Object));
3476static int next_almost_prime P_ ((int));
3477static int get_key_arg P_ ((Lisp_Object, int, Lisp_Object *, char *));
d80c6c11 3478static void maybe_resize_hash_table P_ ((struct Lisp_Hash_Table *));
d80c6c11
GM
3479static int cmpfn_eql P_ ((struct Lisp_Hash_Table *, Lisp_Object, unsigned,
3480 Lisp_Object, unsigned));
3481static int cmpfn_equal P_ ((struct Lisp_Hash_Table *, Lisp_Object, unsigned,
3482 Lisp_Object, unsigned));
3483static int cmpfn_user_defined P_ ((struct Lisp_Hash_Table *, Lisp_Object,
3484 unsigned, Lisp_Object, unsigned));
3485static unsigned hashfn_eq P_ ((struct Lisp_Hash_Table *, Lisp_Object));
3486static unsigned hashfn_eql P_ ((struct Lisp_Hash_Table *, Lisp_Object));
3487static unsigned hashfn_equal P_ ((struct Lisp_Hash_Table *, Lisp_Object));
3488static unsigned hashfn_user_defined P_ ((struct Lisp_Hash_Table *,
3489 Lisp_Object));
3490static unsigned sxhash_string P_ ((unsigned char *, int));
3491static unsigned sxhash_list P_ ((Lisp_Object, int));
3492static unsigned sxhash_vector P_ ((Lisp_Object, int));
3493static unsigned sxhash_bool_vector P_ ((Lisp_Object));
a0b581cc 3494static int sweep_weak_table P_ ((struct Lisp_Hash_Table *, int));
d80c6c11
GM
3495
3496
3497\f
3498/***********************************************************************
3499 Utilities
3500 ***********************************************************************/
3501
3502/* If OBJ is a Lisp hash table, return a pointer to its struct
3503 Lisp_Hash_Table. Otherwise, signal an error. */
3504
3505static struct Lisp_Hash_Table *
3506check_hash_table (obj)
3507 Lisp_Object obj;
3508{
3509 CHECK_HASH_TABLE (obj, 0);
3510 return XHASH_TABLE (obj);
3511}
3512
3513
3514/* Value is the next integer I >= N, N >= 0 which is "almost" a prime
3515 number. */
3516
3517static int
3518next_almost_prime (n)
3519 int n;
3520{
3521 if (n % 2 == 0)
3522 n += 1;
3523 if (n % 3 == 0)
3524 n += 2;
3525 if (n % 7 == 0)
3526 n += 4;
3527 return n;
3528}
3529
3530
3531/* Find KEY in ARGS which has size NARGS. Don't consider indices for
3532 which USED[I] is non-zero. If found at index I in ARGS, set
3533 USED[I] and USED[I + 1] to 1, and return I + 1. Otherwise return
3534 -1. This function is used to extract a keyword/argument pair from
3535 a DEFUN parameter list. */
3536
3537static int
3538get_key_arg (key, nargs, args, used)
3539 Lisp_Object key;
3540 int nargs;
3541 Lisp_Object *args;
3542 char *used;
3543{
3544 int i;
3545
3546 for (i = 0; i < nargs - 1; ++i)
3547 if (!used[i] && EQ (args[i], key))
3548 break;
3549
3550 if (i >= nargs - 1)
3551 i = -1;
3552 else
3553 {
3554 used[i++] = 1;
3555 used[i] = 1;
3556 }
3557
3558 return i;
3559}
3560
3561
3562/* Return a Lisp vector which has the same contents as VEC but has
3563 size NEW_SIZE, NEW_SIZE >= VEC->size. Entries in the resulting
3564 vector that are not copied from VEC are set to INIT. */
3565
fa7dad5b 3566Lisp_Object
d80c6c11
GM
3567larger_vector (vec, new_size, init)
3568 Lisp_Object vec;
3569 int new_size;
3570 Lisp_Object init;
3571{
3572 struct Lisp_Vector *v;
3573 int i, old_size;
3574
3575 xassert (VECTORP (vec));
3576 old_size = XVECTOR (vec)->size;
3577 xassert (new_size >= old_size);
3578
3579 v = allocate_vectorlike (new_size);
3580 v->size = new_size;
3581 bcopy (XVECTOR (vec)->contents, v->contents,
3582 old_size * sizeof *v->contents);
3583 for (i = old_size; i < new_size; ++i)
3584 v->contents[i] = init;
3585 XSETVECTOR (vec, v);
3586 return vec;
3587}
3588
3589
3590/***********************************************************************
3591 Low-level Functions
3592 ***********************************************************************/
3593
d80c6c11
GM
3594/* Compare KEY1 which has hash code HASH1 and KEY2 with hash code
3595 HASH2 in hash table H using `eql'. Value is non-zero if KEY1 and
3596 KEY2 are the same. */
3597
3598static int
3599cmpfn_eql (h, key1, hash1, key2, hash2)
3600 struct Lisp_Hash_Table *h;
3601 Lisp_Object key1, key2;
3602 unsigned hash1, hash2;
3603{
2e5da676
GM
3604 return (FLOATP (key1)
3605 && FLOATP (key2)
e84b1dea 3606 && XFLOAT_DATA (key1) == XFLOAT_DATA (key2));
d80c6c11
GM
3607}
3608
3609
3610/* Compare KEY1 which has hash code HASH1 and KEY2 with hash code
3611 HASH2 in hash table H using `equal'. Value is non-zero if KEY1 and
3612 KEY2 are the same. */
3613
3614static int
3615cmpfn_equal (h, key1, hash1, key2, hash2)
3616 struct Lisp_Hash_Table *h;
3617 Lisp_Object key1, key2;
3618 unsigned hash1, hash2;
3619{
2e5da676 3620 return hash1 == hash2 && !NILP (Fequal (key1, key2));
d80c6c11
GM
3621}
3622
3623
3624/* Compare KEY1 which has hash code HASH1, and KEY2 with hash code
3625 HASH2 in hash table H using H->user_cmp_function. Value is non-zero
3626 if KEY1 and KEY2 are the same. */
3627
3628static int
3629cmpfn_user_defined (h, key1, hash1, key2, hash2)
3630 struct Lisp_Hash_Table *h;
3631 Lisp_Object key1, key2;
3632 unsigned hash1, hash2;
3633{
3634 if (hash1 == hash2)
3635 {
3636 Lisp_Object args[3];
3637
3638 args[0] = h->user_cmp_function;
3639 args[1] = key1;
3640 args[2] = key2;
3641 return !NILP (Ffuncall (3, args));
3642 }
3643 else
3644 return 0;
3645}
3646
3647
3648/* Value is a hash code for KEY for use in hash table H which uses
3649 `eq' to compare keys. The hash code returned is guaranteed to fit
3650 in a Lisp integer. */
3651
3652static unsigned
3653hashfn_eq (h, key)
3654 struct Lisp_Hash_Table *h;
3655 Lisp_Object key;
3656{
3657 /* Lisp strings can change their address. Don't try to compute a
3658 hash code for a string from its address. */
3659 if (STRINGP (key))
3660 return sxhash_string (XSTRING (key)->data, XSTRING (key)->size);
3661 else
3662 return XUINT (key) ^ XGCTYPE (key);
3663}
3664
3665
3666/* Value is a hash code for KEY for use in hash table H which uses
3667 `eql' to compare keys. The hash code returned is guaranteed to fit
3668 in a Lisp integer. */
3669
3670static unsigned
3671hashfn_eql (h, key)
3672 struct Lisp_Hash_Table *h;
3673 Lisp_Object key;
3674{
3675 /* Lisp strings can change their address. Don't try to compute a
3676 hash code for a string from its address. */
3677 if (STRINGP (key))
3678 return sxhash_string (XSTRING (key)->data, XSTRING (key)->size);
3679 else if (FLOATP (key))
3680 return sxhash (key, 0);
3681 else
3682 return XUINT (key) ^ XGCTYPE (key);
3683}
3684
3685
3686/* Value is a hash code for KEY for use in hash table H which uses
3687 `equal' to compare keys. The hash code returned is guaranteed to fit
3688 in a Lisp integer. */
3689
3690static unsigned
3691hashfn_equal (h, key)
3692 struct Lisp_Hash_Table *h;
3693 Lisp_Object key;
3694{
3695 return sxhash (key, 0);
3696}
3697
3698
3699/* Value is a hash code for KEY for use in hash table H which uses as
3700 user-defined function to compare keys. The hash code returned is
3701 guaranteed to fit in a Lisp integer. */
3702
3703static unsigned
3704hashfn_user_defined (h, key)
3705 struct Lisp_Hash_Table *h;
3706 Lisp_Object key;
3707{
3708 Lisp_Object args[2], hash;
3709
3710 args[0] = h->user_hash_function;
3711 args[1] = key;
3712 hash = Ffuncall (2, args);
3713 if (!INTEGERP (hash))
3714 Fsignal (Qerror,
3715 list2 (build_string ("Illegal hash code returned from \
3716user-supplied hash function"),
3717 hash));
3718 return XUINT (hash);
3719}
3720
3721
3722/* Create and initialize a new hash table.
3723
3724 TEST specifies the test the hash table will use to compare keys.
3725 It must be either one of the predefined tests `eq', `eql' or
3726 `equal' or a symbol denoting a user-defined test named TEST with
3727 test and hash functions USER_TEST and USER_HASH.
3728
3729 Give the table initial capacity SIZE, SIZE > 0, an integer.
3730
3731 If REHASH_SIZE is an integer, it must be > 0, and this hash table's
3732 new size when it becomes full is computed by adding REHASH_SIZE to
3733 its old size. If REHASH_SIZE is a float, it must be > 1.0, and the
3734 table's new size is computed by multiplying its old size with
3735 REHASH_SIZE.
3736
3737 REHASH_THRESHOLD must be a float <= 1.0, and > 0. The table will
3738 be resized when the ratio of (number of entries in the table) /
3739 (table size) is >= REHASH_THRESHOLD.
3740
3741 WEAK specifies the weakness of the table. If non-nil, it must be
f899c503 3742 one of the symbols `key', `value' or t. */
d80c6c11
GM
3743
3744Lisp_Object
3745make_hash_table (test, size, rehash_size, rehash_threshold, weak,
3746 user_test, user_hash)
3747 Lisp_Object test, size, rehash_size, rehash_threshold, weak;
3748 Lisp_Object user_test, user_hash;
3749{
3750 struct Lisp_Hash_Table *h;
3751 struct Lisp_Vector *v;
3752 Lisp_Object table;
3753 int index_size, i, len, sz;
3754
3755 /* Preconditions. */
3756 xassert (SYMBOLP (test));
3757 xassert (INTEGERP (size) && XINT (size) > 0);
3758 xassert ((INTEGERP (rehash_size) && XINT (rehash_size) > 0)
3759 || (FLOATP (rehash_size) && XFLOATINT (rehash_size) > 1.0));
3760 xassert (FLOATP (rehash_threshold)
3761 && XFLOATINT (rehash_threshold) > 0
3762 && XFLOATINT (rehash_threshold) <= 1.0);
3763
3764 /* Allocate a vector, and initialize it. */
3765 len = VECSIZE (struct Lisp_Hash_Table);
3766 v = allocate_vectorlike (len);
3767 v->size = len;
3768 for (i = 0; i < len; ++i)
3769 v->contents[i] = Qnil;
3770
3771 /* Initialize hash table slots. */
3772 sz = XFASTINT (size);
3773 h = (struct Lisp_Hash_Table *) v;
3774
3775 h->test = test;
3776 if (EQ (test, Qeql))
3777 {
3778 h->cmpfn = cmpfn_eql;
3779 h->hashfn = hashfn_eql;
3780 }
3781 else if (EQ (test, Qeq))
3782 {
2e5da676 3783 h->cmpfn = NULL;
d80c6c11
GM
3784 h->hashfn = hashfn_eq;
3785 }
3786 else if (EQ (test, Qequal))
3787 {
3788 h->cmpfn = cmpfn_equal;
3789 h->hashfn = hashfn_equal;
3790 }
3791 else
3792 {
3793 h->user_cmp_function = user_test;
3794 h->user_hash_function = user_hash;
3795 h->cmpfn = cmpfn_user_defined;
3796 h->hashfn = hashfn_user_defined;
3797 }
3798
3799 h->weak = weak;
3800 h->rehash_threshold = rehash_threshold;
3801 h->rehash_size = rehash_size;
3802 h->count = make_number (0);
3803 h->key_and_value = Fmake_vector (make_number (2 * sz), Qnil);
3804 h->hash = Fmake_vector (size, Qnil);
3805 h->next = Fmake_vector (size, Qnil);
3806 index_size = next_almost_prime (sz / XFLOATINT (rehash_threshold));
3807 h->index = Fmake_vector (make_number (index_size), Qnil);
3808
3809 /* Set up the free list. */
3810 for (i = 0; i < sz - 1; ++i)
3811 HASH_NEXT (h, i) = make_number (i + 1);
3812 h->next_free = make_number (0);
3813
3814 XSET_HASH_TABLE (table, h);
3815 xassert (HASH_TABLE_P (table));
3816 xassert (XHASH_TABLE (table) == h);
3817
3818 /* Maybe add this hash table to the list of all weak hash tables. */
3819 if (NILP (h->weak))
3820 h->next_weak = Qnil;
3821 else
3822 {
3823 h->next_weak = Vweak_hash_tables;
3824 Vweak_hash_tables = table;
3825 }
3826
3827 return table;
3828}
3829
3830
f899c503
GM
3831/* Return a copy of hash table H1. Keys and values are not copied,
3832 only the table itself is. */
3833
3834Lisp_Object
3835copy_hash_table (h1)
3836 struct Lisp_Hash_Table *h1;
3837{
3838 Lisp_Object table;
3839 struct Lisp_Hash_Table *h2;
3840 struct Lisp_Vector *v, *next;
3841 int len;
3842
3843 len = VECSIZE (struct Lisp_Hash_Table);
3844 v = allocate_vectorlike (len);
3845 h2 = (struct Lisp_Hash_Table *) v;
3846 next = h2->vec_next;
3847 bcopy (h1, h2, sizeof *h2);
3848 h2->vec_next = next;
3849 h2->key_and_value = Fcopy_sequence (h1->key_and_value);
3850 h2->hash = Fcopy_sequence (h1->hash);
3851 h2->next = Fcopy_sequence (h1->next);
3852 h2->index = Fcopy_sequence (h1->index);
3853 XSET_HASH_TABLE (table, h2);
3854
3855 /* Maybe add this hash table to the list of all weak hash tables. */
3856 if (!NILP (h2->weak))
3857 {
3858 h2->next_weak = Vweak_hash_tables;
3859 Vweak_hash_tables = table;
3860 }
3861
3862 return table;
3863}
3864
3865
d80c6c11
GM
3866/* Resize hash table H if it's too full. If H cannot be resized
3867 because it's already too large, throw an error. */
3868
3869static INLINE void
3870maybe_resize_hash_table (h)
3871 struct Lisp_Hash_Table *h;
3872{
3873 if (NILP (h->next_free))
3874 {
3875 int old_size = HASH_TABLE_SIZE (h);
3876 int i, new_size, index_size;
3877
3878 if (INTEGERP (h->rehash_size))
3879 new_size = old_size + XFASTINT (h->rehash_size);
3880 else
3881 new_size = old_size * XFLOATINT (h->rehash_size);
0d6ba42e 3882 new_size = max (old_size + 1, new_size);
d80c6c11
GM
3883 index_size = next_almost_prime (new_size
3884 / XFLOATINT (h->rehash_threshold));
3885 if (max (index_size, 2 * new_size) & ~VALMASK)
3886 error ("Hash table too large to resize");
3887
3888 h->key_and_value = larger_vector (h->key_and_value, 2 * new_size, Qnil);
3889 h->next = larger_vector (h->next, new_size, Qnil);
3890 h->hash = larger_vector (h->hash, new_size, Qnil);
3891 h->index = Fmake_vector (make_number (index_size), Qnil);
3892
3893 /* Update the free list. Do it so that new entries are added at
3894 the end of the free list. This makes some operations like
3895 maphash faster. */
3896 for (i = old_size; i < new_size - 1; ++i)
3897 HASH_NEXT (h, i) = make_number (i + 1);
3898
3899 if (!NILP (h->next_free))
3900 {
3901 Lisp_Object last, next;
3902
3903 last = h->next_free;
3904 while (next = HASH_NEXT (h, XFASTINT (last)),
3905 !NILP (next))
3906 last = next;
3907
3908 HASH_NEXT (h, XFASTINT (last)) = make_number (old_size);
3909 }
3910 else
3911 XSETFASTINT (h->next_free, old_size);
3912
3913 /* Rehash. */
3914 for (i = 0; i < old_size; ++i)
3915 if (!NILP (HASH_HASH (h, i)))
3916 {
3917 unsigned hash_code = XUINT (HASH_HASH (h, i));
3918 int start_of_bucket = hash_code % XVECTOR (h->index)->size;
3919 HASH_NEXT (h, i) = HASH_INDEX (h, start_of_bucket);
3920 HASH_INDEX (h, start_of_bucket) = make_number (i);
3921 }
3922 }
3923}
3924
3925
3926/* Lookup KEY in hash table H. If HASH is non-null, return in *HASH
3927 the hash code of KEY. Value is the index of the entry in H
3928 matching KEY, or -1 if not found. */
3929
3930int
3931hash_lookup (h, key, hash)
3932 struct Lisp_Hash_Table *h;
3933 Lisp_Object key;
3934 unsigned *hash;
3935{
3936 unsigned hash_code;
3937 int start_of_bucket;
3938 Lisp_Object idx;
3939
3940 hash_code = h->hashfn (h, key);
3941 if (hash)
3942 *hash = hash_code;
3943
3944 start_of_bucket = hash_code % XVECTOR (h->index)->size;
3945 idx = HASH_INDEX (h, start_of_bucket);
3946
3947 while (!NILP (idx))
3948 {
3949 int i = XFASTINT (idx);
2e5da676
GM
3950 if (EQ (key, HASH_KEY (h, i))
3951 || (h->cmpfn
3952 && h->cmpfn (h, key, hash_code,
7c752c80 3953 HASH_KEY (h, i), XUINT (HASH_HASH (h, i)))))
d80c6c11
GM
3954 break;
3955 idx = HASH_NEXT (h, i);
3956 }
3957
3958 return NILP (idx) ? -1 : XFASTINT (idx);
3959}
3960
3961
3962/* Put an entry into hash table H that associates KEY with VALUE.
64a5094a
KH
3963 HASH is a previously computed hash code of KEY.
3964 Value is the index of the entry in H matching KEY. */
d80c6c11 3965
64a5094a 3966int
d80c6c11
GM
3967hash_put (h, key, value, hash)
3968 struct Lisp_Hash_Table *h;
3969 Lisp_Object key, value;
3970 unsigned hash;
3971{
3972 int start_of_bucket, i;
3973
3974 xassert ((hash & ~VALMASK) == 0);
3975
3976 /* Increment count after resizing because resizing may fail. */
3977 maybe_resize_hash_table (h);
3978 h->count = make_number (XFASTINT (h->count) + 1);
3979
3980 /* Store key/value in the key_and_value vector. */
3981 i = XFASTINT (h->next_free);
3982 h->next_free = HASH_NEXT (h, i);
3983 HASH_KEY (h, i) = key;
3984 HASH_VALUE (h, i) = value;
3985
3986 /* Remember its hash code. */
3987 HASH_HASH (h, i) = make_number (hash);
3988
3989 /* Add new entry to its collision chain. */
3990 start_of_bucket = hash % XVECTOR (h->index)->size;
3991 HASH_NEXT (h, i) = HASH_INDEX (h, start_of_bucket);
3992 HASH_INDEX (h, start_of_bucket) = make_number (i);
64a5094a 3993 return i;
d80c6c11
GM
3994}
3995
3996
3997/* Remove the entry matching KEY from hash table H, if there is one. */
3998
3999void
4000hash_remove (h, key)
4001 struct Lisp_Hash_Table *h;
4002 Lisp_Object key;
4003{
4004 unsigned hash_code;
4005 int start_of_bucket;
4006 Lisp_Object idx, prev;
4007
4008 hash_code = h->hashfn (h, key);
4009 start_of_bucket = hash_code % XVECTOR (h->index)->size;
4010 idx = HASH_INDEX (h, start_of_bucket);
4011 prev = Qnil;
4012
4013 while (!NILP (idx))
4014 {
4015 int i = XFASTINT (idx);
4016
2e5da676
GM
4017 if (EQ (key, HASH_KEY (h, i))
4018 || (h->cmpfn
4019 && h->cmpfn (h, key, hash_code,
7c752c80 4020 HASH_KEY (h, i), XUINT (HASH_HASH (h, i)))))
d80c6c11
GM
4021 {
4022 /* Take entry out of collision chain. */
4023 if (NILP (prev))
4024 HASH_INDEX (h, start_of_bucket) = HASH_NEXT (h, i);
4025 else
4026 HASH_NEXT (h, XFASTINT (prev)) = HASH_NEXT (h, i);
4027
4028 /* Clear slots in key_and_value and add the slots to
4029 the free list. */
4030 HASH_KEY (h, i) = HASH_VALUE (h, i) = HASH_HASH (h, i) = Qnil;
4031 HASH_NEXT (h, i) = h->next_free;
4032 h->next_free = make_number (i);
4033 h->count = make_number (XFASTINT (h->count) - 1);
4034 xassert (XINT (h->count) >= 0);
4035 break;
4036 }
4037 else
4038 {
4039 prev = idx;
4040 idx = HASH_NEXT (h, i);
4041 }
4042 }
4043}
4044
4045
4046/* Clear hash table H. */
4047
4048void
4049hash_clear (h)
4050 struct Lisp_Hash_Table *h;
4051{
4052 if (XFASTINT (h->count) > 0)
4053 {
4054 int i, size = HASH_TABLE_SIZE (h);
4055
4056 for (i = 0; i < size; ++i)
4057 {
4058 HASH_NEXT (h, i) = i < size - 1 ? make_number (i + 1) : Qnil;
4059 HASH_KEY (h, i) = Qnil;
4060 HASH_VALUE (h, i) = Qnil;
4061 HASH_HASH (h, i) = Qnil;
4062 }
4063
4064 for (i = 0; i < XVECTOR (h->index)->size; ++i)
4065 XVECTOR (h->index)->contents[i] = Qnil;
4066
4067 h->next_free = make_number (0);
4068 h->count = make_number (0);
4069 }
4070}
4071
4072
4073\f
4074/************************************************************************
4075 Weak Hash Tables
4076 ************************************************************************/
4077
a0b581cc
GM
4078/* Sweep weak hash table H. REMOVE_ENTRIES_P non-zero means remove
4079 entries from the table that don't survive the current GC.
4080 REMOVE_ENTRIES_P zero means mark entries that are in use. Value is
4081 non-zero if anything was marked. */
4082
4083static int
4084sweep_weak_table (h, remove_entries_p)
4085 struct Lisp_Hash_Table *h;
4086 int remove_entries_p;
4087{
4088 int bucket, n, marked;
4089
4090 n = XVECTOR (h->index)->size & ~ARRAY_MARK_FLAG;
4091 marked = 0;
4092
4093 for (bucket = 0; bucket < n; ++bucket)
4094 {
4095 Lisp_Object idx, prev;
4096
4097 /* Follow collision chain, removing entries that
4098 don't survive this garbage collection. */
4099 idx = HASH_INDEX (h, bucket);
4100 prev = Qnil;
4101 while (!GC_NILP (idx))
4102 {
4103 int remove_p;
4104 int i = XFASTINT (idx);
4105 Lisp_Object next;
4106
4107 if (EQ (h->weak, Qkey))
4108 remove_p = !survives_gc_p (HASH_KEY (h, i));
4109 else if (EQ (h->weak, Qvalue))
4110 remove_p = !survives_gc_p (HASH_VALUE (h, i));
4111 else if (EQ (h->weak, Qt))
4112 remove_p = (!survives_gc_p (HASH_KEY (h, i))
4113 || !survives_gc_p (HASH_VALUE (h, i)));
4114 else
4115 abort ();
4116
4117 next = HASH_NEXT (h, i);
4118
4119 if (remove_entries_p)
4120 {
4121 if (remove_p)
4122 {
4123 /* Take out of collision chain. */
4124 if (GC_NILP (prev))
4125 HASH_INDEX (h, i) = next;
4126 else
4127 HASH_NEXT (h, XFASTINT (prev)) = next;
4128
4129 /* Add to free list. */
4130 HASH_NEXT (h, i) = h->next_free;
4131 h->next_free = idx;
4132
4133 /* Clear key, value, and hash. */
4134 HASH_KEY (h, i) = HASH_VALUE (h, i) = Qnil;
4135 HASH_HASH (h, i) = Qnil;
4136
4137 h->count = make_number (XFASTINT (h->count) - 1);
4138 }
4139 }
4140 else
4141 {
4142 if (!remove_p)
4143 {
4144 /* Make sure key and value survive. */
4145 mark_object (&HASH_KEY (h, i));
4146 mark_object (&HASH_VALUE (h, i));
4147 marked = 1;
4148 }
4149 }
4150
4151 idx = next;
4152 }
4153 }
4154
4155 return marked;
4156}
4157
d80c6c11
GM
4158/* Remove elements from weak hash tables that don't survive the
4159 current garbage collection. Remove weak tables that don't survive
4160 from Vweak_hash_tables. Called from gc_sweep. */
4161
4162void
4163sweep_weak_hash_tables ()
4164{
4165 Lisp_Object table;
a0b581cc
GM
4166 struct Lisp_Hash_Table *h, *prev;
4167 int marked;
4168
4169 /* Mark all keys and values that are in use. Keep on marking until
4170 there is no more change. This is necessary for cases like
4171 value-weak table A containing an entry X -> Y, where Y is used in a
4172 key-weak table B, Z -> Y. If B comes after A in the list of weak
4173 tables, X -> Y might be removed from A, although when looking at B
4174 one finds that it shouldn't. */
4175 do
4176 {
4177 marked = 0;
4178 for (table = Vweak_hash_tables; !GC_NILP (table); table = h->next_weak)
4179 {
4180 h = XHASH_TABLE (table);
4181 if (h->size & ARRAY_MARK_FLAG)
4182 marked |= sweep_weak_table (h, 0);
4183 }
4184 }
4185 while (marked);
d80c6c11 4186
a0b581cc
GM
4187 /* Remove tables and entries that aren't used. */
4188 prev = NULL;
d80c6c11
GM
4189 for (table = Vweak_hash_tables; !GC_NILP (table); table = h->next_weak)
4190 {
4191 prev = h;
4192 h = XHASH_TABLE (table);
4193
4194 if (h->size & ARRAY_MARK_FLAG)
4195 {
4196 if (XFASTINT (h->count) > 0)
a0b581cc 4197 sweep_weak_table (h, 1);
d80c6c11
GM
4198 }
4199 else
4200 {
4201 /* Table is not marked, and will thus be freed.
4202 Take it out of the list of weak hash tables. */
4203 if (prev)
4204 prev->next_weak = h->next_weak;
4205 else
4206 Vweak_hash_tables = h->next_weak;
4207 }
4208 }
4209}
4210
4211
4212\f
4213/***********************************************************************
4214 Hash Code Computation
4215 ***********************************************************************/
4216
4217/* Maximum depth up to which to dive into Lisp structures. */
4218
4219#define SXHASH_MAX_DEPTH 3
4220
4221/* Maximum length up to which to take list and vector elements into
4222 account. */
4223
4224#define SXHASH_MAX_LEN 7
4225
4226/* Combine two integers X and Y for hashing. */
4227
4228#define SXHASH_COMBINE(X, Y) \
ada0fa14 4229 ((((unsigned)(X) << 4) + (((unsigned)(X) >> 24) & 0x0fffffff)) \
d80c6c11
GM
4230 + (unsigned)(Y))
4231
4232
4233/* Return a hash for string PTR which has length LEN. */
4234
4235static unsigned
4236sxhash_string (ptr, len)
4237 unsigned char *ptr;
4238 int len;
4239{
4240 unsigned char *p = ptr;
4241 unsigned char *end = p + len;
4242 unsigned char c;
4243 unsigned hash = 0;
4244
4245 while (p != end)
4246 {
4247 c = *p++;
4248 if (c >= 0140)
4249 c -= 40;
4250 hash = ((hash << 3) + (hash >> 28) + c);
4251 }
4252
4253 return hash & 07777777777;
4254}
4255
4256
4257/* Return a hash for list LIST. DEPTH is the current depth in the
4258 list. We don't recurse deeper than SXHASH_MAX_DEPTH in it. */
4259
4260static unsigned
4261sxhash_list (list, depth)
4262 Lisp_Object list;
4263 int depth;
4264{
4265 unsigned hash = 0;
4266 int i;
4267
4268 if (depth < SXHASH_MAX_DEPTH)
4269 for (i = 0;
4270 CONSP (list) && i < SXHASH_MAX_LEN;
4271 list = XCDR (list), ++i)
4272 {
4273 unsigned hash2 = sxhash (XCAR (list), depth + 1);
4274 hash = SXHASH_COMBINE (hash, hash2);
4275 }
4276
4277 return hash;
4278}
4279
4280
4281/* Return a hash for vector VECTOR. DEPTH is the current depth in
4282 the Lisp structure. */
4283
4284static unsigned
4285sxhash_vector (vec, depth)
4286 Lisp_Object vec;
4287 int depth;
4288{
4289 unsigned hash = XVECTOR (vec)->size;
4290 int i, n;
4291
4292 n = min (SXHASH_MAX_LEN, XVECTOR (vec)->size);
4293 for (i = 0; i < n; ++i)
4294 {
4295 unsigned hash2 = sxhash (XVECTOR (vec)->contents[i], depth + 1);
4296 hash = SXHASH_COMBINE (hash, hash2);
4297 }
4298
4299 return hash;
4300}
4301
4302
4303/* Return a hash for bool-vector VECTOR. */
4304
4305static unsigned
4306sxhash_bool_vector (vec)
4307 Lisp_Object vec;
4308{
4309 unsigned hash = XBOOL_VECTOR (vec)->size;
4310 int i, n;
4311
4312 n = min (SXHASH_MAX_LEN, XBOOL_VECTOR (vec)->vector_size);
4313 for (i = 0; i < n; ++i)
4314 hash = SXHASH_COMBINE (hash, XBOOL_VECTOR (vec)->data[i]);
4315
4316 return hash;
4317}
4318
4319
4320/* Return a hash code for OBJ. DEPTH is the current depth in the Lisp
4321 structure. Value is an unsigned integer clipped to VALMASK. */
4322
4323unsigned
4324sxhash (obj, depth)
4325 Lisp_Object obj;
4326 int depth;
4327{
4328 unsigned hash;
4329
4330 if (depth > SXHASH_MAX_DEPTH)
4331 return 0;
4332
4333 switch (XTYPE (obj))
4334 {
4335 case Lisp_Int:
4336 hash = XUINT (obj);
4337 break;
4338
4339 case Lisp_Symbol:
4340 hash = sxhash_string (XSYMBOL (obj)->name->data,
4341 XSYMBOL (obj)->name->size);
4342 break;
4343
4344 case Lisp_Misc:
4345 hash = XUINT (obj);
4346 break;
4347
4348 case Lisp_String:
4349 hash = sxhash_string (XSTRING (obj)->data, XSTRING (obj)->size);
4350 break;
4351
4352 /* This can be everything from a vector to an overlay. */
4353 case Lisp_Vectorlike:
4354 if (VECTORP (obj))
4355 /* According to the CL HyperSpec, two arrays are equal only if
4356 they are `eq', except for strings and bit-vectors. In
4357 Emacs, this works differently. We have to compare element
4358 by element. */
4359 hash = sxhash_vector (obj, depth);
4360 else if (BOOL_VECTOR_P (obj))
4361 hash = sxhash_bool_vector (obj);
4362 else
4363 /* Others are `equal' if they are `eq', so let's take their
4364 address as hash. */
4365 hash = XUINT (obj);
4366 break;
4367
4368 case Lisp_Cons:
4369 hash = sxhash_list (obj, depth);
4370 break;
4371
4372 case Lisp_Float:
4373 {
e84b1dea
GM
4374 unsigned char *p = (unsigned char *) &XFLOAT_DATA (obj);
4375 unsigned char *e = p + sizeof XFLOAT_DATA (obj);
d80c6c11
GM
4376 for (hash = 0; p < e; ++p)
4377 hash = SXHASH_COMBINE (hash, *p);
4378 break;
4379 }
4380
4381 default:
4382 abort ();
4383 }
4384
4385 return hash & VALMASK;
4386}
4387
4388
4389\f
4390/***********************************************************************
4391 Lisp Interface
4392 ***********************************************************************/
4393
4394
4395DEFUN ("sxhash", Fsxhash, Ssxhash, 1, 1, 0,
4396 "Compute a hash code for OBJ and return it as integer.")
4397 (obj)
4398 Lisp_Object obj;
4399{
4400 unsigned hash = sxhash (obj, 0);;
4401 return make_number (hash);
4402}
4403
4404
4405DEFUN ("make-hash-table", Fmake_hash_table, Smake_hash_table, 0, MANY, 0,
4406 "Create and return a new hash table.\n\
4407Arguments are specified as keyword/argument pairs. The following\n\
4408arguments are defined:\n\
4409\n\
526cfb19 4410:TEST TEST -- TEST must be a symbol that specifies how to compare keys.\n\
d80c6c11
GM
4411Default is `eql'. Predefined are the tests `eq', `eql', and `equal'.\n\
4412User-supplied test and hash functions can be specified via\n\
4413`define-hash-table-test'.\n\
4414\n\
526cfb19 4415:SIZE SIZE -- A hint as to how many elements will be put in the table.\n\
d80c6c11
GM
4416Default is 65.\n\
4417\n\
4418:REHASH-SIZE REHASH-SIZE - Indicates how to expand the table when\n\
4419it fills up. If REHASH-SIZE is an integer, add that many space.\n\
4420If it is a float, it must be > 1.0, and the new size is computed by\n\
4421multiplying the old size with that factor. Default is 1.5.\n\
4422\n\
4423:REHASH-THRESHOLD THRESHOLD -- THRESHOLD must a float > 0, and <= 1.0.\n\
4424Resize the hash table when ratio of the number of entries in the table.\n\
4425Default is 0.8.\n\
4426\n\
ee0403b3 4427:WEAKNESS WEAK -- WEAK must be one of nil, t, `key', or `value'.\n\
f899c503
GM
4428If WEAK is not nil, the table returned is a weak table. Key/value\n\
4429pairs are removed from a weak hash table when their key, value or both\n\
4430(WEAK t) are otherwise unreferenced. Default is nil.")
d80c6c11
GM
4431 (nargs, args)
4432 int nargs;
4433 Lisp_Object *args;
4434{
4435 Lisp_Object test, size, rehash_size, rehash_threshold, weak;
4436 Lisp_Object user_test, user_hash;
4437 char *used;
4438 int i;
4439
4440 /* The vector `used' is used to keep track of arguments that
4441 have been consumed. */
4442 used = (char *) alloca (nargs * sizeof *used);
4443 bzero (used, nargs * sizeof *used);
4444
4445 /* See if there's a `:test TEST' among the arguments. */
4446 i = get_key_arg (QCtest, nargs, args, used);
4447 test = i < 0 ? Qeql : args[i];
4448 if (!EQ (test, Qeq) && !EQ (test, Qeql) && !EQ (test, Qequal))
4449 {
4450 /* See if it is a user-defined test. */
4451 Lisp_Object prop;
4452
4453 prop = Fget (test, Qhash_table_test);
4454 if (!CONSP (prop) || XFASTINT (Flength (prop)) < 2)
4455 Fsignal (Qerror, list2 (build_string ("Illegal hash table test"),
4456 test));
4457 user_test = Fnth (make_number (0), prop);
4458 user_hash = Fnth (make_number (1), prop);
4459 }
4460 else
4461 user_test = user_hash = Qnil;
4462
4463 /* See if there's a `:size SIZE' argument. */
4464 i = get_key_arg (QCsize, nargs, args, used);
4465 size = i < 0 ? make_number (DEFAULT_HASH_SIZE) : args[i];
4466 if (!INTEGERP (size) || XINT (size) <= 0)
4467 Fsignal (Qerror,
4468 list2 (build_string ("Illegal hash table size"),
4469 size));
4470
4471 /* Look for `:rehash-size SIZE'. */
4472 i = get_key_arg (QCrehash_size, nargs, args, used);
4473 rehash_size = i < 0 ? make_float (DEFAULT_REHASH_SIZE) : args[i];
4474 if (!NUMBERP (rehash_size)
4475 || (INTEGERP (rehash_size) && XINT (rehash_size) <= 0)
4476 || XFLOATINT (rehash_size) <= 1.0)
4477 Fsignal (Qerror,
4478 list2 (build_string ("Illegal hash table rehash size"),
4479 rehash_size));
4480
4481 /* Look for `:rehash-threshold THRESHOLD'. */
4482 i = get_key_arg (QCrehash_threshold, nargs, args, used);
4483 rehash_threshold = i < 0 ? make_float (DEFAULT_REHASH_THRESHOLD) : args[i];
4484 if (!FLOATP (rehash_threshold)
4485 || XFLOATINT (rehash_threshold) <= 0.0
4486 || XFLOATINT (rehash_threshold) > 1.0)
4487 Fsignal (Qerror,
4488 list2 (build_string ("Illegal hash table rehash threshold"),
4489 rehash_threshold));
4490
ee0403b3
GM
4491 /* Look for `:weakness WEAK'. */
4492 i = get_key_arg (QCweakness, nargs, args, used);
d80c6c11 4493 weak = i < 0 ? Qnil : args[i];
d80c6c11 4494 if (!NILP (weak)
f899c503
GM
4495 && !EQ (weak, Qt)
4496 && !EQ (weak, Qkey)
4497 && !EQ (weak, Qvalue))
d80c6c11
GM
4498 Fsignal (Qerror, list2 (build_string ("Illegal hash table weakness"),
4499 weak));
4500
4501 /* Now, all args should have been used up, or there's a problem. */
4502 for (i = 0; i < nargs; ++i)
4503 if (!used[i])
4504 Fsignal (Qerror,
4505 list2 (build_string ("Invalid argument list"), args[i]));
4506
4507 return make_hash_table (test, size, rehash_size, rehash_threshold, weak,
4508 user_test, user_hash);
4509}
4510
4511
f899c503
GM
4512DEFUN ("copy-hash-table", Fcopy_hash_table, Scopy_hash_table, 1, 1, 0,
4513 "Return a copy of hash table TABLE.")
4514 (table)
4515 Lisp_Object table;
4516{
4517 return copy_hash_table (check_hash_table (table));
4518}
4519
4520
38b5e497 4521DEFUN ("makehash", Fmakehash, Smakehash, 0, 1, 0,
d80c6c11 4522 "Create a new hash table.\n\
c5092f3e 4523Optional first argument TEST specifies how to compare keys in\n\
d80c6c11 4524the table. Predefined tests are `eq', `eql', and `equal'. Default\n\
38b5e497
GM
4525is `eql'. New tests can be defined with `define-hash-table-test'.")
4526 (test)
4527 Lisp_Object test;
d80c6c11 4528{
38b5e497
GM
4529 Lisp_Object args[2];
4530 args[0] = QCtest;
4531 args[1] = test;
4532 return Fmake_hash_table (2, args);
d80c6c11
GM
4533}
4534
4535
4536DEFUN ("hash-table-count", Fhash_table_count, Shash_table_count, 1, 1, 0,
4537 "Return the number of elements in TABLE.")
4538 (table)
4539 Lisp_Object table;
4540{
4541 return check_hash_table (table)->count;
4542}
4543
4544
4545DEFUN ("hash-table-rehash-size", Fhash_table_rehash_size,
4546 Shash_table_rehash_size, 1, 1, 0,
4547 "Return the current rehash size of TABLE.")
4548 (table)
4549 Lisp_Object table;
4550{
4551 return check_hash_table (table)->rehash_size;
4552}
4553
4554
4555DEFUN ("hash-table-rehash-threshold", Fhash_table_rehash_threshold,
4556 Shash_table_rehash_threshold, 1, 1, 0,
4557 "Return the current rehash threshold of TABLE.")
4558 (table)
4559 Lisp_Object table;
4560{
4561 return check_hash_table (table)->rehash_threshold;
4562}
4563
4564
4565DEFUN ("hash-table-size", Fhash_table_size, Shash_table_size, 1, 1, 0,
4566 "Return the size of TABLE.\n\
4567The size can be used as an argument to `make-hash-table' to create\n\
4568a hash table than can hold as many elements of TABLE holds\n\
4569without need for resizing.")
4570 (table)
4571 Lisp_Object table;
4572{
4573 struct Lisp_Hash_Table *h = check_hash_table (table);
4574 return make_number (HASH_TABLE_SIZE (h));
4575}
4576
4577
4578DEFUN ("hash-table-test", Fhash_table_test, Shash_table_test, 1, 1, 0,
4579 "Return the test TABLE uses.")
4580 (table)
4581 Lisp_Object table;
4582{
4583 return check_hash_table (table)->test;
4584}
4585
4586
e84b1dea
GM
4587DEFUN ("hash-table-weakness", Fhash_table_weakness, Shash_table_weakness,
4588 1, 1, 0,
d80c6c11
GM
4589 "Return the weakness of TABLE.")
4590 (table)
4591 Lisp_Object table;
4592{
4593 return check_hash_table (table)->weak;
4594}
4595
4596
4597DEFUN ("hash-table-p", Fhash_table_p, Shash_table_p, 1, 1, 0,
4598 "Return t if OBJ is a Lisp hash table object.")
4599 (obj)
4600 Lisp_Object obj;
4601{
4602 return HASH_TABLE_P (obj) ? Qt : Qnil;
4603}
4604
4605
4606DEFUN ("clrhash", Fclrhash, Sclrhash, 1, 1, 0,
4607 "Clear hash table TABLE.")
4608 (table)
4609 Lisp_Object table;
4610{
4611 hash_clear (check_hash_table (table));
4612 return Qnil;
4613}
4614
4615
4616DEFUN ("gethash", Fgethash, Sgethash, 2, 3, 0,
4617 "Look up KEY in TABLE and return its associated value.\n\
4618If KEY is not found, return DFLT which defaults to nil.")
1fffe870 4619 (key, table, dflt)
68c45bf0 4620 Lisp_Object key, table, dflt;
d80c6c11
GM
4621{
4622 struct Lisp_Hash_Table *h = check_hash_table (table);
4623 int i = hash_lookup (h, key, NULL);
4624 return i >= 0 ? HASH_VALUE (h, i) : dflt;
4625}
4626
4627
4628DEFUN ("puthash", Fputhash, Sputhash, 3, 3, 0,
4629 "Associate KEY with VALUE is hash table TABLE.\n\
4630If KEY is already present in table, replace its current value with\n\
4631VALUE.")
1fffe870
MR
4632 (key, value, table)
4633 Lisp_Object key, value, table;
d80c6c11
GM
4634{
4635 struct Lisp_Hash_Table *h = check_hash_table (table);
4636 int i;
4637 unsigned hash;
4638
4639 i = hash_lookup (h, key, &hash);
4640 if (i >= 0)
4641 HASH_VALUE (h, i) = value;
4642 else
4643 hash_put (h, key, value, hash);
4644
4645 return Qnil;
4646}
4647
4648
4649DEFUN ("remhash", Fremhash, Sremhash, 2, 2, 0,
4650 "Remove KEY from TABLE.")
1fffe870
MR
4651 (key, table)
4652 Lisp_Object key, table;
d80c6c11
GM
4653{
4654 struct Lisp_Hash_Table *h = check_hash_table (table);
4655 hash_remove (h, key);
4656 return Qnil;
4657}
4658
4659
4660DEFUN ("maphash", Fmaphash, Smaphash, 2, 2, 0,
4661 "Call FUNCTION for all entries in hash table TABLE.\n\
4662FUNCTION is called with 2 arguments KEY and VALUE.")
4663 (function, table)
4664 Lisp_Object function, table;
4665{
4666 struct Lisp_Hash_Table *h = check_hash_table (table);
4667 Lisp_Object args[3];
4668 int i;
4669
4670 for (i = 0; i < HASH_TABLE_SIZE (h); ++i)
4671 if (!NILP (HASH_HASH (h, i)))
4672 {
4673 args[0] = function;
4674 args[1] = HASH_KEY (h, i);
4675 args[2] = HASH_VALUE (h, i);
4676 Ffuncall (3, args);
4677 }
4678
4679 return Qnil;
4680}
4681
4682
4683DEFUN ("define-hash-table-test", Fdefine_hash_table_test,
4684 Sdefine_hash_table_test, 3, 3, 0,
4685 "Define a new hash table test with name NAME, a symbol.\n\
4686In hash tables create with NAME specified as test, use TEST to compare\n\
4687keys, and HASH for computing hash codes of keys.\n\
4688\n\
4689TEST must be a function taking two arguments and returning non-nil\n\
4690if both arguments are the same. HASH must be a function taking\n\
4691one argument and return an integer that is the hash code of the\n\
4692argument. Hash code computation should use the whole value range of\n\
4693integers, including negative integers.")
4694 (name, test, hash)
4695 Lisp_Object name, test, hash;
4696{
4697 return Fput (name, Qhash_table_test, list2 (test, hash));
4698}
4699
4700
4701
24c129e4 4702\f
dfcf069d 4703void
7b863bd5
JB
4704syms_of_fns ()
4705{
d80c6c11
GM
4706 /* Hash table stuff. */
4707 Qhash_table_p = intern ("hash-table-p");
4708 staticpro (&Qhash_table_p);
4709 Qeq = intern ("eq");
4710 staticpro (&Qeq);
4711 Qeql = intern ("eql");
4712 staticpro (&Qeql);
4713 Qequal = intern ("equal");
4714 staticpro (&Qequal);
4715 QCtest = intern (":test");
4716 staticpro (&QCtest);
4717 QCsize = intern (":size");
4718 staticpro (&QCsize);
4719 QCrehash_size = intern (":rehash-size");
4720 staticpro (&QCrehash_size);
4721 QCrehash_threshold = intern (":rehash-threshold");
4722 staticpro (&QCrehash_threshold);
ee0403b3
GM
4723 QCweakness = intern (":weakness");
4724 staticpro (&QCweakness);
f899c503
GM
4725 Qkey = intern ("key");
4726 staticpro (&Qkey);
4727 Qvalue = intern ("value");
4728 staticpro (&Qvalue);
d80c6c11
GM
4729 Qhash_table_test = intern ("hash-table-test");
4730 staticpro (&Qhash_table_test);
4731
4732 defsubr (&Ssxhash);
4733 defsubr (&Smake_hash_table);
f899c503 4734 defsubr (&Scopy_hash_table);
d80c6c11
GM
4735 defsubr (&Smakehash);
4736 defsubr (&Shash_table_count);
4737 defsubr (&Shash_table_rehash_size);
4738 defsubr (&Shash_table_rehash_threshold);
4739 defsubr (&Shash_table_size);
4740 defsubr (&Shash_table_test);
e84b1dea 4741 defsubr (&Shash_table_weakness);
d80c6c11
GM
4742 defsubr (&Shash_table_p);
4743 defsubr (&Sclrhash);
4744 defsubr (&Sgethash);
4745 defsubr (&Sputhash);
4746 defsubr (&Sremhash);
4747 defsubr (&Smaphash);
4748 defsubr (&Sdefine_hash_table_test);
4749
7b863bd5
JB
4750 Qstring_lessp = intern ("string-lessp");
4751 staticpro (&Qstring_lessp);
68732608
RS
4752 Qprovide = intern ("provide");
4753 staticpro (&Qprovide);
4754 Qrequire = intern ("require");
4755 staticpro (&Qrequire);
0ce830bc
RS
4756 Qyes_or_no_p_history = intern ("yes-or-no-p-history");
4757 staticpro (&Qyes_or_no_p_history);
eb4ffa4e
RS
4758 Qcursor_in_echo_area = intern ("cursor-in-echo-area");
4759 staticpro (&Qcursor_in_echo_area);
b4f334f7
KH
4760 Qwidget_type = intern ("widget-type");
4761 staticpro (&Qwidget_type);
7b863bd5 4762
09ab3c3b
KH
4763 staticpro (&string_char_byte_cache_string);
4764 string_char_byte_cache_string = Qnil;
4765
52a9879b
RS
4766 Fset (Qyes_or_no_p_history, Qnil);
4767
7b863bd5
JB
4768 DEFVAR_LISP ("features", &Vfeatures,
4769 "A list of symbols which are the features of the executing emacs.\n\
4770Used by `featurep' and `require', and altered by `provide'.");
4771 Vfeatures = Qnil;
4772
bdd8d692
RS
4773 DEFVAR_BOOL ("use-dialog-box", &use_dialog_box,
4774 "*Non-nil means mouse commands use dialog boxes to ask questions.\n\
1eb569c5 4775This applies to y-or-n and yes-or-no questions asked by commands\n\
bdd8d692
RS
4776invoked by mouse clicks and mouse menu items.");
4777 use_dialog_box = 1;
4778
7b863bd5
JB
4779 defsubr (&Sidentity);
4780 defsubr (&Srandom);
4781 defsubr (&Slength);
5a30fab8 4782 defsubr (&Ssafe_length);
026f59ce 4783 defsubr (&Sstring_bytes);
7b863bd5 4784 defsubr (&Sstring_equal);
0e1e9f8d 4785 defsubr (&Scompare_strings);
7b863bd5
JB
4786 defsubr (&Sstring_lessp);
4787 defsubr (&Sappend);
4788 defsubr (&Sconcat);
4789 defsubr (&Svconcat);
4790 defsubr (&Scopy_sequence);
09ab3c3b
KH
4791 defsubr (&Sstring_make_multibyte);
4792 defsubr (&Sstring_make_unibyte);
6d475204
RS
4793 defsubr (&Sstring_as_multibyte);
4794 defsubr (&Sstring_as_unibyte);
7b863bd5
JB
4795 defsubr (&Scopy_alist);
4796 defsubr (&Ssubstring);
4797 defsubr (&Snthcdr);
4798 defsubr (&Snth);
4799 defsubr (&Selt);
4800 defsubr (&Smember);
4801 defsubr (&Smemq);
4802 defsubr (&Sassq);
4803 defsubr (&Sassoc);
4804 defsubr (&Srassq);
0fb5a19c 4805 defsubr (&Srassoc);
7b863bd5 4806 defsubr (&Sdelq);
ca8dd546 4807 defsubr (&Sdelete);
7b863bd5
JB
4808 defsubr (&Snreverse);
4809 defsubr (&Sreverse);
4810 defsubr (&Ssort);
be9d483d 4811 defsubr (&Splist_get);
7b863bd5 4812 defsubr (&Sget);
be9d483d 4813 defsubr (&Splist_put);
7b863bd5
JB
4814 defsubr (&Sput);
4815 defsubr (&Sequal);
4816 defsubr (&Sfillarray);
999de246 4817 defsubr (&Schar_table_subtype);
e03f7933
RS
4818 defsubr (&Schar_table_parent);
4819 defsubr (&Sset_char_table_parent);
4820 defsubr (&Schar_table_extra_slot);
4821 defsubr (&Sset_char_table_extra_slot);
999de246 4822 defsubr (&Schar_table_range);
e03f7933 4823 defsubr (&Sset_char_table_range);
e1335ba2 4824 defsubr (&Sset_char_table_default);
52ef6c89 4825 defsubr (&Soptimize_char_table);
e03f7933 4826 defsubr (&Smap_char_table);
7b863bd5
JB
4827 defsubr (&Snconc);
4828 defsubr (&Smapcar);
4829 defsubr (&Smapconcat);
4830 defsubr (&Sy_or_n_p);
4831 defsubr (&Syes_or_no_p);
4832 defsubr (&Sload_average);
4833 defsubr (&Sfeaturep);
4834 defsubr (&Srequire);
4835 defsubr (&Sprovide);
b4f334f7
KH
4836 defsubr (&Swidget_plist_member);
4837 defsubr (&Swidget_put);
4838 defsubr (&Swidget_get);
4839 defsubr (&Swidget_apply);
24c129e4
KH
4840 defsubr (&Sbase64_encode_region);
4841 defsubr (&Sbase64_decode_region);
4842 defsubr (&Sbase64_encode_string);
4843 defsubr (&Sbase64_decode_string);
7b863bd5 4844}
d80c6c11
GM
4845
4846
4847void
4848init_fns ()
4849{
4850 Vweak_hash_tables = Qnil;
4851}