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