1 /* Random utility Lisp functions.
2 Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 98, 99, 2000
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
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 2, or (at your option)
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.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
30 /* Note on some machines this defines `vector' as a typedef,
31 so make sure we don't use that name in this file. */
41 #include "intervals.h"
44 #if defined (HAVE_MENUS) && defined (HAVE_X_WINDOWS)
49 #define NULL (void *)0
53 #define min(a, b) ((a) < (b) ? (a) : (b))
54 #define max(a, b) ((a) > (b) ? (a) : (b))
57 /* Nonzero enables use of dialog boxes for questions
58 asked by mouse commands. */
61 extern int minibuffer_auto_raise
;
62 extern Lisp_Object minibuf_window
;
64 Lisp_Object Qstring_lessp
, Qprovide
, Qrequire
;
65 Lisp_Object Qyes_or_no_p_history
;
66 Lisp_Object Qcursor_in_echo_area
;
67 Lisp_Object Qwidget_type
;
69 extern Lisp_Object Qinput_method_function
;
71 static int internal_equal ();
73 extern long get_random ();
74 extern void seed_random ();
80 DEFUN ("identity", Fidentity
, Sidentity
, 1, 1, 0,
81 "Return the argument unchanged.")
88 DEFUN ("random", Frandom
, Srandom
, 0, 1, 0,
89 "Return a pseudo-random number.\n\
90 All integers representable in Lisp are equally likely.\n\
91 On most systems, this is 28 bits' worth.\n\
92 With positive integer argument N, return random number in interval [0,N).\n\
93 With argument t, set the random number seed from the current time and pid.")
98 Lisp_Object lispy_val
;
99 unsigned long denominator
;
102 seed_random (getpid () + time (NULL
));
103 if (NATNUMP (n
) && XFASTINT (n
) != 0)
105 /* Try to take our random number from the higher bits of VAL,
106 not the lower, since (says Gentzel) the low bits of `random'
107 are less random than the higher ones. We do this by using the
108 quotient rather than the remainder. At the high end of the RNG
109 it's possible to get a quotient larger than n; discarding
110 these values eliminates the bias that would otherwise appear
111 when using a large n. */
112 denominator
= ((unsigned long)1 << VALBITS
) / XFASTINT (n
);
114 val
= get_random () / denominator
;
115 while (val
>= XFASTINT (n
));
119 XSETINT (lispy_val
, val
);
123 /* Random data-structure functions */
125 DEFUN ("length", Flength
, Slength
, 1, 1, 0,
126 "Return the length of vector, list or string SEQUENCE.\n\
127 A byte-code function object is also allowed.\n\
128 If the string contains multibyte characters, this is not the necessarily\n\
129 the number of bytes in the string; it is the number of characters.\n\
130 To get the number of bytes, use `string-bytes'")
132 register Lisp_Object sequence
;
134 register Lisp_Object tail
, val
;
138 if (STRINGP (sequence
))
139 XSETFASTINT (val
, XSTRING (sequence
)->size
);
140 else if (VECTORP (sequence
))
141 XSETFASTINT (val
, XVECTOR (sequence
)->size
);
142 else if (CHAR_TABLE_P (sequence
))
143 XSETFASTINT (val
, MAX_CHAR
);
144 else if (BOOL_VECTOR_P (sequence
))
145 XSETFASTINT (val
, XBOOL_VECTOR (sequence
)->size
);
146 else if (COMPILEDP (sequence
))
147 XSETFASTINT (val
, XVECTOR (sequence
)->size
& PSEUDOVECTOR_SIZE_MASK
);
148 else if (CONSP (sequence
))
151 while (CONSP (sequence
))
153 sequence
= XCDR (sequence
);
156 if (!CONSP (sequence
))
159 sequence
= XCDR (sequence
);
164 if (!NILP (sequence
))
165 wrong_type_argument (Qlistp
, sequence
);
167 val
= make_number (i
);
169 else if (NILP (sequence
))
170 XSETFASTINT (val
, 0);
173 sequence
= wrong_type_argument (Qsequencep
, sequence
);
179 /* This does not check for quits. That is safe
180 since it must terminate. */
182 DEFUN ("safe-length", Fsafe_length
, Ssafe_length
, 1, 1, 0,
183 "Return the length of a list, but avoid error or infinite loop.\n\
184 This function never gets an error. If LIST is not really a list,\n\
185 it returns 0. If LIST is circular, it returns a finite value\n\
186 which is at least the number of distinct elements.")
190 Lisp_Object tail
, halftail
, length
;
193 /* halftail is used to detect circular lists. */
195 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
197 if (EQ (tail
, halftail
) && len
!= 0)
201 halftail
= XCDR (halftail
);
204 XSETINT (length
, len
);
208 DEFUN ("string-bytes", Fstring_bytes
, Sstring_bytes
, 1, 1, 0,
209 "Return the number of bytes in STRING.\n\
210 If STRING is a multibyte string, this is greater than the length of STRING.")
214 CHECK_STRING (string
, 1);
215 return make_number (STRING_BYTES (XSTRING (string
)));
218 DEFUN ("string-equal", Fstring_equal
, Sstring_equal
, 2, 2, 0,
219 "Return t if two strings have identical contents.\n\
220 Case is significant, but text properties are ignored.\n\
221 Symbols are also allowed; their print names are used instead.")
223 register Lisp_Object s1
, s2
;
226 XSETSTRING (s1
, XSYMBOL (s1
)->name
);
228 XSETSTRING (s2
, XSYMBOL (s2
)->name
);
229 CHECK_STRING (s1
, 0);
230 CHECK_STRING (s2
, 1);
232 if (XSTRING (s1
)->size
!= XSTRING (s2
)->size
233 || STRING_BYTES (XSTRING (s1
)) != STRING_BYTES (XSTRING (s2
))
234 || bcmp (XSTRING (s1
)->data
, XSTRING (s2
)->data
, STRING_BYTES (XSTRING (s1
))))
239 DEFUN ("compare-strings", Fcompare_strings
,
240 Scompare_strings
, 6, 7, 0,
241 "Compare the contents of two strings, converting to multibyte if needed.\n\
242 In string STR1, skip the first START1 characters and stop at END1.\n\
243 In string STR2, skip the first START2 characters and stop at END2.\n\
244 END1 and END2 default to the full lengths of the respective strings.\n\
246 Case is significant in this comparison if IGNORE-CASE is nil.\n\
247 Unibyte strings are converted to multibyte for comparison.\n\
249 The value is t if the strings (or specified portions) match.\n\
250 If string STR1 is less, the value is a negative number N;\n\
251 - 1 - N is the number of characters that match at the beginning.\n\
252 If string STR1 is greater, the value is a positive number N;\n\
253 N - 1 is the number of characters that match at the beginning.")
254 (str1
, start1
, end1
, str2
, start2
, end2
, ignore_case
)
255 Lisp_Object str1
, start1
, end1
, start2
, str2
, end2
, ignore_case
;
257 register int end1_char
, end2_char
;
258 register int i1
, i1_byte
, i2
, i2_byte
;
260 CHECK_STRING (str1
, 0);
261 CHECK_STRING (str2
, 1);
263 start1
= make_number (0);
265 start2
= make_number (0);
266 CHECK_NATNUM (start1
, 2);
267 CHECK_NATNUM (start2
, 3);
269 CHECK_NATNUM (end1
, 4);
271 CHECK_NATNUM (end2
, 4);
276 i1_byte
= string_char_to_byte (str1
, i1
);
277 i2_byte
= string_char_to_byte (str2
, i2
);
279 end1_char
= XSTRING (str1
)->size
;
280 if (! NILP (end1
) && end1_char
> XINT (end1
))
281 end1_char
= XINT (end1
);
283 end2_char
= XSTRING (str2
)->size
;
284 if (! NILP (end2
) && end2_char
> XINT (end2
))
285 end2_char
= XINT (end2
);
287 while (i1
< end1_char
&& i2
< end2_char
)
289 /* When we find a mismatch, we must compare the
290 characters, not just the bytes. */
293 if (STRING_MULTIBYTE (str1
))
294 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c1
, str1
, i1
, i1_byte
);
297 c1
= XSTRING (str1
)->data
[i1
++];
298 c1
= unibyte_char_to_multibyte (c1
);
301 if (STRING_MULTIBYTE (str2
))
302 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c2
, str2
, i2
, i2_byte
);
305 c2
= XSTRING (str2
)->data
[i2
++];
306 c2
= unibyte_char_to_multibyte (c2
);
312 if (! NILP (ignore_case
))
316 tem
= Fupcase (make_number (c1
));
318 tem
= Fupcase (make_number (c2
));
325 /* Note that I1 has already been incremented
326 past the character that we are comparing;
327 hence we don't add or subtract 1 here. */
329 return make_number (- i1
);
331 return make_number (i1
);
335 return make_number (i1
- XINT (start1
) + 1);
337 return make_number (- i1
+ XINT (start1
) - 1);
342 DEFUN ("string-lessp", Fstring_lessp
, Sstring_lessp
, 2, 2, 0,
343 "Return t if first arg string is less than second in lexicographic order.\n\
344 Case is significant.\n\
345 Symbols are also allowed; their print names are used instead.")
347 register Lisp_Object s1
, s2
;
350 register int i1
, i1_byte
, i2
, i2_byte
;
353 XSETSTRING (s1
, XSYMBOL (s1
)->name
);
355 XSETSTRING (s2
, XSYMBOL (s2
)->name
);
356 CHECK_STRING (s1
, 0);
357 CHECK_STRING (s2
, 1);
359 i1
= i1_byte
= i2
= i2_byte
= 0;
361 end
= XSTRING (s1
)->size
;
362 if (end
> XSTRING (s2
)->size
)
363 end
= XSTRING (s2
)->size
;
367 /* When we find a mismatch, we must compare the
368 characters, not just the bytes. */
371 FETCH_STRING_CHAR_ADVANCE (c1
, s1
, i1
, i1_byte
);
372 FETCH_STRING_CHAR_ADVANCE (c2
, s2
, i2
, i2_byte
);
375 return c1
< c2
? Qt
: Qnil
;
377 return i1
< XSTRING (s2
)->size
? Qt
: Qnil
;
380 static Lisp_Object
concat ();
391 return concat (2, args
, Lisp_String
, 0);
393 return concat (2, &s1
, Lisp_String
, 0);
394 #endif /* NO_ARG_ARRAY */
400 Lisp_Object s1
, s2
, s3
;
407 return concat (3, args
, Lisp_String
, 0);
409 return concat (3, &s1
, Lisp_String
, 0);
410 #endif /* NO_ARG_ARRAY */
413 DEFUN ("append", Fappend
, Sappend
, 0, MANY
, 0,
414 "Concatenate all the arguments and make the result a list.\n\
415 The result is a list whose elements are the elements of all the arguments.\n\
416 Each argument may be a list, vector or string.\n\
417 The last argument is not copied, just used as the tail of the new list.")
422 return concat (nargs
, args
, Lisp_Cons
, 1);
425 DEFUN ("concat", Fconcat
, Sconcat
, 0, MANY
, 0,
426 "Concatenate all the arguments and make the result a string.\n\
427 The result is a string whose elements are the elements of all the arguments.\n\
428 Each argument may be a string or a list or vector of characters (integers).")
433 return concat (nargs
, args
, Lisp_String
, 0);
436 DEFUN ("vconcat", Fvconcat
, Svconcat
, 0, MANY
, 0,
437 "Concatenate all the arguments and make the result a vector.\n\
438 The result is a vector whose elements are the elements of all the arguments.\n\
439 Each argument may be a list, vector or string.")
444 return concat (nargs
, args
, Lisp_Vectorlike
, 0);
447 /* Retrun a copy of a sub char table ARG. The elements except for a
448 nested sub char table are not copied. */
450 copy_sub_char_table (arg
)
453 Lisp_Object copy
= make_sub_char_table (XCHAR_TABLE (arg
)->defalt
);
456 /* Copy all the contents. */
457 bcopy (XCHAR_TABLE (arg
)->contents
, XCHAR_TABLE (copy
)->contents
,
458 SUB_CHAR_TABLE_ORDINARY_SLOTS
* sizeof (Lisp_Object
));
459 /* Recursively copy any sub char-tables in the ordinary slots. */
460 for (i
= 32; i
< SUB_CHAR_TABLE_ORDINARY_SLOTS
; i
++)
461 if (SUB_CHAR_TABLE_P (XCHAR_TABLE (arg
)->contents
[i
]))
462 XCHAR_TABLE (copy
)->contents
[i
]
463 = copy_sub_char_table (XCHAR_TABLE (copy
)->contents
[i
]);
469 DEFUN ("copy-sequence", Fcopy_sequence
, Scopy_sequence
, 1, 1, 0,
470 "Return a copy of a list, vector or string.\n\
471 The elements of a list or vector are not copied; they are shared\n\
476 if (NILP (arg
)) return arg
;
478 if (CHAR_TABLE_P (arg
))
483 copy
= Fmake_char_table (XCHAR_TABLE (arg
)->purpose
, Qnil
);
484 /* Copy all the slots, including the extra ones. */
485 bcopy (XVECTOR (arg
)->contents
, XVECTOR (copy
)->contents
,
486 ((XCHAR_TABLE (arg
)->size
& PSEUDOVECTOR_SIZE_MASK
)
487 * sizeof (Lisp_Object
)));
489 /* Recursively copy any sub char tables in the ordinary slots
490 for multibyte characters. */
491 for (i
= CHAR_TABLE_SINGLE_BYTE_SLOTS
;
492 i
< CHAR_TABLE_ORDINARY_SLOTS
; i
++)
493 if (SUB_CHAR_TABLE_P (XCHAR_TABLE (arg
)->contents
[i
]))
494 XCHAR_TABLE (copy
)->contents
[i
]
495 = copy_sub_char_table (XCHAR_TABLE (copy
)->contents
[i
]);
500 if (BOOL_VECTOR_P (arg
))
504 = (XBOOL_VECTOR (arg
)->size
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
;
506 val
= Fmake_bool_vector (Flength (arg
), Qnil
);
507 bcopy (XBOOL_VECTOR (arg
)->data
, XBOOL_VECTOR (val
)->data
,
512 if (!CONSP (arg
) && !VECTORP (arg
) && !STRINGP (arg
))
513 arg
= wrong_type_argument (Qsequencep
, arg
);
514 return concat (1, &arg
, CONSP (arg
) ? Lisp_Cons
: XTYPE (arg
), 0);
517 /* In string STR of length LEN, see if bytes before STR[I] combine
518 with bytes after STR[I] to form a single character. If so, return
519 the number of bytes after STR[I] which combine in this way.
520 Otherwize, return 0. */
523 count_combining (str
, len
, i
)
527 int j
= i
- 1, bytes
;
529 if (i
== 0 || i
== len
|| CHAR_HEAD_P (str
[i
]))
531 while (j
>= 0 && !CHAR_HEAD_P (str
[j
])) j
--;
532 if (j
< 0 || ! BASE_LEADING_CODE_P (str
[j
]))
534 PARSE_MULTIBYTE_SEQ (str
+ j
, len
- j
, bytes
);
535 return (bytes
<= i
- j
? 0 : bytes
- (i
- j
));
538 /* This structure holds information of an argument of `concat' that is
539 a string and has text properties to be copied. */
542 int argnum
; /* refer to ARGS (arguments of `concat') */
543 int from
; /* refer to ARGS[argnum] (argument string) */
544 int to
; /* refer to VAL (the target string) */
548 concat (nargs
, args
, target_type
, last_special
)
551 enum Lisp_Type target_type
;
555 register Lisp_Object tail
;
556 register Lisp_Object
this;
558 int toindex_byte
= 0;
559 register int result_len
;
560 register int result_len_byte
;
562 Lisp_Object last_tail
;
565 /* When we make a multibyte string, we can't copy text properties
566 while concatinating each string because the length of resulting
567 string can't be decided until we finish the whole concatination.
568 So, we record strings that have text properties to be copied
569 here, and copy the text properties after the concatination. */
570 struct textprop_rec
*textprops
= NULL
;
571 /* Number of elments in textprops. */
572 int num_textprops
= 0;
576 /* In append, the last arg isn't treated like the others */
577 if (last_special
&& nargs
> 0)
580 last_tail
= args
[nargs
];
585 /* Canonicalize each argument. */
586 for (argnum
= 0; argnum
< nargs
; argnum
++)
589 if (!(CONSP (this) || NILP (this) || VECTORP (this) || STRINGP (this)
590 || COMPILEDP (this) || BOOL_VECTOR_P (this)))
592 args
[argnum
] = wrong_type_argument (Qsequencep
, this);
596 /* Compute total length in chars of arguments in RESULT_LEN.
597 If desired output is a string, also compute length in bytes
598 in RESULT_LEN_BYTE, and determine in SOME_MULTIBYTE
599 whether the result should be a multibyte string. */
603 for (argnum
= 0; argnum
< nargs
; argnum
++)
607 len
= XFASTINT (Flength (this));
608 if (target_type
== Lisp_String
)
610 /* We must count the number of bytes needed in the string
611 as well as the number of characters. */
617 for (i
= 0; i
< len
; i
++)
619 ch
= XVECTOR (this)->contents
[i
];
621 wrong_type_argument (Qintegerp
, ch
);
622 this_len_byte
= CHAR_BYTES (XINT (ch
));
623 result_len_byte
+= this_len_byte
;
624 if (!SINGLE_BYTE_CHAR_P (XINT (ch
)))
627 else if (BOOL_VECTOR_P (this) && XBOOL_VECTOR (this)->size
> 0)
628 wrong_type_argument (Qintegerp
, Faref (this, make_number (0)));
629 else if (CONSP (this))
630 for (; CONSP (this); this = XCDR (this))
634 wrong_type_argument (Qintegerp
, ch
);
635 this_len_byte
= CHAR_BYTES (XINT (ch
));
636 result_len_byte
+= this_len_byte
;
637 if (!SINGLE_BYTE_CHAR_P (XINT (ch
)))
640 else if (STRINGP (this))
642 if (STRING_MULTIBYTE (this))
645 result_len_byte
+= STRING_BYTES (XSTRING (this));
648 result_len_byte
+= count_size_as_multibyte (XSTRING (this)->data
,
649 XSTRING (this)->size
);
656 if (! some_multibyte
)
657 result_len_byte
= result_len
;
659 /* Create the output object. */
660 if (target_type
== Lisp_Cons
)
661 val
= Fmake_list (make_number (result_len
), Qnil
);
662 else if (target_type
== Lisp_Vectorlike
)
663 val
= Fmake_vector (make_number (result_len
), Qnil
);
664 else if (some_multibyte
)
665 val
= make_uninit_multibyte_string (result_len
, result_len_byte
);
667 val
= make_uninit_string (result_len
);
669 /* In `append', if all but last arg are nil, return last arg. */
670 if (target_type
== Lisp_Cons
&& EQ (val
, Qnil
))
673 /* Copy the contents of the args into the result. */
675 tail
= val
, toindex
= -1; /* -1 in toindex is flag we are making a list */
677 toindex
= 0, toindex_byte
= 0;
682 = (struct textprop_rec
*) alloca (sizeof (struct textprop_rec
) * nargs
);
684 for (argnum
= 0; argnum
< nargs
; argnum
++)
688 register unsigned int thisindex
= 0;
689 register unsigned int thisindex_byte
= 0;
693 thislen
= Flength (this), thisleni
= XINT (thislen
);
695 /* Between strings of the same kind, copy fast. */
696 if (STRINGP (this) && STRINGP (val
)
697 && STRING_MULTIBYTE (this) == some_multibyte
)
699 int thislen_byte
= STRING_BYTES (XSTRING (this));
702 bcopy (XSTRING (this)->data
, XSTRING (val
)->data
+ toindex_byte
,
703 STRING_BYTES (XSTRING (this)));
704 combined
= (some_multibyte
&& toindex_byte
> 0
705 ? count_combining (XSTRING (val
)->data
,
706 toindex_byte
+ thislen_byte
,
709 if (! NULL_INTERVAL_P (XSTRING (this)->intervals
))
711 textprops
[num_textprops
].argnum
= argnum
;
712 /* We ignore text properties on characters being combined. */
713 textprops
[num_textprops
].from
= combined
;
714 textprops
[num_textprops
++].to
= toindex
;
716 toindex_byte
+= thislen_byte
;
717 toindex
+= thisleni
- combined
;
718 XSTRING (val
)->size
-= combined
;
720 /* Copy a single-byte string to a multibyte string. */
721 else if (STRINGP (this) && STRINGP (val
))
723 if (! NULL_INTERVAL_P (XSTRING (this)->intervals
))
725 textprops
[num_textprops
].argnum
= argnum
;
726 textprops
[num_textprops
].from
= 0;
727 textprops
[num_textprops
++].to
= toindex
;
729 toindex_byte
+= copy_text (XSTRING (this)->data
,
730 XSTRING (val
)->data
+ toindex_byte
,
731 XSTRING (this)->size
, 0, 1);
735 /* Copy element by element. */
738 register Lisp_Object elt
;
740 /* Fetch next element of `this' arg into `elt', or break if
741 `this' is exhausted. */
742 if (NILP (this)) break;
744 elt
= XCAR (this), this = XCDR (this);
745 else if (thisindex
>= thisleni
)
747 else if (STRINGP (this))
750 if (STRING_MULTIBYTE (this))
752 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c
, this,
755 XSETFASTINT (elt
, c
);
759 XSETFASTINT (elt
, XSTRING (this)->data
[thisindex
++]);
761 && (XINT (elt
) >= 0240
762 || (XINT (elt
) >= 0200
763 && ! NILP (Vnonascii_translation_table
)))
764 && XINT (elt
) < 0400)
766 c
= unibyte_char_to_multibyte (XINT (elt
));
771 else if (BOOL_VECTOR_P (this))
774 byte
= XBOOL_VECTOR (this)->data
[thisindex
/ BITS_PER_CHAR
];
775 if (byte
& (1 << (thisindex
% BITS_PER_CHAR
)))
782 elt
= XVECTOR (this)->contents
[thisindex
++];
784 /* Store this element into the result. */
791 else if (VECTORP (val
))
792 XVECTOR (val
)->contents
[toindex
++] = elt
;
795 CHECK_NUMBER (elt
, 0);
796 if (SINGLE_BYTE_CHAR_P (XINT (elt
)))
800 += CHAR_STRING (XINT (elt
),
801 XSTRING (val
)->data
+ toindex_byte
);
803 XSTRING (val
)->data
[toindex_byte
++] = XINT (elt
);
806 && count_combining (XSTRING (val
)->data
,
807 toindex_byte
, toindex_byte
- 1))
808 XSTRING (val
)->size
--;
813 /* If we have any multibyte characters,
814 we already decided to make a multibyte string. */
817 /* P exists as a variable
818 to avoid a bug on the Masscomp C compiler. */
819 unsigned char *p
= & XSTRING (val
)->data
[toindex_byte
];
821 toindex_byte
+= CHAR_STRING (c
, p
);
828 XCDR (prev
) = last_tail
;
830 if (num_textprops
> 0)
834 for (argnum
= 0; argnum
< num_textprops
; argnum
++)
836 this = args
[textprops
[argnum
].argnum
];
837 props
= text_property_list (this,
839 make_number (XSTRING (this)->size
),
841 /* If successive arguments have properites, be sure that the
842 value of `composition' property be the copy. */
844 && textprops
[argnum
- 1].argnum
+ 1 == textprops
[argnum
].argnum
)
845 make_composition_value_copy (props
);
846 add_text_properties_from_list (val
, props
,
847 make_number (textprops
[argnum
].to
));
853 static Lisp_Object string_char_byte_cache_string
;
854 static int string_char_byte_cache_charpos
;
855 static int string_char_byte_cache_bytepos
;
858 clear_string_char_byte_cache ()
860 string_char_byte_cache_string
= Qnil
;
863 /* Return the character index corresponding to CHAR_INDEX in STRING. */
866 string_char_to_byte (string
, char_index
)
871 int best_below
, best_below_byte
;
872 int best_above
, best_above_byte
;
874 if (! STRING_MULTIBYTE (string
))
877 best_below
= best_below_byte
= 0;
878 best_above
= XSTRING (string
)->size
;
879 best_above_byte
= STRING_BYTES (XSTRING (string
));
881 if (EQ (string
, string_char_byte_cache_string
))
883 if (string_char_byte_cache_charpos
< char_index
)
885 best_below
= string_char_byte_cache_charpos
;
886 best_below_byte
= string_char_byte_cache_bytepos
;
890 best_above
= string_char_byte_cache_charpos
;
891 best_above_byte
= string_char_byte_cache_bytepos
;
895 if (char_index
- best_below
< best_above
- char_index
)
897 while (best_below
< char_index
)
900 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c
, string
,
901 best_below
, best_below_byte
);
904 i_byte
= best_below_byte
;
908 while (best_above
> char_index
)
910 unsigned char *pend
= XSTRING (string
)->data
+ best_above_byte
;
911 unsigned char *pbeg
= pend
- best_above_byte
;
912 unsigned char *p
= pend
- 1;
915 while (p
> pbeg
&& !CHAR_HEAD_P (*p
)) p
--;
916 PARSE_MULTIBYTE_SEQ (p
, pend
- p
, bytes
);
917 if (bytes
== pend
- p
)
918 best_above_byte
-= bytes
;
919 else if (bytes
> pend
- p
)
920 best_above_byte
-= (pend
- p
);
926 i_byte
= best_above_byte
;
929 string_char_byte_cache_bytepos
= i_byte
;
930 string_char_byte_cache_charpos
= i
;
931 string_char_byte_cache_string
= string
;
936 /* Return the character index corresponding to BYTE_INDEX in STRING. */
939 string_byte_to_char (string
, byte_index
)
944 int best_below
, best_below_byte
;
945 int best_above
, best_above_byte
;
947 if (! STRING_MULTIBYTE (string
))
950 best_below
= best_below_byte
= 0;
951 best_above
= XSTRING (string
)->size
;
952 best_above_byte
= STRING_BYTES (XSTRING (string
));
954 if (EQ (string
, string_char_byte_cache_string
))
956 if (string_char_byte_cache_bytepos
< byte_index
)
958 best_below
= string_char_byte_cache_charpos
;
959 best_below_byte
= string_char_byte_cache_bytepos
;
963 best_above
= string_char_byte_cache_charpos
;
964 best_above_byte
= string_char_byte_cache_bytepos
;
968 if (byte_index
- best_below_byte
< best_above_byte
- byte_index
)
970 while (best_below_byte
< byte_index
)
973 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c
, string
,
974 best_below
, best_below_byte
);
977 i_byte
= best_below_byte
;
981 while (best_above_byte
> byte_index
)
983 unsigned char *pend
= XSTRING (string
)->data
+ best_above_byte
;
984 unsigned char *pbeg
= pend
- best_above_byte
;
985 unsigned char *p
= pend
- 1;
988 while (p
> pbeg
&& !CHAR_HEAD_P (*p
)) p
--;
989 PARSE_MULTIBYTE_SEQ (p
, pend
- p
, bytes
);
990 if (bytes
== pend
- p
)
991 best_above_byte
-= bytes
;
992 else if (bytes
> pend
- p
)
993 best_above_byte
-= (pend
- p
);
999 i_byte
= best_above_byte
;
1002 string_char_byte_cache_bytepos
= i_byte
;
1003 string_char_byte_cache_charpos
= i
;
1004 string_char_byte_cache_string
= string
;
1009 /* Convert STRING to a multibyte string.
1010 Single-byte characters 0240 through 0377 are converted
1011 by adding nonascii_insert_offset to each. */
1014 string_make_multibyte (string
)
1020 if (STRING_MULTIBYTE (string
))
1023 nbytes
= count_size_as_multibyte (XSTRING (string
)->data
,
1024 XSTRING (string
)->size
);
1025 /* If all the chars are ASCII, they won't need any more bytes
1026 once converted. In that case, we can return STRING itself. */
1027 if (nbytes
== STRING_BYTES (XSTRING (string
)))
1030 buf
= (unsigned char *) alloca (nbytes
);
1031 copy_text (XSTRING (string
)->data
, buf
, STRING_BYTES (XSTRING (string
)),
1034 return make_multibyte_string (buf
, XSTRING (string
)->size
, nbytes
);
1037 /* Convert STRING to a single-byte string. */
1040 string_make_unibyte (string
)
1045 if (! STRING_MULTIBYTE (string
))
1048 buf
= (unsigned char *) alloca (XSTRING (string
)->size
);
1050 copy_text (XSTRING (string
)->data
, buf
, STRING_BYTES (XSTRING (string
)),
1053 return make_unibyte_string (buf
, XSTRING (string
)->size
);
1056 DEFUN ("string-make-multibyte", Fstring_make_multibyte
, Sstring_make_multibyte
,
1058 "Return the multibyte equivalent of STRING.\n\
1059 The function `unibyte-char-to-multibyte' is used to convert\n\
1060 each unibyte character to a multibyte character.")
1064 CHECK_STRING (string
, 0);
1066 return string_make_multibyte (string
);
1069 DEFUN ("string-make-unibyte", Fstring_make_unibyte
, Sstring_make_unibyte
,
1071 "Return the unibyte equivalent of STRING.\n\
1072 Multibyte character codes are converted to unibyte\n\
1073 by using just the low 8 bits.")
1077 CHECK_STRING (string
, 0);
1079 return string_make_unibyte (string
);
1082 DEFUN ("string-as-unibyte", Fstring_as_unibyte
, Sstring_as_unibyte
,
1084 "Return a unibyte string with the same individual bytes as STRING.\n\
1085 If STRING is unibyte, the result is STRING itself.\n\
1086 Otherwise it is a newly created string, with no text properties.\n\
1087 If STRING is multibyte and contains a character of charset\n\
1088 `eight-bit-control' or `eight-bit-graphic', it is converted to the\n\
1089 corresponding single byte.")
1093 CHECK_STRING (string
, 0);
1095 if (STRING_MULTIBYTE (string
))
1097 int bytes
= STRING_BYTES (XSTRING (string
));
1098 unsigned char *str
= (unsigned char *) xmalloc (bytes
);
1100 bcopy (XSTRING (string
)->data
, str
, bytes
);
1101 bytes
= str_as_unibyte (str
, bytes
);
1102 string
= make_unibyte_string (str
, bytes
);
1108 DEFUN ("string-as-multibyte", Fstring_as_multibyte
, Sstring_as_multibyte
,
1110 "Return a multibyte string with the same individual bytes as STRING.\n\
1111 If STRING is multibyte, the result is STRING itself.\n\
1112 Otherwise it is a newly created string, with no text properties.\n\
1113 If STRING is unibyte and contains an individual 8-bit byte (i.e. not\n\
1114 part of a multibyte form), it is converted to the corresponding\n\
1115 multibyte character of charset `eight-bit-control' or `eight-bit-graphic'.")
1119 CHECK_STRING (string
, 0);
1121 if (! STRING_MULTIBYTE (string
))
1123 Lisp_Object new_string
;
1126 parse_str_as_multibyte (XSTRING (string
)->data
,
1127 STRING_BYTES (XSTRING (string
)),
1129 new_string
= make_uninit_multibyte_string (nchars
, nbytes
);
1130 bcopy (XSTRING (string
)->data
, XSTRING (new_string
)->data
,
1131 STRING_BYTES (XSTRING (string
)));
1132 if (nbytes
!= STRING_BYTES (XSTRING (string
)))
1133 str_as_multibyte (XSTRING (new_string
)->data
, nbytes
,
1134 STRING_BYTES (XSTRING (string
)), NULL
);
1135 string
= new_string
;
1136 XSTRING (string
)->intervals
= NULL_INTERVAL
;
1141 DEFUN ("copy-alist", Fcopy_alist
, Scopy_alist
, 1, 1, 0,
1142 "Return a copy of ALIST.\n\
1143 This is an alist which represents the same mapping from objects to objects,\n\
1144 but does not share the alist structure with ALIST.\n\
1145 The objects mapped (cars and cdrs of elements of the alist)\n\
1146 are shared, however.\n\
1147 Elements of ALIST that are not conses are also shared.")
1151 register Lisp_Object tem
;
1153 CHECK_LIST (alist
, 0);
1156 alist
= concat (1, &alist
, Lisp_Cons
, 0);
1157 for (tem
= alist
; CONSP (tem
); tem
= XCDR (tem
))
1159 register Lisp_Object car
;
1163 XCAR (tem
) = Fcons (XCAR (car
), XCDR (car
));
1168 DEFUN ("substring", Fsubstring
, Ssubstring
, 2, 3, 0,
1169 "Return a substring of STRING, starting at index FROM and ending before TO.\n\
1170 TO may be nil or omitted; then the substring runs to the end of STRING.\n\
1171 If FROM or TO is negative, it counts from the end.\n\
1173 This function allows vectors as well as strings.")
1176 register Lisp_Object from
, to
;
1181 int from_char
, to_char
;
1182 int from_byte
= 0, to_byte
= 0;
1184 if (! (STRINGP (string
) || VECTORP (string
)))
1185 wrong_type_argument (Qarrayp
, string
);
1187 CHECK_NUMBER (from
, 1);
1189 if (STRINGP (string
))
1191 size
= XSTRING (string
)->size
;
1192 size_byte
= STRING_BYTES (XSTRING (string
));
1195 size
= XVECTOR (string
)->size
;
1200 to_byte
= size_byte
;
1204 CHECK_NUMBER (to
, 2);
1206 to_char
= XINT (to
);
1210 if (STRINGP (string
))
1211 to_byte
= string_char_to_byte (string
, to_char
);
1214 from_char
= XINT (from
);
1217 if (STRINGP (string
))
1218 from_byte
= string_char_to_byte (string
, from_char
);
1220 if (!(0 <= from_char
&& from_char
<= to_char
&& to_char
<= size
))
1221 args_out_of_range_3 (string
, make_number (from_char
),
1222 make_number (to_char
));
1224 if (STRINGP (string
))
1226 res
= make_specified_string (XSTRING (string
)->data
+ from_byte
,
1227 to_char
- from_char
, to_byte
- from_byte
,
1228 STRING_MULTIBYTE (string
));
1229 copy_text_properties (make_number (from_char
), make_number (to_char
),
1230 string
, make_number (0), res
, Qnil
);
1233 res
= Fvector (to_char
- from_char
,
1234 XVECTOR (string
)->contents
+ from_char
);
1239 /* Extract a substring of STRING, giving start and end positions
1240 both in characters and in bytes. */
1243 substring_both (string
, from
, from_byte
, to
, to_byte
)
1245 int from
, from_byte
, to
, to_byte
;
1251 if (! (STRINGP (string
) || VECTORP (string
)))
1252 wrong_type_argument (Qarrayp
, string
);
1254 if (STRINGP (string
))
1256 size
= XSTRING (string
)->size
;
1257 size_byte
= STRING_BYTES (XSTRING (string
));
1260 size
= XVECTOR (string
)->size
;
1262 if (!(0 <= from
&& from
<= to
&& to
<= size
))
1263 args_out_of_range_3 (string
, make_number (from
), make_number (to
));
1265 if (STRINGP (string
))
1267 res
= make_specified_string (XSTRING (string
)->data
+ from_byte
,
1268 to
- from
, to_byte
- from_byte
,
1269 STRING_MULTIBYTE (string
));
1270 copy_text_properties (make_number (from
), make_number (to
),
1271 string
, make_number (0), res
, Qnil
);
1274 res
= Fvector (to
- from
,
1275 XVECTOR (string
)->contents
+ from
);
1280 DEFUN ("nthcdr", Fnthcdr
, Snthcdr
, 2, 2, 0,
1281 "Take cdr N times on LIST, returns the result.")
1284 register Lisp_Object list
;
1286 register int i
, num
;
1287 CHECK_NUMBER (n
, 0);
1289 for (i
= 0; i
< num
&& !NILP (list
); i
++)
1293 wrong_type_argument (Qlistp
, list
);
1299 DEFUN ("nth", Fnth
, Snth
, 2, 2, 0,
1300 "Return the Nth element of LIST.\n\
1301 N counts from zero. If LIST is not that long, nil is returned.")
1303 Lisp_Object n
, list
;
1305 return Fcar (Fnthcdr (n
, list
));
1308 DEFUN ("elt", Felt
, Selt
, 2, 2, 0,
1309 "Return element of SEQUENCE at index N.")
1311 register Lisp_Object sequence
, n
;
1313 CHECK_NUMBER (n
, 0);
1316 if (CONSP (sequence
) || NILP (sequence
))
1317 return Fcar (Fnthcdr (n
, sequence
));
1318 else if (STRINGP (sequence
) || VECTORP (sequence
)
1319 || BOOL_VECTOR_P (sequence
) || CHAR_TABLE_P (sequence
))
1320 return Faref (sequence
, n
);
1322 sequence
= wrong_type_argument (Qsequencep
, sequence
);
1326 DEFUN ("member", Fmember
, Smember
, 2, 2, 0,
1327 "Return non-nil if ELT is an element of LIST. Comparison done with `equal'.\n\
1328 The value is actually the tail of LIST whose car is ELT.")
1330 register Lisp_Object elt
;
1333 register Lisp_Object tail
;
1334 for (tail
= list
; !NILP (tail
); tail
= XCDR (tail
))
1336 register Lisp_Object tem
;
1338 wrong_type_argument (Qlistp
, list
);
1340 if (! NILP (Fequal (elt
, tem
)))
1347 DEFUN ("memq", Fmemq
, Smemq
, 2, 2, 0,
1348 "Return non-nil if ELT is an element of LIST.\n\
1349 Comparison done with EQ. The value is actually the tail of LIST\n\
1352 Lisp_Object elt
, list
;
1356 if (!CONSP (list
) || EQ (XCAR (list
), elt
))
1360 if (!CONSP (list
) || EQ (XCAR (list
), elt
))
1364 if (!CONSP (list
) || EQ (XCAR (list
), elt
))
1371 if (!CONSP (list
) && !NILP (list
))
1372 list
= wrong_type_argument (Qlistp
, list
);
1377 DEFUN ("assq", Fassq
, Sassq
, 2, 2, 0,
1378 "Return non-nil if KEY is `eq' to the car of an element of LIST.\n\
1379 The value is actually the element of LIST whose car is KEY.\n\
1380 Elements of LIST that are not conses are ignored.")
1382 Lisp_Object key
, list
;
1389 || (CONSP (XCAR (list
))
1390 && EQ (XCAR (XCAR (list
)), key
)))
1395 || (CONSP (XCAR (list
))
1396 && EQ (XCAR (XCAR (list
)), key
)))
1401 || (CONSP (XCAR (list
))
1402 && EQ (XCAR (XCAR (list
)), key
)))
1410 result
= XCAR (list
);
1411 else if (NILP (list
))
1414 result
= wrong_type_argument (Qlistp
, list
);
1419 /* Like Fassq but never report an error and do not allow quits.
1420 Use only on lists known never to be circular. */
1423 assq_no_quit (key
, list
)
1424 Lisp_Object key
, list
;
1427 && (!CONSP (XCAR (list
))
1428 || !EQ (XCAR (XCAR (list
)), key
)))
1431 return CONSP (list
) ? XCAR (list
) : Qnil
;
1434 DEFUN ("assoc", Fassoc
, Sassoc
, 2, 2, 0,
1435 "Return non-nil if KEY is `equal' to the car of an element of LIST.\n\
1436 The value is actually the element of LIST whose car equals KEY.")
1438 Lisp_Object key
, list
;
1440 Lisp_Object result
, car
;
1445 || (CONSP (XCAR (list
))
1446 && (car
= XCAR (XCAR (list
)),
1447 EQ (car
, key
) || !NILP (Fequal (car
, key
)))))
1452 || (CONSP (XCAR (list
))
1453 && (car
= XCAR (XCAR (list
)),
1454 EQ (car
, key
) || !NILP (Fequal (car
, key
)))))
1459 || (CONSP (XCAR (list
))
1460 && (car
= XCAR (XCAR (list
)),
1461 EQ (car
, key
) || !NILP (Fequal (car
, key
)))))
1469 result
= XCAR (list
);
1470 else if (NILP (list
))
1473 result
= wrong_type_argument (Qlistp
, list
);
1478 DEFUN ("rassq", Frassq
, Srassq
, 2, 2, 0,
1479 "Return non-nil if KEY is `eq' to the cdr of an element of LIST.\n\
1480 The value is actually the element of LIST whose cdr is KEY.")
1482 register Lisp_Object key
;
1490 || (CONSP (XCAR (list
))
1491 && EQ (XCDR (XCAR (list
)), key
)))
1496 || (CONSP (XCAR (list
))
1497 && EQ (XCDR (XCAR (list
)), key
)))
1502 || (CONSP (XCAR (list
))
1503 && EQ (XCDR (XCAR (list
)), key
)))
1512 else if (CONSP (list
))
1513 result
= XCAR (list
);
1515 result
= wrong_type_argument (Qlistp
, list
);
1520 DEFUN ("rassoc", Frassoc
, Srassoc
, 2, 2, 0,
1521 "Return non-nil if KEY is `equal' to the cdr of an element of LIST.\n\
1522 The value is actually the element of LIST whose cdr equals KEY.")
1524 Lisp_Object key
, list
;
1526 Lisp_Object result
, cdr
;
1531 || (CONSP (XCAR (list
))
1532 && (cdr
= XCDR (XCAR (list
)),
1533 EQ (cdr
, key
) || !NILP (Fequal (cdr
, key
)))))
1538 || (CONSP (XCAR (list
))
1539 && (cdr
= XCDR (XCAR (list
)),
1540 EQ (cdr
, key
) || !NILP (Fequal (cdr
, key
)))))
1545 || (CONSP (XCAR (list
))
1546 && (cdr
= XCDR (XCAR (list
)),
1547 EQ (cdr
, key
) || !NILP (Fequal (cdr
, key
)))))
1555 result
= XCAR (list
);
1556 else if (NILP (list
))
1559 result
= wrong_type_argument (Qlistp
, list
);
1564 DEFUN ("delq", Fdelq
, Sdelq
, 2, 2, 0,
1565 "Delete by side effect any occurrences of ELT as a member of LIST.\n\
1566 The modified LIST is returned. Comparison is done with `eq'.\n\
1567 If the first member of LIST is ELT, there is no way to remove it by side effect;\n\
1568 therefore, write `(setq foo (delq element foo))'\n\
1569 to be sure of changing the value of `foo'.")
1571 register Lisp_Object elt
;
1574 register Lisp_Object tail
, prev
;
1575 register Lisp_Object tem
;
1579 while (!NILP (tail
))
1582 wrong_type_argument (Qlistp
, list
);
1589 Fsetcdr (prev
, XCDR (tail
));
1599 DEFUN ("delete", Fdelete
, Sdelete
, 2, 2, 0,
1600 "Delete by side effect any occurrences of ELT as a member of SEQ.\n\
1601 SEQ must be a list, a vector, or a string.\n\
1602 The modified SEQ is returned. Comparison is done with `equal'.\n\
1603 If SEQ is not a list, or the first member of SEQ is ELT, deleting it\n\
1604 is not a side effect; it is simply using a different sequence.\n\
1605 Therefore, write `(setq foo (delete element foo))'\n\
1606 to be sure of changing the value of `foo'.")
1608 Lisp_Object elt
, seq
;
1612 EMACS_INT i
, n
, size
;
1614 for (i
= n
= 0; i
< ASIZE (seq
); ++i
)
1615 if (NILP (Fequal (AREF (seq
, i
), elt
)))
1618 if (n
!= ASIZE (seq
))
1620 struct Lisp_Vector
*p
= allocate_vectorlike (n
);
1622 for (i
= n
= 0; i
< ASIZE (seq
); ++i
)
1623 if (NILP (Fequal (AREF (seq
, i
), elt
)))
1624 p
->contents
[n
++] = AREF (seq
, i
);
1627 XSETVECTOR (seq
, p
);
1630 else if (STRINGP (seq
))
1632 EMACS_INT i
, ibyte
, nchars
, nbytes
, cbytes
;
1635 for (i
= nchars
= nbytes
= ibyte
= 0;
1636 i
< XSTRING (seq
)->size
;
1637 ++i
, ibyte
+= cbytes
)
1639 if (STRING_MULTIBYTE (seq
))
1641 c
= STRING_CHAR (&XSTRING (seq
)->data
[ibyte
],
1642 STRING_BYTES (XSTRING (seq
)) - ibyte
);
1643 cbytes
= CHAR_BYTES (c
);
1647 c
= XSTRING (seq
)->data
[i
];
1651 if (!INTEGERP (elt
) || c
!= XINT (elt
))
1658 if (nchars
!= XSTRING (seq
)->size
)
1662 tem
= make_uninit_multibyte_string (nchars
, nbytes
);
1663 if (!STRING_MULTIBYTE (seq
))
1664 SET_STRING_BYTES (XSTRING (tem
), -1);
1666 for (i
= nchars
= nbytes
= ibyte
= 0;
1667 i
< XSTRING (seq
)->size
;
1668 ++i
, ibyte
+= cbytes
)
1670 if (STRING_MULTIBYTE (seq
))
1672 c
= STRING_CHAR (&XSTRING (seq
)->data
[ibyte
],
1673 STRING_BYTES (XSTRING (seq
)) - ibyte
);
1674 cbytes
= CHAR_BYTES (c
);
1678 c
= XSTRING (seq
)->data
[i
];
1682 if (!INTEGERP (elt
) || c
!= XINT (elt
))
1684 unsigned char *from
= &XSTRING (seq
)->data
[ibyte
];
1685 unsigned char *to
= &XSTRING (tem
)->data
[nbytes
];
1691 for (n
= cbytes
; n
--; )
1701 Lisp_Object tail
, prev
;
1703 for (tail
= seq
, prev
= Qnil
; !NILP (tail
); tail
= XCDR (tail
))
1706 wrong_type_argument (Qlistp
, seq
);
1708 if (!NILP (Fequal (elt
, XCAR (tail
))))
1713 Fsetcdr (prev
, XCDR (tail
));
1724 DEFUN ("nreverse", Fnreverse
, Snreverse
, 1, 1, 0,
1725 "Reverse LIST by modifying cdr pointers.\n\
1726 Returns the beginning of the reversed list.")
1730 register Lisp_Object prev
, tail
, next
;
1732 if (NILP (list
)) return list
;
1735 while (!NILP (tail
))
1739 wrong_type_argument (Qlistp
, list
);
1741 Fsetcdr (tail
, prev
);
1748 DEFUN ("reverse", Freverse
, Sreverse
, 1, 1, 0,
1749 "Reverse LIST, copying. Returns the beginning of the reversed list.\n\
1750 See also the function `nreverse', which is used more often.")
1756 for (new = Qnil
; CONSP (list
); list
= XCDR (list
))
1757 new = Fcons (XCAR (list
), new);
1759 wrong_type_argument (Qconsp
, list
);
1763 Lisp_Object
merge ();
1765 DEFUN ("sort", Fsort
, Ssort
, 2, 2, 0,
1766 "Sort LIST, stably, comparing elements using PREDICATE.\n\
1767 Returns the sorted list. LIST is modified by side effects.\n\
1768 PREDICATE is called with two elements of LIST, and should return T\n\
1769 if the first element is \"less\" than the second.")
1771 Lisp_Object list
, predicate
;
1773 Lisp_Object front
, back
;
1774 register Lisp_Object len
, tem
;
1775 struct gcpro gcpro1
, gcpro2
;
1776 register int length
;
1779 len
= Flength (list
);
1780 length
= XINT (len
);
1784 XSETINT (len
, (length
/ 2) - 1);
1785 tem
= Fnthcdr (len
, list
);
1787 Fsetcdr (tem
, Qnil
);
1789 GCPRO2 (front
, back
);
1790 front
= Fsort (front
, predicate
);
1791 back
= Fsort (back
, predicate
);
1793 return merge (front
, back
, predicate
);
1797 merge (org_l1
, org_l2
, pred
)
1798 Lisp_Object org_l1
, org_l2
;
1802 register Lisp_Object tail
;
1804 register Lisp_Object l1
, l2
;
1805 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
1812 /* It is sufficient to protect org_l1 and org_l2.
1813 When l1 and l2 are updated, we copy the new values
1814 back into the org_ vars. */
1815 GCPRO4 (org_l1
, org_l2
, pred
, value
);
1835 tem
= call2 (pred
, Fcar (l2
), Fcar (l1
));
1851 Fsetcdr (tail
, tem
);
1857 DEFUN ("plist-get", Fplist_get
, Splist_get
, 2, 2, 0,
1858 "Extract a value from a property list.\n\
1859 PLIST is a property list, which is a list of the form\n\
1860 \(PROP1 VALUE1 PROP2 VALUE2...). This function returns the value\n\
1861 corresponding to the given PROP, or nil if PROP is not\n\
1862 one of the properties on the list.")
1865 register Lisp_Object prop
;
1867 register Lisp_Object tail
;
1868 for (tail
= plist
; !NILP (tail
); tail
= Fcdr (XCDR (tail
)))
1870 register Lisp_Object tem
;
1873 return Fcar (XCDR (tail
));
1878 DEFUN ("get", Fget
, Sget
, 2, 2, 0,
1879 "Return the value of SYMBOL's PROPNAME property.\n\
1880 This is the last value stored with `(put SYMBOL PROPNAME VALUE)'.")
1882 Lisp_Object symbol
, propname
;
1884 CHECK_SYMBOL (symbol
, 0);
1885 return Fplist_get (XSYMBOL (symbol
)->plist
, propname
);
1888 DEFUN ("plist-put", Fplist_put
, Splist_put
, 3, 3, 0,
1889 "Change value in PLIST of PROP to VAL.\n\
1890 PLIST is a property list, which is a list of the form\n\
1891 \(PROP1 VALUE1 PROP2 VALUE2 ...). PROP is a symbol and VAL is any object.\n\
1892 If PROP is already a property on the list, its value is set to VAL,\n\
1893 otherwise the new PROP VAL pair is added. The new plist is returned;\n\
1894 use `(setq x (plist-put x prop val))' to be sure to use the new value.\n\
1895 The PLIST is modified by side effects.")
1898 register Lisp_Object prop
;
1901 register Lisp_Object tail
, prev
;
1902 Lisp_Object newcell
;
1904 for (tail
= plist
; CONSP (tail
) && CONSP (XCDR (tail
));
1905 tail
= XCDR (XCDR (tail
)))
1907 if (EQ (prop
, XCAR (tail
)))
1909 Fsetcar (XCDR (tail
), val
);
1914 newcell
= Fcons (prop
, Fcons (val
, Qnil
));
1918 Fsetcdr (XCDR (prev
), newcell
);
1922 DEFUN ("put", Fput
, Sput
, 3, 3, 0,
1923 "Store SYMBOL's PROPNAME property with value VALUE.\n\
1924 It can be retrieved with `(get SYMBOL PROPNAME)'.")
1925 (symbol
, propname
, value
)
1926 Lisp_Object symbol
, propname
, value
;
1928 CHECK_SYMBOL (symbol
, 0);
1929 XSYMBOL (symbol
)->plist
1930 = Fplist_put (XSYMBOL (symbol
)->plist
, propname
, value
);
1934 DEFUN ("equal", Fequal
, Sequal
, 2, 2, 0,
1935 "Return t if two Lisp objects have similar structure and contents.\n\
1936 They must have the same data type.\n\
1937 Conses are compared by comparing the cars and the cdrs.\n\
1938 Vectors and strings are compared element by element.\n\
1939 Numbers are compared by value, but integers cannot equal floats.\n\
1940 (Use `=' if you want integers and floats to be able to be equal.)\n\
1941 Symbols must match exactly.")
1943 register Lisp_Object o1
, o2
;
1945 return internal_equal (o1
, o2
, 0) ? Qt
: Qnil
;
1949 internal_equal (o1
, o2
, depth
)
1950 register Lisp_Object o1
, o2
;
1954 error ("Stack overflow in equal");
1960 if (XTYPE (o1
) != XTYPE (o2
))
1966 return (extract_float (o1
) == extract_float (o2
));
1969 if (!internal_equal (XCAR (o1
), XCAR (o2
), depth
+ 1))
1976 if (XMISCTYPE (o1
) != XMISCTYPE (o2
))
1980 if (!internal_equal (OVERLAY_START (o1
), OVERLAY_START (o2
),
1982 || !internal_equal (OVERLAY_END (o1
), OVERLAY_END (o2
),
1985 o1
= XOVERLAY (o1
)->plist
;
1986 o2
= XOVERLAY (o2
)->plist
;
1991 return (XMARKER (o1
)->buffer
== XMARKER (o2
)->buffer
1992 && (XMARKER (o1
)->buffer
== 0
1993 || XMARKER (o1
)->bytepos
== XMARKER (o2
)->bytepos
));
1997 case Lisp_Vectorlike
:
1999 register int i
, size
;
2000 size
= XVECTOR (o1
)->size
;
2001 /* Pseudovectors have the type encoded in the size field, so this test
2002 actually checks that the objects have the same type as well as the
2004 if (XVECTOR (o2
)->size
!= size
)
2006 /* Boolvectors are compared much like strings. */
2007 if (BOOL_VECTOR_P (o1
))
2010 = (XBOOL_VECTOR (o1
)->size
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
;
2012 if (XBOOL_VECTOR (o1
)->size
!= XBOOL_VECTOR (o2
)->size
)
2014 if (bcmp (XBOOL_VECTOR (o1
)->data
, XBOOL_VECTOR (o2
)->data
,
2019 if (WINDOW_CONFIGURATIONP (o1
))
2020 return compare_window_configurations (o1
, o2
, 0);
2022 /* Aside from them, only true vectors, char-tables, and compiled
2023 functions are sensible to compare, so eliminate the others now. */
2024 if (size
& PSEUDOVECTOR_FLAG
)
2026 if (!(size
& (PVEC_COMPILED
| PVEC_CHAR_TABLE
)))
2028 size
&= PSEUDOVECTOR_SIZE_MASK
;
2030 for (i
= 0; i
< size
; i
++)
2033 v1
= XVECTOR (o1
)->contents
[i
];
2034 v2
= XVECTOR (o2
)->contents
[i
];
2035 if (!internal_equal (v1
, v2
, depth
+ 1))
2043 if (XSTRING (o1
)->size
!= XSTRING (o2
)->size
)
2045 if (STRING_BYTES (XSTRING (o1
)) != STRING_BYTES (XSTRING (o2
)))
2047 if (bcmp (XSTRING (o1
)->data
, XSTRING (o2
)->data
,
2048 STRING_BYTES (XSTRING (o1
))))
2054 case Lisp_Type_Limit
:
2061 extern Lisp_Object
Fmake_char_internal ();
2063 DEFUN ("fillarray", Ffillarray
, Sfillarray
, 2, 2, 0,
2064 "Store each element of ARRAY with ITEM.\n\
2065 ARRAY is a vector, string, char-table, or bool-vector.")
2067 Lisp_Object array
, item
;
2069 register int size
, index
, charval
;
2071 if (VECTORP (array
))
2073 register Lisp_Object
*p
= XVECTOR (array
)->contents
;
2074 size
= XVECTOR (array
)->size
;
2075 for (index
= 0; index
< size
; index
++)
2078 else if (CHAR_TABLE_P (array
))
2080 register Lisp_Object
*p
= XCHAR_TABLE (array
)->contents
;
2081 size
= CHAR_TABLE_ORDINARY_SLOTS
;
2082 for (index
= 0; index
< size
; index
++)
2084 XCHAR_TABLE (array
)->defalt
= Qnil
;
2086 else if (STRINGP (array
))
2088 register unsigned char *p
= XSTRING (array
)->data
;
2089 CHECK_NUMBER (item
, 1);
2090 charval
= XINT (item
);
2091 size
= XSTRING (array
)->size
;
2092 if (STRING_MULTIBYTE (array
))
2094 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
2095 int len
= CHAR_STRING (charval
, str
);
2096 int size_byte
= STRING_BYTES (XSTRING (array
));
2097 unsigned char *p1
= p
, *endp
= p
+ size_byte
;
2100 if (size
!= size_byte
)
2103 int this_len
= MULTIBYTE_FORM_LENGTH (p1
, endp
- p1
);
2104 if (len
!= this_len
)
2105 error ("Attempt to change byte length of a string");
2108 for (i
= 0; i
< size_byte
; i
++)
2109 *p
++ = str
[i
% len
];
2112 for (index
= 0; index
< size
; index
++)
2115 else if (BOOL_VECTOR_P (array
))
2117 register unsigned char *p
= XBOOL_VECTOR (array
)->data
;
2119 = (XBOOL_VECTOR (array
)->size
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
;
2121 charval
= (! NILP (item
) ? -1 : 0);
2122 for (index
= 0; index
< size_in_chars
; index
++)
2127 array
= wrong_type_argument (Qarrayp
, array
);
2133 DEFUN ("char-table-subtype", Fchar_table_subtype
, Schar_table_subtype
,
2135 "Return the subtype of char-table CHAR-TABLE. The value is a symbol.")
2137 Lisp_Object char_table
;
2139 CHECK_CHAR_TABLE (char_table
, 0);
2141 return XCHAR_TABLE (char_table
)->purpose
;
2144 DEFUN ("char-table-parent", Fchar_table_parent
, Schar_table_parent
,
2146 "Return the parent char-table of CHAR-TABLE.\n\
2147 The value is either nil or another char-table.\n\
2148 If CHAR-TABLE holds nil for a given character,\n\
2149 then the actual applicable value is inherited from the parent char-table\n\
2150 \(or from its parents, if necessary).")
2152 Lisp_Object char_table
;
2154 CHECK_CHAR_TABLE (char_table
, 0);
2156 return XCHAR_TABLE (char_table
)->parent
;
2159 DEFUN ("set-char-table-parent", Fset_char_table_parent
, Sset_char_table_parent
,
2161 "Set the parent char-table of CHAR-TABLE to PARENT.\n\
2162 PARENT must be either nil or another char-table.")
2163 (char_table
, parent
)
2164 Lisp_Object char_table
, parent
;
2168 CHECK_CHAR_TABLE (char_table
, 0);
2172 CHECK_CHAR_TABLE (parent
, 0);
2174 for (temp
= parent
; !NILP (temp
); temp
= XCHAR_TABLE (temp
)->parent
)
2175 if (EQ (temp
, char_table
))
2176 error ("Attempt to make a chartable be its own parent");
2179 XCHAR_TABLE (char_table
)->parent
= parent
;
2184 DEFUN ("char-table-extra-slot", Fchar_table_extra_slot
, Schar_table_extra_slot
,
2186 "Return the value of CHAR-TABLE's extra-slot number N.")
2188 Lisp_Object char_table
, n
;
2190 CHECK_CHAR_TABLE (char_table
, 1);
2191 CHECK_NUMBER (n
, 2);
2193 || XINT (n
) >= CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (char_table
)))
2194 args_out_of_range (char_table
, n
);
2196 return XCHAR_TABLE (char_table
)->extras
[XINT (n
)];
2199 DEFUN ("set-char-table-extra-slot", Fset_char_table_extra_slot
,
2200 Sset_char_table_extra_slot
,
2202 "Set CHAR-TABLE's extra-slot number N to VALUE.")
2203 (char_table
, n
, value
)
2204 Lisp_Object char_table
, n
, value
;
2206 CHECK_CHAR_TABLE (char_table
, 1);
2207 CHECK_NUMBER (n
, 2);
2209 || XINT (n
) >= CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (char_table
)))
2210 args_out_of_range (char_table
, n
);
2212 return XCHAR_TABLE (char_table
)->extras
[XINT (n
)] = value
;
2215 DEFUN ("char-table-range", Fchar_table_range
, Schar_table_range
,
2217 "Return the value in CHAR-TABLE for a range of characters RANGE.\n\
2218 RANGE should be nil (for the default value)\n\
2219 a vector which identifies a character set or a row of a character set,\n\
2220 a character set name, or a character code.")
2222 Lisp_Object char_table
, range
;
2224 CHECK_CHAR_TABLE (char_table
, 0);
2226 if (EQ (range
, Qnil
))
2227 return XCHAR_TABLE (char_table
)->defalt
;
2228 else if (INTEGERP (range
))
2229 return Faref (char_table
, range
);
2230 else if (SYMBOLP (range
))
2232 Lisp_Object charset_info
;
2234 charset_info
= Fget (range
, Qcharset
);
2235 CHECK_VECTOR (charset_info
, 0);
2237 return Faref (char_table
,
2238 make_number (XINT (XVECTOR (charset_info
)->contents
[0])
2241 else if (VECTORP (range
))
2243 if (XVECTOR (range
)->size
== 1)
2244 return Faref (char_table
,
2245 make_number (XINT (XVECTOR (range
)->contents
[0]) + 128));
2248 int size
= XVECTOR (range
)->size
;
2249 Lisp_Object
*val
= XVECTOR (range
)->contents
;
2250 Lisp_Object ch
= Fmake_char_internal (size
<= 0 ? Qnil
: val
[0],
2251 size
<= 1 ? Qnil
: val
[1],
2252 size
<= 2 ? Qnil
: val
[2]);
2253 return Faref (char_table
, ch
);
2257 error ("Invalid RANGE argument to `char-table-range'");
2261 DEFUN ("set-char-table-range", Fset_char_table_range
, Sset_char_table_range
,
2263 "Set the value in CHAR-TABLE for a range of characters RANGE to VALUE.\n\
2264 RANGE should be t (for all characters), nil (for the default value)\n\
2265 a vector which identifies a character set or a row of a character set,\n\
2266 a coding system, or a character code.")
2267 (char_table
, range
, value
)
2268 Lisp_Object char_table
, range
, value
;
2272 CHECK_CHAR_TABLE (char_table
, 0);
2275 for (i
= 0; i
< CHAR_TABLE_ORDINARY_SLOTS
; i
++)
2276 XCHAR_TABLE (char_table
)->contents
[i
] = value
;
2277 else if (EQ (range
, Qnil
))
2278 XCHAR_TABLE (char_table
)->defalt
= value
;
2279 else if (SYMBOLP (range
))
2281 Lisp_Object charset_info
;
2283 charset_info
= Fget (range
, Qcharset
);
2284 CHECK_VECTOR (charset_info
, 0);
2286 return Faset (char_table
,
2287 make_number (XINT (XVECTOR (charset_info
)->contents
[0])
2291 else if (INTEGERP (range
))
2292 Faset (char_table
, range
, value
);
2293 else if (VECTORP (range
))
2295 if (XVECTOR (range
)->size
== 1)
2296 return Faset (char_table
,
2297 make_number (XINT (XVECTOR (range
)->contents
[0]) + 128),
2301 int size
= XVECTOR (range
)->size
;
2302 Lisp_Object
*val
= XVECTOR (range
)->contents
;
2303 Lisp_Object ch
= Fmake_char_internal (size
<= 0 ? Qnil
: val
[0],
2304 size
<= 1 ? Qnil
: val
[1],
2305 size
<= 2 ? Qnil
: val
[2]);
2306 return Faset (char_table
, ch
, value
);
2310 error ("Invalid RANGE argument to `set-char-table-range'");
2315 DEFUN ("set-char-table-default", Fset_char_table_default
,
2316 Sset_char_table_default
, 3, 3, 0,
2317 "Set the default value in CHAR-TABLE for a generic character CHAR to VALUE.\n\
2318 The generic character specifies the group of characters.\n\
2319 See also the documentation of make-char.")
2320 (char_table
, ch
, value
)
2321 Lisp_Object char_table
, ch
, value
;
2323 int c
, charset
, code1
, code2
;
2326 CHECK_CHAR_TABLE (char_table
, 0);
2327 CHECK_NUMBER (ch
, 1);
2330 SPLIT_CHAR (c
, charset
, code1
, code2
);
2332 /* Since we may want to set the default value for a character set
2333 not yet defined, we check only if the character set is in the
2334 valid range or not, instead of it is already defined or not. */
2335 if (! CHARSET_VALID_P (charset
))
2336 invalid_character (c
);
2338 if (charset
== CHARSET_ASCII
)
2339 return (XCHAR_TABLE (char_table
)->defalt
= value
);
2341 /* Even if C is not a generic char, we had better behave as if a
2342 generic char is specified. */
2343 if (CHARSET_DIMENSION (charset
) == 1)
2345 temp
= XCHAR_TABLE (char_table
)->contents
[charset
+ 128];
2348 if (SUB_CHAR_TABLE_P (temp
))
2349 XCHAR_TABLE (temp
)->defalt
= value
;
2351 XCHAR_TABLE (char_table
)->contents
[charset
+ 128] = value
;
2355 if (! SUB_CHAR_TABLE_P (char_table
))
2356 char_table
= (XCHAR_TABLE (char_table
)->contents
[charset
+ 128]
2357 = make_sub_char_table (temp
));
2358 temp
= XCHAR_TABLE (char_table
)->contents
[code1
];
2359 if (SUB_CHAR_TABLE_P (temp
))
2360 XCHAR_TABLE (temp
)->defalt
= value
;
2362 XCHAR_TABLE (char_table
)->contents
[code1
] = value
;
2366 /* Look up the element in TABLE at index CH,
2367 and return it as an integer.
2368 If the element is nil, return CH itself.
2369 (Actually we do that for any non-integer.) */
2372 char_table_translate (table
, ch
)
2377 value
= Faref (table
, make_number (ch
));
2378 if (! INTEGERP (value
))
2380 return XINT (value
);
2384 optimize_sub_char_table (table
, chars
)
2392 from
= 33, to
= 127;
2394 from
= 32, to
= 128;
2396 if (!SUB_CHAR_TABLE_P (*table
))
2398 elt
= XCHAR_TABLE (*table
)->contents
[from
++];
2399 for (; from
< to
; from
++)
2400 if (NILP (Fequal (elt
, XCHAR_TABLE (*table
)->contents
[from
])))
2405 DEFUN ("optimize-char-table", Foptimize_char_table
, Soptimize_char_table
,
2407 "Optimize char table TABLE.")
2415 CHECK_CHAR_TABLE (table
, 0);
2417 for (i
= CHAR_TABLE_SINGLE_BYTE_SLOTS
; i
< CHAR_TABLE_ORDINARY_SLOTS
; i
++)
2419 elt
= XCHAR_TABLE (table
)->contents
[i
];
2420 if (!SUB_CHAR_TABLE_P (elt
))
2422 dim
= CHARSET_DIMENSION (i
- 128);
2424 for (j
= 32; j
< SUB_CHAR_TABLE_ORDINARY_SLOTS
; j
++)
2425 optimize_sub_char_table (XCHAR_TABLE (elt
)->contents
+ j
, dim
);
2426 optimize_sub_char_table (XCHAR_TABLE (table
)->contents
+ i
, dim
);
2432 /* Map C_FUNCTION or FUNCTION over SUBTABLE, calling it for each
2433 character or group of characters that share a value.
2434 DEPTH is the current depth in the originally specified
2435 chartable, and INDICES contains the vector indices
2436 for the levels our callers have descended.
2438 ARG is passed to C_FUNCTION when that is called. */
2441 map_char_table (c_function
, function
, subtable
, arg
, depth
, indices
)
2442 void (*c_function
) P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
));
2443 Lisp_Object function
, subtable
, arg
, *indices
;
2450 /* At first, handle ASCII and 8-bit European characters. */
2451 for (i
= 0; i
< CHAR_TABLE_SINGLE_BYTE_SLOTS
; i
++)
2453 Lisp_Object elt
= XCHAR_TABLE (subtable
)->contents
[i
];
2455 (*c_function
) (arg
, make_number (i
), elt
);
2457 call2 (function
, make_number (i
), elt
);
2459 #if 0 /* If the char table has entries for higher characters,
2460 we should report them. */
2461 if (NILP (current_buffer
->enable_multibyte_characters
))
2464 to
= CHAR_TABLE_ORDINARY_SLOTS
;
2468 int charset
= XFASTINT (indices
[0]) - 128;
2471 to
= SUB_CHAR_TABLE_ORDINARY_SLOTS
;
2472 if (CHARSET_CHARS (charset
) == 94)
2481 elt
= XCHAR_TABLE (subtable
)->contents
[i
];
2482 XSETFASTINT (indices
[depth
], i
);
2483 charset
= XFASTINT (indices
[0]) - 128;
2485 && (!CHARSET_DEFINED_P (charset
)
2486 || charset
== CHARSET_8_BIT_CONTROL
2487 || charset
== CHARSET_8_BIT_GRAPHIC
))
2490 if (SUB_CHAR_TABLE_P (elt
))
2493 error ("Too deep char table");
2494 map_char_table (c_function
, function
, elt
, arg
, depth
+ 1, indices
);
2501 elt
= XCHAR_TABLE (subtable
)->defalt
;
2502 c1
= depth
>= 1 ? XFASTINT (indices
[1]) : 0;
2503 c2
= depth
>= 2 ? XFASTINT (indices
[2]) : 0;
2504 c
= MAKE_CHAR (charset
, c1
, c2
);
2506 (*c_function
) (arg
, make_number (c
), elt
);
2508 call2 (function
, make_number (c
), elt
);
2513 DEFUN ("map-char-table", Fmap_char_table
, Smap_char_table
,
2515 "Call FUNCTION for each (normal and generic) characters in CHAR-TABLE.\n\
2516 FUNCTION is called with two arguments--a key and a value.\n\
2517 The key is always a possible IDX argument to `aref'.")
2518 (function
, char_table
)
2519 Lisp_Object function
, char_table
;
2521 /* The depth of char table is at most 3. */
2522 Lisp_Object indices
[3];
2524 CHECK_CHAR_TABLE (char_table
, 1);
2526 map_char_table (NULL
, function
, char_table
, char_table
, 0, indices
);
2530 /* Return a value for character C in char-table TABLE. Store the
2531 actual index for that value in *IDX. Ignore the default value of
2535 char_table_ref_and_index (table
, c
, idx
)
2539 int charset
, c1
, c2
;
2542 if (SINGLE_BYTE_CHAR_P (c
))
2545 return XCHAR_TABLE (table
)->contents
[c
];
2547 SPLIT_CHAR (c
, charset
, c1
, c2
);
2548 elt
= XCHAR_TABLE (table
)->contents
[charset
+ 128];
2549 *idx
= MAKE_CHAR (charset
, 0, 0);
2550 if (!SUB_CHAR_TABLE_P (elt
))
2552 if (c1
< 32 || NILP (XCHAR_TABLE (elt
)->contents
[c1
]))
2553 return XCHAR_TABLE (elt
)->defalt
;
2554 elt
= XCHAR_TABLE (elt
)->contents
[c1
];
2555 *idx
= MAKE_CHAR (charset
, c1
, 0);
2556 if (!SUB_CHAR_TABLE_P (elt
))
2558 if (c2
< 32 || NILP (XCHAR_TABLE (elt
)->contents
[c2
]))
2559 return XCHAR_TABLE (elt
)->defalt
;
2561 return XCHAR_TABLE (elt
)->contents
[c2
];
2571 Lisp_Object args
[2];
2574 return Fnconc (2, args
);
2576 return Fnconc (2, &s1
);
2577 #endif /* NO_ARG_ARRAY */
2580 DEFUN ("nconc", Fnconc
, Snconc
, 0, MANY
, 0,
2581 "Concatenate any number of lists by altering them.\n\
2582 Only the last argument is not altered, and need not be a list.")
2587 register int argnum
;
2588 register Lisp_Object tail
, tem
, val
;
2592 for (argnum
= 0; argnum
< nargs
; argnum
++)
2595 if (NILP (tem
)) continue;
2600 if (argnum
+ 1 == nargs
) break;
2603 tem
= wrong_type_argument (Qlistp
, tem
);
2612 tem
= args
[argnum
+ 1];
2613 Fsetcdr (tail
, tem
);
2615 args
[argnum
+ 1] = tail
;
2621 /* This is the guts of all mapping functions.
2622 Apply FN to each element of SEQ, one by one,
2623 storing the results into elements of VALS, a C vector of Lisp_Objects.
2624 LENI is the length of VALS, which should also be the length of SEQ. */
2627 mapcar1 (leni
, vals
, fn
, seq
)
2630 Lisp_Object fn
, seq
;
2632 register Lisp_Object tail
;
2635 struct gcpro gcpro1
, gcpro2
, gcpro3
;
2639 /* Don't let vals contain any garbage when GC happens. */
2640 for (i
= 0; i
< leni
; i
++)
2643 GCPRO3 (dummy
, fn
, seq
);
2645 gcpro1
.nvars
= leni
;
2649 /* We need not explicitly protect `tail' because it is used only on lists, and
2650 1) lists are not relocated and 2) the list is marked via `seq' so will not be freed */
2654 for (i
= 0; i
< leni
; i
++)
2656 dummy
= XVECTOR (seq
)->contents
[i
];
2657 dummy
= call1 (fn
, dummy
);
2662 else if (BOOL_VECTOR_P (seq
))
2664 for (i
= 0; i
< leni
; i
++)
2667 byte
= XBOOL_VECTOR (seq
)->data
[i
/ BITS_PER_CHAR
];
2668 if (byte
& (1 << (i
% BITS_PER_CHAR
)))
2673 dummy
= call1 (fn
, dummy
);
2678 else if (STRINGP (seq
))
2682 for (i
= 0, i_byte
= 0; i
< leni
;)
2687 FETCH_STRING_CHAR_ADVANCE (c
, seq
, i
, i_byte
);
2688 XSETFASTINT (dummy
, c
);
2689 dummy
= call1 (fn
, dummy
);
2691 vals
[i_before
] = dummy
;
2694 else /* Must be a list, since Flength did not get an error */
2697 for (i
= 0; i
< leni
; i
++)
2699 dummy
= call1 (fn
, Fcar (tail
));
2709 DEFUN ("mapconcat", Fmapconcat
, Smapconcat
, 3, 3, 0,
2710 "Apply FUNCTION to each element of SEQUENCE, and concat the results as strings.\n\
2711 In between each pair of results, stick in SEPARATOR. Thus, \" \" as\n\
2712 SEPARATOR results in spaces between the values returned by FUNCTION.\n\
2713 SEQUENCE may be a list, a vector, a bool-vector, or a string.")
2714 (function
, sequence
, separator
)
2715 Lisp_Object function
, sequence
, separator
;
2720 register Lisp_Object
*args
;
2722 struct gcpro gcpro1
;
2724 len
= Flength (sequence
);
2726 nargs
= leni
+ leni
- 1;
2727 if (nargs
< 0) return build_string ("");
2729 args
= (Lisp_Object
*) alloca (nargs
* sizeof (Lisp_Object
));
2732 mapcar1 (leni
, args
, function
, sequence
);
2735 for (i
= leni
- 1; i
>= 0; i
--)
2736 args
[i
+ i
] = args
[i
];
2738 for (i
= 1; i
< nargs
; i
+= 2)
2739 args
[i
] = separator
;
2741 return Fconcat (nargs
, args
);
2744 DEFUN ("mapcar", Fmapcar
, Smapcar
, 2, 2, 0,
2745 "Apply FUNCTION to each element of SEQUENCE, and make a list of the results.\n\
2746 The result is a list just as long as SEQUENCE.\n\
2747 SEQUENCE may be a list, a vector, a bool-vector, or a string.")
2748 (function
, sequence
)
2749 Lisp_Object function
, sequence
;
2751 register Lisp_Object len
;
2753 register Lisp_Object
*args
;
2755 len
= Flength (sequence
);
2756 leni
= XFASTINT (len
);
2757 args
= (Lisp_Object
*) alloca (leni
* sizeof (Lisp_Object
));
2759 mapcar1 (leni
, args
, function
, sequence
);
2761 return Flist (leni
, args
);
2764 DEFUN ("mapc", Fmapc
, Smapc
, 2, 2, 0,
2765 "Apply FUNCTION to each element of SEQUENCE for side effects only.\n\
2766 Unlike `mapcar', don't accumulate the results. Return SEQUENCE.\n\
2767 SEQUENCE may be a list, a vector, a bool-vector, or a string.")
2768 (function
, sequence
)
2769 Lisp_Object function
, sequence
;
2773 leni
= XFASTINT (Flength (sequence
));
2774 mapcar1 (leni
, 0, function
, sequence
);
2779 /* Anything that calls this function must protect from GC! */
2781 DEFUN ("y-or-n-p", Fy_or_n_p
, Sy_or_n_p
, 1, 1, 0,
2782 "Ask user a \"y or n\" question. Return t if answer is \"y\".\n\
2783 Takes one argument, which is the string to display to ask the question.\n\
2784 It should end in a space; `y-or-n-p' adds `(y or n) ' to it.\n\
2785 No confirmation of the answer is requested; a single character is enough.\n\
2786 Also accepts Space to mean yes, or Delete to mean no. \(Actually, it uses\n\
2787 the bindings in `query-replace-map'; see the documentation of that variable\n\
2788 for more information. In this case, the useful bindings are `act', `skip',\n\
2789 `recenter', and `quit'.\)\n\
2791 Under a windowing system a dialog box will be used if `last-nonmenu-event'\n\
2792 is nil and `use-dialog-box' is non-nil.")
2796 register Lisp_Object obj
, key
, def
, map
;
2797 register int answer
;
2798 Lisp_Object xprompt
;
2799 Lisp_Object args
[2];
2800 struct gcpro gcpro1
, gcpro2
;
2801 int count
= specpdl_ptr
- specpdl
;
2803 specbind (Qcursor_in_echo_area
, Qt
);
2805 map
= Fsymbol_value (intern ("query-replace-map"));
2807 CHECK_STRING (prompt
, 0);
2809 GCPRO2 (prompt
, xprompt
);
2811 #ifdef HAVE_X_WINDOWS
2812 if (display_busy_cursor_p
)
2813 cancel_busy_cursor ();
2820 if ((NILP (last_nonmenu_event
) || CONSP (last_nonmenu_event
))
2824 Lisp_Object pane
, menu
;
2825 redisplay_preserve_echo_area ();
2826 pane
= Fcons (Fcons (build_string ("Yes"), Qt
),
2827 Fcons (Fcons (build_string ("No"), Qnil
),
2829 menu
= Fcons (prompt
, pane
);
2830 obj
= Fx_popup_dialog (Qt
, menu
);
2831 answer
= !NILP (obj
);
2834 #endif /* HAVE_MENUS */
2835 cursor_in_echo_area
= 1;
2836 choose_minibuf_frame ();
2837 message_with_string ("%s(y or n) ", xprompt
, 0);
2839 if (minibuffer_auto_raise
)
2841 Lisp_Object mini_frame
;
2843 mini_frame
= WINDOW_FRAME (XWINDOW (minibuf_window
));
2845 Fraise_frame (mini_frame
);
2848 obj
= read_filtered_event (1, 0, 0, 0);
2849 cursor_in_echo_area
= 0;
2850 /* If we need to quit, quit with cursor_in_echo_area = 0. */
2853 key
= Fmake_vector (make_number (1), obj
);
2854 def
= Flookup_key (map
, key
, Qt
);
2856 if (EQ (def
, intern ("skip")))
2861 else if (EQ (def
, intern ("act")))
2866 else if (EQ (def
, intern ("recenter")))
2872 else if (EQ (def
, intern ("quit")))
2874 /* We want to exit this command for exit-prefix,
2875 and this is the only way to do it. */
2876 else if (EQ (def
, intern ("exit-prefix")))
2881 /* If we don't clear this, then the next call to read_char will
2882 return quit_char again, and we'll enter an infinite loop. */
2887 if (EQ (xprompt
, prompt
))
2889 args
[0] = build_string ("Please answer y or n. ");
2891 xprompt
= Fconcat (2, args
);
2896 if (! noninteractive
)
2898 cursor_in_echo_area
= -1;
2899 message_with_string (answer
? "%s(y or n) y" : "%s(y or n) n",
2903 unbind_to (count
, Qnil
);
2904 return answer
? Qt
: Qnil
;
2907 /* This is how C code calls `yes-or-no-p' and allows the user
2910 Anything that calls this function must protect from GC! */
2913 do_yes_or_no_p (prompt
)
2916 return call1 (intern ("yes-or-no-p"), prompt
);
2919 /* Anything that calls this function must protect from GC! */
2921 DEFUN ("yes-or-no-p", Fyes_or_no_p
, Syes_or_no_p
, 1, 1, 0,
2922 "Ask user a yes-or-no question. Return t if answer is yes.\n\
2923 Takes one argument, which is the string to display to ask the question.\n\
2924 It should end in a space; `yes-or-no-p' adds `(yes or no) ' to it.\n\
2925 The user must confirm the answer with RET,\n\
2926 and can edit it until it has been confirmed.\n\
2928 Under a windowing system a dialog box will be used if `last-nonmenu-event'\n\
2929 is nil, and `use-dialog-box' is non-nil.")
2933 register Lisp_Object ans
;
2934 Lisp_Object args
[2];
2935 struct gcpro gcpro1
;
2937 CHECK_STRING (prompt
, 0);
2940 if ((NILP (last_nonmenu_event
) || CONSP (last_nonmenu_event
))
2944 Lisp_Object pane
, menu
, obj
;
2945 redisplay_preserve_echo_area ();
2946 pane
= Fcons (Fcons (build_string ("Yes"), Qt
),
2947 Fcons (Fcons (build_string ("No"), Qnil
),
2950 menu
= Fcons (prompt
, pane
);
2951 obj
= Fx_popup_dialog (Qt
, menu
);
2955 #endif /* HAVE_MENUS */
2958 args
[1] = build_string ("(yes or no) ");
2959 prompt
= Fconcat (2, args
);
2965 ans
= Fdowncase (Fread_from_minibuffer (prompt
, Qnil
, Qnil
, Qnil
,
2966 Qyes_or_no_p_history
, Qnil
,
2968 if (XSTRING (ans
)->size
== 3 && !strcmp (XSTRING (ans
)->data
, "yes"))
2973 if (XSTRING (ans
)->size
== 2 && !strcmp (XSTRING (ans
)->data
, "no"))
2981 message ("Please answer yes or no.");
2982 Fsleep_for (make_number (2), Qnil
);
2986 DEFUN ("load-average", Fload_average
, Sload_average
, 0, 1, 0,
2987 "Return list of 1 minute, 5 minute and 15 minute load averages.\n\
2988 Each of the three load averages is multiplied by 100,\n\
2989 then converted to integer.\n\
2990 When USE-FLOATS is non-nil, floats will be used instead of integers.\n\
2991 These floats are not multiplied by 100.\n\n\
2992 If the 5-minute or 15-minute load averages are not available, return a\n\
2993 shortened list, containing only those averages which are available.")
2995 Lisp_Object use_floats
;
2998 int loads
= getloadavg (load_ave
, 3);
2999 Lisp_Object ret
= Qnil
;
3002 error ("load-average not implemented for this operating system");
3006 Lisp_Object load
= (NILP (use_floats
) ?
3007 make_number ((int) (100.0 * load_ave
[loads
]))
3008 : make_float (load_ave
[loads
]));
3009 ret
= Fcons (load
, ret
);
3015 Lisp_Object Vfeatures
;
3017 DEFUN ("featurep", Ffeaturep
, Sfeaturep
, 1, 1, 0,
3018 "Returns t if FEATURE is present in this Emacs.\n\
3019 Use this to conditionalize execution of lisp code based on the presence or\n\
3020 absence of emacs or environment extensions.\n\
3021 Use `provide' to declare that a feature is available.\n\
3022 This function looks at the value of the variable `features'.")
3024 Lisp_Object feature
;
3026 register Lisp_Object tem
;
3027 CHECK_SYMBOL (feature
, 0);
3028 tem
= Fmemq (feature
, Vfeatures
);
3029 return (NILP (tem
)) ? Qnil
: Qt
;
3032 DEFUN ("provide", Fprovide
, Sprovide
, 1, 1, 0,
3033 "Announce that FEATURE is a feature of the current Emacs.")
3035 Lisp_Object feature
;
3037 register Lisp_Object tem
;
3038 CHECK_SYMBOL (feature
, 0);
3039 if (!NILP (Vautoload_queue
))
3040 Vautoload_queue
= Fcons (Fcons (Vfeatures
, Qnil
), Vautoload_queue
);
3041 tem
= Fmemq (feature
, Vfeatures
);
3043 Vfeatures
= Fcons (feature
, Vfeatures
);
3044 LOADHIST_ATTACH (Fcons (Qprovide
, feature
));
3048 DEFUN ("require", Frequire
, Srequire
, 1, 3, 0,
3049 "If feature FEATURE is not loaded, load it from FILENAME.\n\
3050 If FEATURE is not a member of the list `features', then the feature\n\
3051 is not loaded; so load the file FILENAME.\n\
3052 If FILENAME is omitted, the printname of FEATURE is used as the file name,\n\
3053 but in this case `load' insists on adding the suffix `.el' or `.elc'.\n\
3054 If the optional third argument NOERROR is non-nil,\n\
3055 then return nil if the file is not found.\n\
3056 Normally the return value is FEATURE.\n\
3057 This normal messages at start and end of loading FILENAME are suppressed.")
3058 (feature
, file_name
, noerror
)
3059 Lisp_Object feature
, file_name
, noerror
;
3061 register Lisp_Object tem
;
3062 CHECK_SYMBOL (feature
, 0);
3063 tem
= Fmemq (feature
, Vfeatures
);
3065 LOADHIST_ATTACH (Fcons (Qrequire
, feature
));
3069 int count
= specpdl_ptr
- specpdl
;
3071 /* Value saved here is to be restored into Vautoload_queue */
3072 record_unwind_protect (un_autoload
, Vautoload_queue
);
3073 Vautoload_queue
= Qt
;
3075 tem
= Fload (NILP (file_name
) ? Fsymbol_name (feature
) : file_name
,
3076 noerror
, Qt
, Qnil
, (NILP (file_name
) ? Qt
: Qnil
));
3077 /* If load failed entirely, return nil. */
3079 return unbind_to (count
, Qnil
);
3081 tem
= Fmemq (feature
, Vfeatures
);
3083 error ("Required feature %s was not provided",
3084 XSYMBOL (feature
)->name
->data
);
3086 /* Once loading finishes, don't undo it. */
3087 Vautoload_queue
= Qt
;
3088 feature
= unbind_to (count
, feature
);
3093 /* Primitives for work of the "widget" library.
3094 In an ideal world, this section would not have been necessary.
3095 However, lisp function calls being as slow as they are, it turns
3096 out that some functions in the widget library (wid-edit.el) are the
3097 bottleneck of Widget operation. Here is their translation to C,
3098 for the sole reason of efficiency. */
3100 DEFUN ("plist-member", Fplist_member
, Splist_member
, 2, 2, 0,
3101 "Return non-nil if PLIST has the property PROP.\n\
3102 PLIST is a property list, which is a list of the form\n\
3103 \(PROP1 VALUE1 PROP2 VALUE2 ...\). PROP is a symbol.\n\
3104 Unlike `plist-get', this allows you to distinguish between a missing\n\
3105 property and a property with the value nil.\n\
3106 The value is actually the tail of PLIST whose car is PROP.")
3108 Lisp_Object plist
, prop
;
3110 while (CONSP (plist
) && !EQ (XCAR (plist
), prop
))
3113 plist
= XCDR (plist
);
3114 plist
= CDR (plist
);
3119 DEFUN ("widget-put", Fwidget_put
, Swidget_put
, 3, 3, 0,
3120 "In WIDGET, set PROPERTY to VALUE.\n\
3121 The value can later be retrieved with `widget-get'.")
3122 (widget
, property
, value
)
3123 Lisp_Object widget
, property
, value
;
3125 CHECK_CONS (widget
, 1);
3126 XCDR (widget
) = Fplist_put (XCDR (widget
), property
, value
);
3130 DEFUN ("widget-get", Fwidget_get
, Swidget_get
, 2, 2, 0,
3131 "In WIDGET, get the value of PROPERTY.\n\
3132 The value could either be specified when the widget was created, or\n\
3133 later with `widget-put'.")
3135 Lisp_Object widget
, property
;
3143 CHECK_CONS (widget
, 1);
3144 tmp
= Fplist_member (XCDR (widget
), property
);
3150 tmp
= XCAR (widget
);
3153 widget
= Fget (tmp
, Qwidget_type
);
3157 DEFUN ("widget-apply", Fwidget_apply
, Swidget_apply
, 2, MANY
, 0,
3158 "Apply the value of WIDGET's PROPERTY to the widget itself.\n\
3159 ARGS are passed as extra arguments to the function.")
3164 /* This function can GC. */
3165 Lisp_Object newargs
[3];
3166 struct gcpro gcpro1
, gcpro2
;
3169 newargs
[0] = Fwidget_get (args
[0], args
[1]);
3170 newargs
[1] = args
[0];
3171 newargs
[2] = Flist (nargs
- 2, args
+ 2);
3172 GCPRO2 (newargs
[0], newargs
[2]);
3173 result
= Fapply (3, newargs
);
3178 /* base64 encode/decode functions (RFC 2045).
3179 Based on code from GNU recode. */
3181 #define MIME_LINE_LENGTH 76
3183 #define IS_ASCII(Character) \
3185 #define IS_BASE64(Character) \
3186 (IS_ASCII (Character) && base64_char_to_value[Character] >= 0)
3187 #define IS_BASE64_IGNORABLE(Character) \
3188 ((Character) == ' ' || (Character) == '\t' || (Character) == '\n' \
3189 || (Character) == '\f' || (Character) == '\r')
3191 /* Used by base64_decode_1 to retrieve a non-base64-ignorable
3192 character or return retval if there are no characters left to
3194 #define READ_QUADRUPLET_BYTE(retval) \
3199 if (nchars_return) \
3200 *nchars_return = nchars; \
3205 while (IS_BASE64_IGNORABLE (c))
3207 /* Don't use alloca for regions larger than this, lest we overflow
3209 #define MAX_ALLOCA 16*1024
3211 /* Table of characters coding the 64 values. */
3212 static char base64_value_to_char
[64] =
3214 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', /* 0- 9 */
3215 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', /* 10-19 */
3216 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', /* 20-29 */
3217 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', /* 30-39 */
3218 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', /* 40-49 */
3219 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', /* 50-59 */
3220 '8', '9', '+', '/' /* 60-63 */
3223 /* Table of base64 values for first 128 characters. */
3224 static short base64_char_to_value
[128] =
3226 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 0- 9 */
3227 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 10- 19 */
3228 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 20- 29 */
3229 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 30- 39 */
3230 -1, -1, -1, 62, -1, -1, -1, 63, 52, 53, /* 40- 49 */
3231 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, /* 50- 59 */
3232 -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, /* 60- 69 */
3233 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, /* 70- 79 */
3234 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, /* 80- 89 */
3235 25, -1, -1, -1, -1, -1, -1, 26, 27, 28, /* 90- 99 */
3236 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, /* 100-109 */
3237 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, /* 110-119 */
3238 49, 50, 51, -1, -1, -1, -1, -1 /* 120-127 */
3241 /* The following diagram shows the logical steps by which three octets
3242 get transformed into four base64 characters.
3244 .--------. .--------. .--------.
3245 |aaaaaabb| |bbbbcccc| |ccdddddd|
3246 `--------' `--------' `--------'
3248 .--------+--------+--------+--------.
3249 |00aaaaaa|00bbbbbb|00cccccc|00dddddd|
3250 `--------+--------+--------+--------'
3252 .--------+--------+--------+--------.
3253 |AAAAAAAA|BBBBBBBB|CCCCCCCC|DDDDDDDD|
3254 `--------+--------+--------+--------'
3256 The octets are divided into 6 bit chunks, which are then encoded into
3257 base64 characters. */
3260 static int base64_encode_1
P_ ((const char *, char *, int, int, int));
3261 static int base64_decode_1
P_ ((const char *, char *, int, int, int *));
3263 DEFUN ("base64-encode-region", Fbase64_encode_region
, Sbase64_encode_region
,
3265 "Base64-encode the region between BEG and END.\n\
3266 Return the length of the encoded text.\n\
3267 Optional third argument NO-LINE-BREAK means do not break long lines\n\
3268 into shorter lines.")
3269 (beg
, end
, no_line_break
)
3270 Lisp_Object beg
, end
, no_line_break
;
3273 int allength
, length
;
3274 int ibeg
, iend
, encoded_length
;
3277 validate_region (&beg
, &end
);
3279 ibeg
= CHAR_TO_BYTE (XFASTINT (beg
));
3280 iend
= CHAR_TO_BYTE (XFASTINT (end
));
3281 move_gap_both (XFASTINT (beg
), ibeg
);
3283 /* We need to allocate enough room for encoding the text.
3284 We need 33 1/3% more space, plus a newline every 76
3285 characters, and then we round up. */
3286 length
= iend
- ibeg
;
3287 allength
= length
+ length
/3 + 1;
3288 allength
+= allength
/ MIME_LINE_LENGTH
+ 1 + 6;
3290 if (allength
<= MAX_ALLOCA
)
3291 encoded
= (char *) alloca (allength
);
3293 encoded
= (char *) xmalloc (allength
);
3294 encoded_length
= base64_encode_1 (BYTE_POS_ADDR (ibeg
), encoded
, length
,
3295 NILP (no_line_break
),
3296 !NILP (current_buffer
->enable_multibyte_characters
));
3297 if (encoded_length
> allength
)
3300 if (encoded_length
< 0)
3302 /* The encoding wasn't possible. */
3303 if (length
> MAX_ALLOCA
)
3305 error ("Multibyte character in data for base64 encoding");
3308 /* Now we have encoded the region, so we insert the new contents
3309 and delete the old. (Insert first in order to preserve markers.) */
3310 SET_PT_BOTH (XFASTINT (beg
), ibeg
);
3311 insert (encoded
, encoded_length
);
3312 if (allength
> MAX_ALLOCA
)
3314 del_range_byte (ibeg
+ encoded_length
, iend
+ encoded_length
, 1);
3316 /* If point was outside of the region, restore it exactly; else just
3317 move to the beginning of the region. */
3318 if (old_pos
>= XFASTINT (end
))
3319 old_pos
+= encoded_length
- (XFASTINT (end
) - XFASTINT (beg
));
3320 else if (old_pos
> XFASTINT (beg
))
3321 old_pos
= XFASTINT (beg
);
3324 /* We return the length of the encoded text. */
3325 return make_number (encoded_length
);
3328 DEFUN ("base64-encode-string", Fbase64_encode_string
, Sbase64_encode_string
,
3330 "Base64-encode STRING and return the result.\n\
3331 Optional second argument NO-LINE-BREAK means do not break long lines\n\
3332 into shorter lines.")
3333 (string
, no_line_break
)
3334 Lisp_Object string
, no_line_break
;
3336 int allength
, length
, encoded_length
;
3338 Lisp_Object encoded_string
;
3340 CHECK_STRING (string
, 1);
3342 /* We need to allocate enough room for encoding the text.
3343 We need 33 1/3% more space, plus a newline every 76
3344 characters, and then we round up. */
3345 length
= STRING_BYTES (XSTRING (string
));
3346 allength
= length
+ length
/3 + 1;
3347 allength
+= allength
/ MIME_LINE_LENGTH
+ 1 + 6;
3349 /* We need to allocate enough room for decoding the text. */
3350 if (allength
<= MAX_ALLOCA
)
3351 encoded
= (char *) alloca (allength
);
3353 encoded
= (char *) xmalloc (allength
);
3355 encoded_length
= base64_encode_1 (XSTRING (string
)->data
,
3356 encoded
, length
, NILP (no_line_break
),
3357 STRING_MULTIBYTE (string
));
3358 if (encoded_length
> allength
)
3361 if (encoded_length
< 0)
3363 /* The encoding wasn't possible. */
3364 if (length
> MAX_ALLOCA
)
3366 error ("Multibyte character in data for base64 encoding");
3369 encoded_string
= make_unibyte_string (encoded
, encoded_length
);
3370 if (allength
> MAX_ALLOCA
)
3373 return encoded_string
;
3377 base64_encode_1 (from
, to
, length
, line_break
, multibyte
)
3384 int counter
= 0, i
= 0;
3394 c
= STRING_CHAR_AND_LENGTH (from
+ i
, length
- i
, bytes
);
3402 /* Wrap line every 76 characters. */
3406 if (counter
< MIME_LINE_LENGTH
/ 4)
3415 /* Process first byte of a triplet. */
3417 *e
++ = base64_value_to_char
[0x3f & c
>> 2];
3418 value
= (0x03 & c
) << 4;
3420 /* Process second byte of a triplet. */
3424 *e
++ = base64_value_to_char
[value
];
3432 c
= STRING_CHAR_AND_LENGTH (from
+ i
, length
- i
, bytes
);
3440 *e
++ = base64_value_to_char
[value
| (0x0f & c
>> 4)];
3441 value
= (0x0f & c
) << 2;
3443 /* Process third byte of a triplet. */
3447 *e
++ = base64_value_to_char
[value
];
3454 c
= STRING_CHAR_AND_LENGTH (from
+ i
, length
- i
, bytes
);
3462 *e
++ = base64_value_to_char
[value
| (0x03 & c
>> 6)];
3463 *e
++ = base64_value_to_char
[0x3f & c
];
3470 DEFUN ("base64-decode-region", Fbase64_decode_region
, Sbase64_decode_region
,
3472 "Base64-decode the region between BEG and END.\n\
3473 Return the length of the decoded text.\n\
3474 If the region can't be decoded, signal an error and don't modify the buffer.")
3476 Lisp_Object beg
, end
;
3478 int ibeg
, iend
, length
, allength
;
3483 int multibyte
= !NILP (current_buffer
->enable_multibyte_characters
);
3485 validate_region (&beg
, &end
);
3487 ibeg
= CHAR_TO_BYTE (XFASTINT (beg
));
3488 iend
= CHAR_TO_BYTE (XFASTINT (end
));
3490 length
= iend
- ibeg
;
3492 /* We need to allocate enough room for decoding the text. If we are
3493 working on a multibyte buffer, each decoded code may occupy at
3495 allength
= multibyte
? length
* 2 : length
;
3496 if (allength
<= MAX_ALLOCA
)
3497 decoded
= (char *) alloca (allength
);
3499 decoded
= (char *) xmalloc (allength
);
3501 move_gap_both (XFASTINT (beg
), ibeg
);
3502 decoded_length
= base64_decode_1 (BYTE_POS_ADDR (ibeg
), decoded
, length
,
3503 multibyte
, &inserted_chars
);
3504 if (decoded_length
> allength
)
3507 if (decoded_length
< 0)
3509 /* The decoding wasn't possible. */
3510 if (allength
> MAX_ALLOCA
)
3512 error ("Invalid base64 data");
3515 /* Now we have decoded the region, so we insert the new contents
3516 and delete the old. (Insert first in order to preserve markers.) */
3517 TEMP_SET_PT_BOTH (XFASTINT (beg
), ibeg
);
3518 insert_1_both (decoded
, inserted_chars
, decoded_length
, 0, 1, 0);
3519 if (allength
> MAX_ALLOCA
)
3521 /* Delete the original text. */
3522 del_range_both (PT
, PT_BYTE
, XFASTINT (end
) + inserted_chars
,
3523 iend
+ decoded_length
, 1);
3525 /* If point was outside of the region, restore it exactly; else just
3526 move to the beginning of the region. */
3527 if (old_pos
>= XFASTINT (end
))
3528 old_pos
+= inserted_chars
- (XFASTINT (end
) - XFASTINT (beg
));
3529 else if (old_pos
> XFASTINT (beg
))
3530 old_pos
= XFASTINT (beg
);
3531 SET_PT (old_pos
> ZV
? ZV
: old_pos
);
3533 return make_number (inserted_chars
);
3536 DEFUN ("base64-decode-string", Fbase64_decode_string
, Sbase64_decode_string
,
3538 "Base64-decode STRING and return the result.")
3543 int length
, decoded_length
;
3544 Lisp_Object decoded_string
;
3546 CHECK_STRING (string
, 1);
3548 length
= STRING_BYTES (XSTRING (string
));
3549 /* We need to allocate enough room for decoding the text. */
3550 if (length
<= MAX_ALLOCA
)
3551 decoded
= (char *) alloca (length
);
3553 decoded
= (char *) xmalloc (length
);
3555 /* The decoded result should be unibyte. */
3556 decoded_length
= base64_decode_1 (XSTRING (string
)->data
, decoded
, length
,
3558 if (decoded_length
> length
)
3560 else if (decoded_length
>= 0)
3561 decoded_string
= make_unibyte_string (decoded
, decoded_length
);
3563 decoded_string
= Qnil
;
3565 if (length
> MAX_ALLOCA
)
3567 if (!STRINGP (decoded_string
))
3568 error ("Invalid base64 data");
3570 return decoded_string
;
3573 /* Base64-decode the data at FROM of LENGHT bytes into TO. If
3574 MULTIBYTE is nonzero, the decoded result should be in multibyte
3575 form. If NCHARS_RETRUN is not NULL, store the number of produced
3576 characters in *NCHARS_RETURN. */
3579 base64_decode_1 (from
, to
, length
, multibyte
, nchars_return
)
3589 unsigned long value
;
3594 /* Process first byte of a quadruplet. */
3596 READ_QUADRUPLET_BYTE (e
-to
);
3600 value
= base64_char_to_value
[c
] << 18;
3602 /* Process second byte of a quadruplet. */
3604 READ_QUADRUPLET_BYTE (-1);
3608 value
|= base64_char_to_value
[c
] << 12;
3610 c
= (unsigned char) (value
>> 16);
3612 e
+= CHAR_STRING (c
, e
);
3617 /* Process third byte of a quadruplet. */
3619 READ_QUADRUPLET_BYTE (-1);
3623 READ_QUADRUPLET_BYTE (-1);
3632 value
|= base64_char_to_value
[c
] << 6;
3634 c
= (unsigned char) (0xff & value
>> 8);
3636 e
+= CHAR_STRING (c
, e
);
3641 /* Process fourth byte of a quadruplet. */
3643 READ_QUADRUPLET_BYTE (-1);
3650 value
|= base64_char_to_value
[c
];
3652 c
= (unsigned char) (0xff & value
);
3654 e
+= CHAR_STRING (c
, e
);
3663 /***********************************************************************
3665 ***** Hash Tables *****
3667 ***********************************************************************/
3669 /* Implemented by gerd@gnu.org. This hash table implementation was
3670 inspired by CMUCL hash tables. */
3674 1. For small tables, association lists are probably faster than
3675 hash tables because they have lower overhead.
3677 For uses of hash tables where the O(1) behavior of table
3678 operations is not a requirement, it might therefore be a good idea
3679 not to hash. Instead, we could just do a linear search in the
3680 key_and_value vector of the hash table. This could be done
3681 if a `:linear-search t' argument is given to make-hash-table. */
3684 /* Value is the key part of entry IDX in hash table H. */
3686 #define HASH_KEY(H, IDX) AREF ((H)->key_and_value, 2 * (IDX))
3688 /* Value is the value part of entry IDX in hash table H. */
3690 #define HASH_VALUE(H, IDX) AREF ((H)->key_and_value, 2 * (IDX) + 1)
3692 /* Value is the index of the next entry following the one at IDX
3695 #define HASH_NEXT(H, IDX) AREF ((H)->next, (IDX))
3697 /* Value is the hash code computed for entry IDX in hash table H. */
3699 #define HASH_HASH(H, IDX) AREF ((H)->hash, (IDX))
3701 /* Value is the index of the element in hash table H that is the
3702 start of the collision list at index IDX in the index vector of H. */
3704 #define HASH_INDEX(H, IDX) AREF ((H)->index, (IDX))
3706 /* Value is the size of hash table H. */
3708 #define HASH_TABLE_SIZE(H) XVECTOR ((H)->next)->size
3710 /* The list of all weak hash tables. Don't staticpro this one. */
3712 Lisp_Object Vweak_hash_tables
;
3714 /* Various symbols. */
3716 Lisp_Object Qhash_table_p
, Qeq
, Qeql
, Qequal
, Qkey
, Qvalue
;
3717 Lisp_Object QCtest
, QCsize
, QCrehash_size
, QCrehash_threshold
, QCweakness
;
3718 Lisp_Object Qhash_table_test
, Qkey_or_value
, Qkey_and_value
;
3720 /* Function prototypes. */
3722 static struct Lisp_Hash_Table
*check_hash_table
P_ ((Lisp_Object
));
3723 static int get_key_arg
P_ ((Lisp_Object
, int, Lisp_Object
*, char *));
3724 static void maybe_resize_hash_table
P_ ((struct Lisp_Hash_Table
*));
3725 static int cmpfn_eql
P_ ((struct Lisp_Hash_Table
*, Lisp_Object
, unsigned,
3726 Lisp_Object
, unsigned));
3727 static int cmpfn_equal
P_ ((struct Lisp_Hash_Table
*, Lisp_Object
, unsigned,
3728 Lisp_Object
, unsigned));
3729 static int cmpfn_user_defined
P_ ((struct Lisp_Hash_Table
*, Lisp_Object
,
3730 unsigned, Lisp_Object
, unsigned));
3731 static unsigned hashfn_eq
P_ ((struct Lisp_Hash_Table
*, Lisp_Object
));
3732 static unsigned hashfn_eql
P_ ((struct Lisp_Hash_Table
*, Lisp_Object
));
3733 static unsigned hashfn_equal
P_ ((struct Lisp_Hash_Table
*, Lisp_Object
));
3734 static unsigned hashfn_user_defined
P_ ((struct Lisp_Hash_Table
*,
3736 static unsigned sxhash_string
P_ ((unsigned char *, int));
3737 static unsigned sxhash_list
P_ ((Lisp_Object
, int));
3738 static unsigned sxhash_vector
P_ ((Lisp_Object
, int));
3739 static unsigned sxhash_bool_vector
P_ ((Lisp_Object
));
3740 static int sweep_weak_table
P_ ((struct Lisp_Hash_Table
*, int));
3744 /***********************************************************************
3746 ***********************************************************************/
3748 /* If OBJ is a Lisp hash table, return a pointer to its struct
3749 Lisp_Hash_Table. Otherwise, signal an error. */
3751 static struct Lisp_Hash_Table
*
3752 check_hash_table (obj
)
3755 CHECK_HASH_TABLE (obj
, 0);
3756 return XHASH_TABLE (obj
);
3760 /* Value is the next integer I >= N, N >= 0 which is "almost" a prime
3764 next_almost_prime (n
)
3777 /* Find KEY in ARGS which has size NARGS. Don't consider indices for
3778 which USED[I] is non-zero. If found at index I in ARGS, set
3779 USED[I] and USED[I + 1] to 1, and return I + 1. Otherwise return
3780 -1. This function is used to extract a keyword/argument pair from
3781 a DEFUN parameter list. */
3784 get_key_arg (key
, nargs
, args
, used
)
3792 for (i
= 0; i
< nargs
- 1; ++i
)
3793 if (!used
[i
] && EQ (args
[i
], key
))
3808 /* Return a Lisp vector which has the same contents as VEC but has
3809 size NEW_SIZE, NEW_SIZE >= VEC->size. Entries in the resulting
3810 vector that are not copied from VEC are set to INIT. */
3813 larger_vector (vec
, new_size
, init
)
3818 struct Lisp_Vector
*v
;
3821 xassert (VECTORP (vec
));
3822 old_size
= XVECTOR (vec
)->size
;
3823 xassert (new_size
>= old_size
);
3825 v
= allocate_vectorlike (new_size
);
3827 bcopy (XVECTOR (vec
)->contents
, v
->contents
,
3828 old_size
* sizeof *v
->contents
);
3829 for (i
= old_size
; i
< new_size
; ++i
)
3830 v
->contents
[i
] = init
;
3831 XSETVECTOR (vec
, v
);
3836 /***********************************************************************
3838 ***********************************************************************/
3840 /* Compare KEY1 which has hash code HASH1 and KEY2 with hash code
3841 HASH2 in hash table H using `eql'. Value is non-zero if KEY1 and
3842 KEY2 are the same. */
3845 cmpfn_eql (h
, key1
, hash1
, key2
, hash2
)
3846 struct Lisp_Hash_Table
*h
;
3847 Lisp_Object key1
, key2
;
3848 unsigned hash1
, hash2
;
3850 return (FLOATP (key1
)
3852 && XFLOAT_DATA (key1
) == XFLOAT_DATA (key2
));
3856 /* Compare KEY1 which has hash code HASH1 and KEY2 with hash code
3857 HASH2 in hash table H using `equal'. Value is non-zero if KEY1 and
3858 KEY2 are the same. */
3861 cmpfn_equal (h
, key1
, hash1
, key2
, hash2
)
3862 struct Lisp_Hash_Table
*h
;
3863 Lisp_Object key1
, key2
;
3864 unsigned hash1
, hash2
;
3866 return hash1
== hash2
&& !NILP (Fequal (key1
, key2
));
3870 /* Compare KEY1 which has hash code HASH1, and KEY2 with hash code
3871 HASH2 in hash table H using H->user_cmp_function. Value is non-zero
3872 if KEY1 and KEY2 are the same. */
3875 cmpfn_user_defined (h
, key1
, hash1
, key2
, hash2
)
3876 struct Lisp_Hash_Table
*h
;
3877 Lisp_Object key1
, key2
;
3878 unsigned hash1
, hash2
;
3882 Lisp_Object args
[3];
3884 args
[0] = h
->user_cmp_function
;
3887 return !NILP (Ffuncall (3, args
));
3894 /* Value is a hash code for KEY for use in hash table H which uses
3895 `eq' to compare keys. The hash code returned is guaranteed to fit
3896 in a Lisp integer. */
3900 struct Lisp_Hash_Table
*h
;
3903 unsigned hash
= XUINT (key
) ^ XGCTYPE (key
);
3904 xassert ((hash
& ~VALMASK
) == 0);
3909 /* Value is a hash code for KEY for use in hash table H which uses
3910 `eql' to compare keys. The hash code returned is guaranteed to fit
3911 in a Lisp integer. */
3915 struct Lisp_Hash_Table
*h
;
3920 hash
= sxhash (key
, 0);
3922 hash
= XUINT (key
) ^ XGCTYPE (key
);
3923 xassert ((hash
& ~VALMASK
) == 0);
3928 /* Value is a hash code for KEY for use in hash table H which uses
3929 `equal' to compare keys. The hash code returned is guaranteed to fit
3930 in a Lisp integer. */
3933 hashfn_equal (h
, key
)
3934 struct Lisp_Hash_Table
*h
;
3937 unsigned hash
= sxhash (key
, 0);
3938 xassert ((hash
& ~VALMASK
) == 0);
3943 /* Value is a hash code for KEY for use in hash table H which uses as
3944 user-defined function to compare keys. The hash code returned is
3945 guaranteed to fit in a Lisp integer. */
3948 hashfn_user_defined (h
, key
)
3949 struct Lisp_Hash_Table
*h
;
3952 Lisp_Object args
[2], hash
;
3954 args
[0] = h
->user_hash_function
;
3956 hash
= Ffuncall (2, args
);
3957 if (!INTEGERP (hash
))
3959 list2 (build_string ("Invalid hash code returned from \
3960 user-supplied hash function"),
3962 return XUINT (hash
);
3966 /* Create and initialize a new hash table.
3968 TEST specifies the test the hash table will use to compare keys.
3969 It must be either one of the predefined tests `eq', `eql' or
3970 `equal' or a symbol denoting a user-defined test named TEST with
3971 test and hash functions USER_TEST and USER_HASH.
3973 Give the table initial capacity SIZE, SIZE >= 0, an integer.
3975 If REHASH_SIZE is an integer, it must be > 0, and this hash table's
3976 new size when it becomes full is computed by adding REHASH_SIZE to
3977 its old size. If REHASH_SIZE is a float, it must be > 1.0, and the
3978 table's new size is computed by multiplying its old size with
3981 REHASH_THRESHOLD must be a float <= 1.0, and > 0. The table will
3982 be resized when the ratio of (number of entries in the table) /
3983 (table size) is >= REHASH_THRESHOLD.
3985 WEAK specifies the weakness of the table. If non-nil, it must be
3986 one of the symbols `key', `value', `key-or-value', or `key-and-value'. */
3989 make_hash_table (test
, size
, rehash_size
, rehash_threshold
, weak
,
3990 user_test
, user_hash
)
3991 Lisp_Object test
, size
, rehash_size
, rehash_threshold
, weak
;
3992 Lisp_Object user_test
, user_hash
;
3994 struct Lisp_Hash_Table
*h
;
3995 struct Lisp_Vector
*v
;
3997 int index_size
, i
, len
, sz
;
3999 /* Preconditions. */
4000 xassert (SYMBOLP (test
));
4001 xassert (INTEGERP (size
) && XINT (size
) >= 0);
4002 xassert ((INTEGERP (rehash_size
) && XINT (rehash_size
) > 0)
4003 || (FLOATP (rehash_size
) && XFLOATINT (rehash_size
) > 1.0));
4004 xassert (FLOATP (rehash_threshold
)
4005 && XFLOATINT (rehash_threshold
) > 0
4006 && XFLOATINT (rehash_threshold
) <= 1.0);
4008 if (XFASTINT (size
) == 0)
4009 size
= make_number (1);
4011 /* Allocate a vector, and initialize it. */
4012 len
= VECSIZE (struct Lisp_Hash_Table
);
4013 v
= allocate_vectorlike (len
);
4015 for (i
= 0; i
< len
; ++i
)
4016 v
->contents
[i
] = Qnil
;
4018 /* Initialize hash table slots. */
4019 sz
= XFASTINT (size
);
4020 h
= (struct Lisp_Hash_Table
*) v
;
4023 if (EQ (test
, Qeql
))
4025 h
->cmpfn
= cmpfn_eql
;
4026 h
->hashfn
= hashfn_eql
;
4028 else if (EQ (test
, Qeq
))
4031 h
->hashfn
= hashfn_eq
;
4033 else if (EQ (test
, Qequal
))
4035 h
->cmpfn
= cmpfn_equal
;
4036 h
->hashfn
= hashfn_equal
;
4040 h
->user_cmp_function
= user_test
;
4041 h
->user_hash_function
= user_hash
;
4042 h
->cmpfn
= cmpfn_user_defined
;
4043 h
->hashfn
= hashfn_user_defined
;
4047 h
->rehash_threshold
= rehash_threshold
;
4048 h
->rehash_size
= rehash_size
;
4049 h
->count
= make_number (0);
4050 h
->key_and_value
= Fmake_vector (make_number (2 * sz
), Qnil
);
4051 h
->hash
= Fmake_vector (size
, Qnil
);
4052 h
->next
= Fmake_vector (size
, Qnil
);
4053 /* Cast to int here avoids losing with gcc 2.95 on Tru64/Alpha... */
4054 index_size
= next_almost_prime ((int) (sz
/ XFLOATINT (rehash_threshold
)));
4055 h
->index
= Fmake_vector (make_number (index_size
), Qnil
);
4057 /* Set up the free list. */
4058 for (i
= 0; i
< sz
- 1; ++i
)
4059 HASH_NEXT (h
, i
) = make_number (i
+ 1);
4060 h
->next_free
= make_number (0);
4062 XSET_HASH_TABLE (table
, h
);
4063 xassert (HASH_TABLE_P (table
));
4064 xassert (XHASH_TABLE (table
) == h
);
4066 /* Maybe add this hash table to the list of all weak hash tables. */
4068 h
->next_weak
= Qnil
;
4071 h
->next_weak
= Vweak_hash_tables
;
4072 Vweak_hash_tables
= table
;
4079 /* Return a copy of hash table H1. Keys and values are not copied,
4080 only the table itself is. */
4083 copy_hash_table (h1
)
4084 struct Lisp_Hash_Table
*h1
;
4087 struct Lisp_Hash_Table
*h2
;
4088 struct Lisp_Vector
*v
, *next
;
4091 len
= VECSIZE (struct Lisp_Hash_Table
);
4092 v
= allocate_vectorlike (len
);
4093 h2
= (struct Lisp_Hash_Table
*) v
;
4094 next
= h2
->vec_next
;
4095 bcopy (h1
, h2
, sizeof *h2
);
4096 h2
->vec_next
= next
;
4097 h2
->key_and_value
= Fcopy_sequence (h1
->key_and_value
);
4098 h2
->hash
= Fcopy_sequence (h1
->hash
);
4099 h2
->next
= Fcopy_sequence (h1
->next
);
4100 h2
->index
= Fcopy_sequence (h1
->index
);
4101 XSET_HASH_TABLE (table
, h2
);
4103 /* Maybe add this hash table to the list of all weak hash tables. */
4104 if (!NILP (h2
->weak
))
4106 h2
->next_weak
= Vweak_hash_tables
;
4107 Vweak_hash_tables
= table
;
4114 /* Resize hash table H if it's too full. If H cannot be resized
4115 because it's already too large, throw an error. */
4118 maybe_resize_hash_table (h
)
4119 struct Lisp_Hash_Table
*h
;
4121 if (NILP (h
->next_free
))
4123 int old_size
= HASH_TABLE_SIZE (h
);
4124 int i
, new_size
, index_size
;
4126 if (INTEGERP (h
->rehash_size
))
4127 new_size
= old_size
+ XFASTINT (h
->rehash_size
);
4129 new_size
= old_size
* XFLOATINT (h
->rehash_size
);
4130 new_size
= max (old_size
+ 1, new_size
);
4131 index_size
= next_almost_prime ((int)
4133 / XFLOATINT (h
->rehash_threshold
)));
4134 if (max (index_size
, 2 * new_size
) & ~VALMASK
)
4135 error ("Hash table too large to resize");
4137 h
->key_and_value
= larger_vector (h
->key_and_value
, 2 * new_size
, Qnil
);
4138 h
->next
= larger_vector (h
->next
, new_size
, Qnil
);
4139 h
->hash
= larger_vector (h
->hash
, new_size
, Qnil
);
4140 h
->index
= Fmake_vector (make_number (index_size
), Qnil
);
4142 /* Update the free list. Do it so that new entries are added at
4143 the end of the free list. This makes some operations like
4145 for (i
= old_size
; i
< new_size
- 1; ++i
)
4146 HASH_NEXT (h
, i
) = make_number (i
+ 1);
4148 if (!NILP (h
->next_free
))
4150 Lisp_Object last
, next
;
4152 last
= h
->next_free
;
4153 while (next
= HASH_NEXT (h
, XFASTINT (last
)),
4157 HASH_NEXT (h
, XFASTINT (last
)) = make_number (old_size
);
4160 XSETFASTINT (h
->next_free
, old_size
);
4163 for (i
= 0; i
< old_size
; ++i
)
4164 if (!NILP (HASH_HASH (h
, i
)))
4166 unsigned hash_code
= XUINT (HASH_HASH (h
, i
));
4167 int start_of_bucket
= hash_code
% XVECTOR (h
->index
)->size
;
4168 HASH_NEXT (h
, i
) = HASH_INDEX (h
, start_of_bucket
);
4169 HASH_INDEX (h
, start_of_bucket
) = make_number (i
);
4175 /* Lookup KEY in hash table H. If HASH is non-null, return in *HASH
4176 the hash code of KEY. Value is the index of the entry in H
4177 matching KEY, or -1 if not found. */
4180 hash_lookup (h
, key
, hash
)
4181 struct Lisp_Hash_Table
*h
;
4186 int start_of_bucket
;
4189 hash_code
= h
->hashfn (h
, key
);
4193 start_of_bucket
= hash_code
% XVECTOR (h
->index
)->size
;
4194 idx
= HASH_INDEX (h
, start_of_bucket
);
4196 /* We need not gcpro idx since it's either an integer or nil. */
4199 int i
= XFASTINT (idx
);
4200 if (EQ (key
, HASH_KEY (h
, i
))
4202 && h
->cmpfn (h
, key
, hash_code
,
4203 HASH_KEY (h
, i
), XUINT (HASH_HASH (h
, i
)))))
4205 idx
= HASH_NEXT (h
, i
);
4208 return NILP (idx
) ? -1 : XFASTINT (idx
);
4212 /* Put an entry into hash table H that associates KEY with VALUE.
4213 HASH is a previously computed hash code of KEY.
4214 Value is the index of the entry in H matching KEY. */
4217 hash_put (h
, key
, value
, hash
)
4218 struct Lisp_Hash_Table
*h
;
4219 Lisp_Object key
, value
;
4222 int start_of_bucket
, i
;
4224 xassert ((hash
& ~VALMASK
) == 0);
4226 /* Increment count after resizing because resizing may fail. */
4227 maybe_resize_hash_table (h
);
4228 h
->count
= make_number (XFASTINT (h
->count
) + 1);
4230 /* Store key/value in the key_and_value vector. */
4231 i
= XFASTINT (h
->next_free
);
4232 h
->next_free
= HASH_NEXT (h
, i
);
4233 HASH_KEY (h
, i
) = key
;
4234 HASH_VALUE (h
, i
) = value
;
4236 /* Remember its hash code. */
4237 HASH_HASH (h
, i
) = make_number (hash
);
4239 /* Add new entry to its collision chain. */
4240 start_of_bucket
= hash
% XVECTOR (h
->index
)->size
;
4241 HASH_NEXT (h
, i
) = HASH_INDEX (h
, start_of_bucket
);
4242 HASH_INDEX (h
, start_of_bucket
) = make_number (i
);
4247 /* Remove the entry matching KEY from hash table H, if there is one. */
4250 hash_remove (h
, key
)
4251 struct Lisp_Hash_Table
*h
;
4255 int start_of_bucket
;
4256 Lisp_Object idx
, prev
;
4258 hash_code
= h
->hashfn (h
, key
);
4259 start_of_bucket
= hash_code
% XVECTOR (h
->index
)->size
;
4260 idx
= HASH_INDEX (h
, start_of_bucket
);
4263 /* We need not gcpro idx, prev since they're either integers or nil. */
4266 int i
= XFASTINT (idx
);
4268 if (EQ (key
, HASH_KEY (h
, i
))
4270 && h
->cmpfn (h
, key
, hash_code
,
4271 HASH_KEY (h
, i
), XUINT (HASH_HASH (h
, i
)))))
4273 /* Take entry out of collision chain. */
4275 HASH_INDEX (h
, start_of_bucket
) = HASH_NEXT (h
, i
);
4277 HASH_NEXT (h
, XFASTINT (prev
)) = HASH_NEXT (h
, i
);
4279 /* Clear slots in key_and_value and add the slots to
4281 HASH_KEY (h
, i
) = HASH_VALUE (h
, i
) = HASH_HASH (h
, i
) = Qnil
;
4282 HASH_NEXT (h
, i
) = h
->next_free
;
4283 h
->next_free
= make_number (i
);
4284 h
->count
= make_number (XFASTINT (h
->count
) - 1);
4285 xassert (XINT (h
->count
) >= 0);
4291 idx
= HASH_NEXT (h
, i
);
4297 /* Clear hash table H. */
4301 struct Lisp_Hash_Table
*h
;
4303 if (XFASTINT (h
->count
) > 0)
4305 int i
, size
= HASH_TABLE_SIZE (h
);
4307 for (i
= 0; i
< size
; ++i
)
4309 HASH_NEXT (h
, i
) = i
< size
- 1 ? make_number (i
+ 1) : Qnil
;
4310 HASH_KEY (h
, i
) = Qnil
;
4311 HASH_VALUE (h
, i
) = Qnil
;
4312 HASH_HASH (h
, i
) = Qnil
;
4315 for (i
= 0; i
< XVECTOR (h
->index
)->size
; ++i
)
4316 XVECTOR (h
->index
)->contents
[i
] = Qnil
;
4318 h
->next_free
= make_number (0);
4319 h
->count
= make_number (0);
4325 /************************************************************************
4327 ************************************************************************/
4329 /* Sweep weak hash table H. REMOVE_ENTRIES_P non-zero means remove
4330 entries from the table that don't survive the current GC.
4331 REMOVE_ENTRIES_P zero means mark entries that are in use. Value is
4332 non-zero if anything was marked. */
4335 sweep_weak_table (h
, remove_entries_p
)
4336 struct Lisp_Hash_Table
*h
;
4337 int remove_entries_p
;
4339 int bucket
, n
, marked
;
4341 n
= XVECTOR (h
->index
)->size
& ~ARRAY_MARK_FLAG
;
4344 for (bucket
= 0; bucket
< n
; ++bucket
)
4346 Lisp_Object idx
, prev
;
4348 /* Follow collision chain, removing entries that
4349 don't survive this garbage collection. */
4350 idx
= HASH_INDEX (h
, bucket
);
4352 while (!GC_NILP (idx
))
4355 int i
= XFASTINT (idx
);
4357 int key_known_to_survive_p
, value_known_to_survive_p
;
4359 key_known_to_survive_p
= survives_gc_p (HASH_KEY (h
, i
));
4360 value_known_to_survive_p
= survives_gc_p (HASH_VALUE (h
, i
));
4362 if (EQ (h
->weak
, Qkey
))
4363 remove_p
= !key_known_to_survive_p
;
4364 else if (EQ (h
->weak
, Qvalue
))
4365 remove_p
= !value_known_to_survive_p
;
4366 else if (EQ (h
->weak
, Qkey_or_value
))
4367 remove_p
= !(key_known_to_survive_p
|| value_known_to_survive_p
);
4368 else if (EQ (h
->weak
, Qkey_and_value
))
4369 remove_p
= !(key_known_to_survive_p
&& value_known_to_survive_p
);
4373 next
= HASH_NEXT (h
, i
);
4375 if (remove_entries_p
)
4379 /* Take out of collision chain. */
4381 HASH_INDEX (h
, i
) = next
;
4383 HASH_NEXT (h
, XFASTINT (prev
)) = next
;
4385 /* Add to free list. */
4386 HASH_NEXT (h
, i
) = h
->next_free
;
4389 /* Clear key, value, and hash. */
4390 HASH_KEY (h
, i
) = HASH_VALUE (h
, i
) = Qnil
;
4391 HASH_HASH (h
, i
) = Qnil
;
4393 h
->count
= make_number (XFASTINT (h
->count
) - 1);
4400 /* Make sure key and value survive. */
4401 if (!key_known_to_survive_p
)
4403 mark_object (&HASH_KEY (h
, i
));
4407 if (!value_known_to_survive_p
)
4409 mark_object (&HASH_VALUE (h
, i
));
4422 /* Remove elements from weak hash tables that don't survive the
4423 current garbage collection. Remove weak tables that don't survive
4424 from Vweak_hash_tables. Called from gc_sweep. */
4427 sweep_weak_hash_tables ()
4429 Lisp_Object table
, used
, next
;
4430 struct Lisp_Hash_Table
*h
;
4433 /* Mark all keys and values that are in use. Keep on marking until
4434 there is no more change. This is necessary for cases like
4435 value-weak table A containing an entry X -> Y, where Y is used in a
4436 key-weak table B, Z -> Y. If B comes after A in the list of weak
4437 tables, X -> Y might be removed from A, although when looking at B
4438 one finds that it shouldn't. */
4442 for (table
= Vweak_hash_tables
; !GC_NILP (table
); table
= h
->next_weak
)
4444 h
= XHASH_TABLE (table
);
4445 if (h
->size
& ARRAY_MARK_FLAG
)
4446 marked
|= sweep_weak_table (h
, 0);
4451 /* Remove tables and entries that aren't used. */
4452 for (table
= Vweak_hash_tables
, used
= Qnil
; !GC_NILP (table
); table
= next
)
4454 h
= XHASH_TABLE (table
);
4455 next
= h
->next_weak
;
4457 if (h
->size
& ARRAY_MARK_FLAG
)
4459 /* TABLE is marked as used. Sweep its contents. */
4460 if (XFASTINT (h
->count
) > 0)
4461 sweep_weak_table (h
, 1);
4463 /* Add table to the list of used weak hash tables. */
4464 h
->next_weak
= used
;
4469 Vweak_hash_tables
= used
;
4474 /***********************************************************************
4475 Hash Code Computation
4476 ***********************************************************************/
4478 /* Maximum depth up to which to dive into Lisp structures. */
4480 #define SXHASH_MAX_DEPTH 3
4482 /* Maximum length up to which to take list and vector elements into
4485 #define SXHASH_MAX_LEN 7
4487 /* Combine two integers X and Y for hashing. */
4489 #define SXHASH_COMBINE(X, Y) \
4490 ((((unsigned)(X) << 4) + (((unsigned)(X) >> 24) & 0x0fffffff)) \
4494 /* Return a hash for string PTR which has length LEN. The hash
4495 code returned is guaranteed to fit in a Lisp integer. */
4498 sxhash_string (ptr
, len
)
4502 unsigned char *p
= ptr
;
4503 unsigned char *end
= p
+ len
;
4512 hash
= ((hash
<< 3) + (hash
>> 28) + c
);
4515 return hash
& VALMASK
;
4519 /* Return a hash for list LIST. DEPTH is the current depth in the
4520 list. We don't recurse deeper than SXHASH_MAX_DEPTH in it. */
4523 sxhash_list (list
, depth
)
4530 if (depth
< SXHASH_MAX_DEPTH
)
4532 CONSP (list
) && i
< SXHASH_MAX_LEN
;
4533 list
= XCDR (list
), ++i
)
4535 unsigned hash2
= sxhash (XCAR (list
), depth
+ 1);
4536 hash
= SXHASH_COMBINE (hash
, hash2
);
4543 /* Return a hash for vector VECTOR. DEPTH is the current depth in
4544 the Lisp structure. */
4547 sxhash_vector (vec
, depth
)
4551 unsigned hash
= XVECTOR (vec
)->size
;
4554 n
= min (SXHASH_MAX_LEN
, XVECTOR (vec
)->size
);
4555 for (i
= 0; i
< n
; ++i
)
4557 unsigned hash2
= sxhash (XVECTOR (vec
)->contents
[i
], depth
+ 1);
4558 hash
= SXHASH_COMBINE (hash
, hash2
);
4565 /* Return a hash for bool-vector VECTOR. */
4568 sxhash_bool_vector (vec
)
4571 unsigned hash
= XBOOL_VECTOR (vec
)->size
;
4574 n
= min (SXHASH_MAX_LEN
, XBOOL_VECTOR (vec
)->vector_size
);
4575 for (i
= 0; i
< n
; ++i
)
4576 hash
= SXHASH_COMBINE (hash
, XBOOL_VECTOR (vec
)->data
[i
]);
4582 /* Return a hash code for OBJ. DEPTH is the current depth in the Lisp
4583 structure. Value is an unsigned integer clipped to VALMASK. */
4592 if (depth
> SXHASH_MAX_DEPTH
)
4595 switch (XTYPE (obj
))
4602 hash
= sxhash_string (XSYMBOL (obj
)->name
->data
,
4603 XSYMBOL (obj
)->name
->size
);
4611 hash
= sxhash_string (XSTRING (obj
)->data
, XSTRING (obj
)->size
);
4614 /* This can be everything from a vector to an overlay. */
4615 case Lisp_Vectorlike
:
4617 /* According to the CL HyperSpec, two arrays are equal only if
4618 they are `eq', except for strings and bit-vectors. In
4619 Emacs, this works differently. We have to compare element
4621 hash
= sxhash_vector (obj
, depth
);
4622 else if (BOOL_VECTOR_P (obj
))
4623 hash
= sxhash_bool_vector (obj
);
4625 /* Others are `equal' if they are `eq', so let's take their
4631 hash
= sxhash_list (obj
, depth
);
4636 unsigned char *p
= (unsigned char *) &XFLOAT_DATA (obj
);
4637 unsigned char *e
= p
+ sizeof XFLOAT_DATA (obj
);
4638 for (hash
= 0; p
< e
; ++p
)
4639 hash
= SXHASH_COMBINE (hash
, *p
);
4647 return hash
& VALMASK
;
4652 /***********************************************************************
4654 ***********************************************************************/
4657 DEFUN ("sxhash", Fsxhash
, Ssxhash
, 1, 1, 0,
4658 "Compute a hash code for OBJ and return it as integer.")
4662 unsigned hash
= sxhash (obj
, 0);;
4663 return make_number (hash
);
4667 DEFUN ("make-hash-table", Fmake_hash_table
, Smake_hash_table
, 0, MANY
, 0,
4668 "Create and return a new hash table.\n\
4669 Arguments are specified as keyword/argument pairs. The following\n\
4670 arguments are defined:\n\
4672 :test TEST -- TEST must be a symbol that specifies how to compare keys.\n\
4673 Default is `eql'. Predefined are the tests `eq', `eql', and `equal'.\n\
4674 User-supplied test and hash functions can be specified via\n\
4675 `define-hash-table-test'.\n\
4677 :size SIZE -- A hint as to how many elements will be put in the table.\n\
4680 :rehash-size REHASH-SIZE - Indicates how to expand the table when\n\
4681 it fills up. If REHASH-SIZE is an integer, add that many space.\n\
4682 If it is a float, it must be > 1.0, and the new size is computed by\n\
4683 multiplying the old size with that factor. Default is 1.5.\n\
4685 :rehash-threshold THRESHOLD -- THRESHOLD must a float > 0, and <= 1.0.\n\
4686 Resize the hash table when ratio of the number of entries in the table.\n\
4689 :weakness WEAK -- WEAK must be one of nil, t, `key', `value',\n\
4690 `key-or-value', or `key-and-value'. If WEAK is not nil, the table returned\n\
4691 is a weak table. Key/value pairs are removed from a weak hash table when\n\
4692 there are no non-weak references pointing to their key, value, one of key\n\
4693 or value, or both key and value, depending on WEAK. WEAK t is equivalent\n\
4694 to `key-and-value'. Default value of WEAK is nil.")
4699 Lisp_Object test
, size
, rehash_size
, rehash_threshold
, weak
;
4700 Lisp_Object user_test
, user_hash
;
4704 /* The vector `used' is used to keep track of arguments that
4705 have been consumed. */
4706 used
= (char *) alloca (nargs
* sizeof *used
);
4707 bzero (used
, nargs
* sizeof *used
);
4709 /* See if there's a `:test TEST' among the arguments. */
4710 i
= get_key_arg (QCtest
, nargs
, args
, used
);
4711 test
= i
< 0 ? Qeql
: args
[i
];
4712 if (!EQ (test
, Qeq
) && !EQ (test
, Qeql
) && !EQ (test
, Qequal
))
4714 /* See if it is a user-defined test. */
4717 prop
= Fget (test
, Qhash_table_test
);
4718 if (!CONSP (prop
) || XFASTINT (Flength (prop
)) < 2)
4719 Fsignal (Qerror
, list2 (build_string ("Invalid hash table test"),
4721 user_test
= Fnth (make_number (0), prop
);
4722 user_hash
= Fnth (make_number (1), prop
);
4725 user_test
= user_hash
= Qnil
;
4727 /* See if there's a `:size SIZE' argument. */
4728 i
= get_key_arg (QCsize
, nargs
, args
, used
);
4729 size
= i
< 0 ? make_number (DEFAULT_HASH_SIZE
) : args
[i
];
4730 if (!INTEGERP (size
) || XINT (size
) < 0)
4732 list2 (build_string ("Invalid hash table size"),
4735 /* Look for `:rehash-size SIZE'. */
4736 i
= get_key_arg (QCrehash_size
, nargs
, args
, used
);
4737 rehash_size
= i
< 0 ? make_float (DEFAULT_REHASH_SIZE
) : args
[i
];
4738 if (!NUMBERP (rehash_size
)
4739 || (INTEGERP (rehash_size
) && XINT (rehash_size
) <= 0)
4740 || XFLOATINT (rehash_size
) <= 1.0)
4742 list2 (build_string ("Invalid hash table rehash size"),
4745 /* Look for `:rehash-threshold THRESHOLD'. */
4746 i
= get_key_arg (QCrehash_threshold
, nargs
, args
, used
);
4747 rehash_threshold
= i
< 0 ? make_float (DEFAULT_REHASH_THRESHOLD
) : args
[i
];
4748 if (!FLOATP (rehash_threshold
)
4749 || XFLOATINT (rehash_threshold
) <= 0.0
4750 || XFLOATINT (rehash_threshold
) > 1.0)
4752 list2 (build_string ("Invalid hash table rehash threshold"),
4755 /* Look for `:weakness WEAK'. */
4756 i
= get_key_arg (QCweakness
, nargs
, args
, used
);
4757 weak
= i
< 0 ? Qnil
: args
[i
];
4759 weak
= Qkey_and_value
;
4762 && !EQ (weak
, Qvalue
)
4763 && !EQ (weak
, Qkey_or_value
)
4764 && !EQ (weak
, Qkey_and_value
))
4765 Fsignal (Qerror
, list2 (build_string ("Invalid hash table weakness"),
4768 /* Now, all args should have been used up, or there's a problem. */
4769 for (i
= 0; i
< nargs
; ++i
)
4772 list2 (build_string ("Invalid argument list"), args
[i
]));
4774 return make_hash_table (test
, size
, rehash_size
, rehash_threshold
, weak
,
4775 user_test
, user_hash
);
4779 DEFUN ("copy-hash-table", Fcopy_hash_table
, Scopy_hash_table
, 1, 1, 0,
4780 "Return a copy of hash table TABLE.")
4784 return copy_hash_table (check_hash_table (table
));
4788 DEFUN ("makehash", Fmakehash
, Smakehash
, 0, 1, 0,
4789 "Create a new hash table.\n\
4790 Optional first argument TEST specifies how to compare keys in\n\
4791 the table. Predefined tests are `eq', `eql', and `equal'. Default\n\
4792 is `eql'. New tests can be defined with `define-hash-table-test'.")
4796 Lisp_Object args
[2];
4798 args
[1] = NILP (test
) ? Qeql
: test
;
4799 return Fmake_hash_table (2, args
);
4803 DEFUN ("hash-table-count", Fhash_table_count
, Shash_table_count
, 1, 1, 0,
4804 "Return the number of elements in TABLE.")
4808 return check_hash_table (table
)->count
;
4812 DEFUN ("hash-table-rehash-size", Fhash_table_rehash_size
,
4813 Shash_table_rehash_size
, 1, 1, 0,
4814 "Return the current rehash size of TABLE.")
4818 return check_hash_table (table
)->rehash_size
;
4822 DEFUN ("hash-table-rehash-threshold", Fhash_table_rehash_threshold
,
4823 Shash_table_rehash_threshold
, 1, 1, 0,
4824 "Return the current rehash threshold of TABLE.")
4828 return check_hash_table (table
)->rehash_threshold
;
4832 DEFUN ("hash-table-size", Fhash_table_size
, Shash_table_size
, 1, 1, 0,
4833 "Return the size of TABLE.\n\
4834 The size can be used as an argument to `make-hash-table' to create\n\
4835 a hash table than can hold as many elements of TABLE holds\n\
4836 without need for resizing.")
4840 struct Lisp_Hash_Table
*h
= check_hash_table (table
);
4841 return make_number (HASH_TABLE_SIZE (h
));
4845 DEFUN ("hash-table-test", Fhash_table_test
, Shash_table_test
, 1, 1, 0,
4846 "Return the test TABLE uses.")
4850 return check_hash_table (table
)->test
;
4854 DEFUN ("hash-table-weakness", Fhash_table_weakness
, Shash_table_weakness
,
4856 "Return the weakness of TABLE.")
4860 return check_hash_table (table
)->weak
;
4864 DEFUN ("hash-table-p", Fhash_table_p
, Shash_table_p
, 1, 1, 0,
4865 "Return t if OBJ is a Lisp hash table object.")
4869 return HASH_TABLE_P (obj
) ? Qt
: Qnil
;
4873 DEFUN ("clrhash", Fclrhash
, Sclrhash
, 1, 1, 0,
4874 "Clear hash table TABLE.")
4878 hash_clear (check_hash_table (table
));
4883 DEFUN ("gethash", Fgethash
, Sgethash
, 2, 3, 0,
4884 "Look up KEY in TABLE and return its associated value.\n\
4885 If KEY is not found, return DFLT which defaults to nil.")
4887 Lisp_Object key
, table
, dflt
;
4889 struct Lisp_Hash_Table
*h
= check_hash_table (table
);
4890 int i
= hash_lookup (h
, key
, NULL
);
4891 return i
>= 0 ? HASH_VALUE (h
, i
) : dflt
;
4895 DEFUN ("puthash", Fputhash
, Sputhash
, 3, 3, 0,
4896 "Associate KEY with VALUE in hash table TABLE.\n\
4897 If KEY is already present in table, replace its current value with\n\
4900 Lisp_Object key
, value
, table
;
4902 struct Lisp_Hash_Table
*h
= check_hash_table (table
);
4906 i
= hash_lookup (h
, key
, &hash
);
4908 HASH_VALUE (h
, i
) = value
;
4910 hash_put (h
, key
, value
, hash
);
4916 DEFUN ("remhash", Fremhash
, Sremhash
, 2, 2, 0,
4917 "Remove KEY from TABLE.")
4919 Lisp_Object key
, table
;
4921 struct Lisp_Hash_Table
*h
= check_hash_table (table
);
4922 hash_remove (h
, key
);
4927 DEFUN ("maphash", Fmaphash
, Smaphash
, 2, 2, 0,
4928 "Call FUNCTION for all entries in hash table TABLE.\n\
4929 FUNCTION is called with 2 arguments KEY and VALUE.")
4931 Lisp_Object function
, table
;
4933 struct Lisp_Hash_Table
*h
= check_hash_table (table
);
4934 Lisp_Object args
[3];
4937 for (i
= 0; i
< HASH_TABLE_SIZE (h
); ++i
)
4938 if (!NILP (HASH_HASH (h
, i
)))
4941 args
[1] = HASH_KEY (h
, i
);
4942 args
[2] = HASH_VALUE (h
, i
);
4950 DEFUN ("define-hash-table-test", Fdefine_hash_table_test
,
4951 Sdefine_hash_table_test
, 3, 3, 0,
4952 "Define a new hash table test with name NAME, a symbol.\n\
4953 In hash tables create with NAME specified as test, use TEST to compare\n\
4954 keys, and HASH for computing hash codes of keys.\n\
4956 TEST must be a function taking two arguments and returning non-nil\n\
4957 if both arguments are the same. HASH must be a function taking\n\
4958 one argument and return an integer that is the hash code of the\n\
4959 argument. Hash code computation should use the whole value range of\n\
4960 integers, including negative integers.")
4962 Lisp_Object name
, test
, hash
;
4964 return Fput (name
, Qhash_table_test
, list2 (test
, hash
));
4969 /************************************************************************
4971 ************************************************************************/
4976 DEFUN ("md5", Fmd5
, Smd5
, 1, 5, 0,
4977 "Return MD5 message digest of OBJECT, a buffer or string.\n\
4978 A message digest is a cryptographic checksum of a document,\n\
4979 and the algorithm to calculate it is defined in RFC 1321.\n\
4981 The two optional arguments START and END are character positions\n\
4982 specifying for which part of OBJECT the message digest should be computed.\n\
4983 If nil or omitted, the digest is computed for the whole OBJECT.\n\
4985 The MD5 message digest is computed from the result of encoding the\n\
4986 text in a coding system, not directly from the internal Emacs form\n\
4987 of the text. The optional fourth argument CODING-SYSTEM specifies\n\
4988 which coding system to encode the text with. It should be the same\n\
4989 coding system that you used or will use when actually writing the text\n\
4992 If CODING-SYSTEM is nil or omitted, the default depends on OBJECT.\n\
4993 If OBJECT is a buffer, the default for CODING-SYSTEM is whatever\n\
4994 coding system would be chosen by default for writing this text\n\
4997 If OBJECT is a string, the most preferred coding system (see the\n\
4998 command `prefer-coding-system') is used.\n\
5000 The optional fifth argument NOERROR exists for compatibility with\n\
5001 other Emacs versions, and is ignored.")
5002 (object
, start
, end
, coding_system
, noerror
)
5003 Lisp_Object object
, start
, end
, coding_system
, noerror
;
5005 unsigned char digest
[16];
5006 unsigned char value
[33];
5010 int start_char
= 0, end_char
= 0;
5011 int start_byte
= 0, end_byte
= 0;
5013 register struct buffer
*bp
;
5016 if (STRINGP (object
))
5018 if (NILP (coding_system
))
5020 /* Decide the coding-system to encode the data with. */
5022 if (STRING_MULTIBYTE (object
))
5023 /* use default, we can't guess correct value */
5024 coding_system
= XSYMBOL (XCAR (Vcoding_category_list
))->value
;
5026 coding_system
= Qraw_text
;
5029 if (NILP (Fcoding_system_p (coding_system
)))
5031 /* Invalid coding system. */
5033 if (!NILP (noerror
))
5034 coding_system
= Qraw_text
;
5037 Fsignal (Qcoding_system_error
, Fcons (coding_system
, Qnil
));
5040 if (STRING_MULTIBYTE (object
))
5041 object
= code_convert_string1 (object
, coding_system
, Qnil
, 1);
5043 size
= XSTRING (object
)->size
;
5044 size_byte
= STRING_BYTES (XSTRING (object
));
5048 CHECK_NUMBER (start
, 1);
5050 start_char
= XINT (start
);
5055 start_byte
= string_char_to_byte (object
, start_char
);
5061 end_byte
= size_byte
;
5065 CHECK_NUMBER (end
, 2);
5067 end_char
= XINT (end
);
5072 end_byte
= string_char_to_byte (object
, end_char
);
5075 if (!(0 <= start_char
&& start_char
<= end_char
&& end_char
<= size
))
5076 args_out_of_range_3 (object
, make_number (start_char
),
5077 make_number (end_char
));
5081 CHECK_BUFFER (object
, 0);
5083 bp
= XBUFFER (object
);
5089 CHECK_NUMBER_COERCE_MARKER (start
, 0);
5097 CHECK_NUMBER_COERCE_MARKER (end
, 1);
5102 temp
= b
, b
= e
, e
= temp
;
5104 if (!(BUF_BEGV (bp
) <= b
&& e
<= BUF_ZV (bp
)))
5105 args_out_of_range (start
, end
);
5107 if (NILP (coding_system
))
5109 /* Decide the coding-system to encode the data with.
5110 See fileio.c:Fwrite-region */
5112 if (!NILP (Vcoding_system_for_write
))
5113 coding_system
= Vcoding_system_for_write
;
5116 int force_raw_text
= 0;
5118 coding_system
= XBUFFER (object
)->buffer_file_coding_system
;
5119 if (NILP (coding_system
)
5120 || NILP (Flocal_variable_p (Qbuffer_file_coding_system
, Qnil
)))
5122 coding_system
= Qnil
;
5123 if (NILP (current_buffer
->enable_multibyte_characters
))
5127 if (NILP (coding_system
) && !NILP (Fbuffer_file_name(object
)))
5129 /* Check file-coding-system-alist. */
5130 Lisp_Object args
[4], val
;
5132 args
[0] = Qwrite_region
; args
[1] = start
; args
[2] = end
;
5133 args
[3] = Fbuffer_file_name(object
);
5134 val
= Ffind_operation_coding_system (4, args
);
5135 if (CONSP (val
) && !NILP (XCDR (val
)))
5136 coding_system
= XCDR (val
);
5139 if (NILP (coding_system
)
5140 && !NILP (XBUFFER (object
)->buffer_file_coding_system
))
5142 /* If we still have not decided a coding system, use the
5143 default value of buffer-file-coding-system. */
5144 coding_system
= XBUFFER (object
)->buffer_file_coding_system
;
5148 && !NILP (Ffboundp (Vselect_safe_coding_system_function
)))
5149 /* Confirm that VAL can surely encode the current region. */
5150 coding_system
= call3 (Vselect_safe_coding_system_function
,
5151 make_number (b
), make_number (e
),
5155 coding_system
= Qraw_text
;
5158 if (NILP (Fcoding_system_p (coding_system
)))
5160 /* Invalid coding system. */
5162 if (!NILP (noerror
))
5163 coding_system
= Qraw_text
;
5166 Fsignal (Qcoding_system_error
, Fcons (coding_system
, Qnil
));
5170 object
= make_buffer_string (b
, e
, 0);
5172 if (STRING_MULTIBYTE (object
))
5173 object
= code_convert_string1 (object
, coding_system
, Qnil
, 1);
5176 md5_buffer (XSTRING (object
)->data
+ start_byte
,
5177 STRING_BYTES(XSTRING (object
)) - (size_byte
- end_byte
),
5180 for (i
= 0; i
< 16; i
++)
5181 sprintf (&value
[2 * i
], "%02x", digest
[i
]);
5184 return make_string (value
, 32);
5191 /* Hash table stuff. */
5192 Qhash_table_p
= intern ("hash-table-p");
5193 staticpro (&Qhash_table_p
);
5194 Qeq
= intern ("eq");
5196 Qeql
= intern ("eql");
5198 Qequal
= intern ("equal");
5199 staticpro (&Qequal
);
5200 QCtest
= intern (":test");
5201 staticpro (&QCtest
);
5202 QCsize
= intern (":size");
5203 staticpro (&QCsize
);
5204 QCrehash_size
= intern (":rehash-size");
5205 staticpro (&QCrehash_size
);
5206 QCrehash_threshold
= intern (":rehash-threshold");
5207 staticpro (&QCrehash_threshold
);
5208 QCweakness
= intern (":weakness");
5209 staticpro (&QCweakness
);
5210 Qkey
= intern ("key");
5212 Qvalue
= intern ("value");
5213 staticpro (&Qvalue
);
5214 Qhash_table_test
= intern ("hash-table-test");
5215 staticpro (&Qhash_table_test
);
5216 Qkey_or_value
= intern ("key-or-value");
5217 staticpro (&Qkey_or_value
);
5218 Qkey_and_value
= intern ("key-and-value");
5219 staticpro (&Qkey_and_value
);
5222 defsubr (&Smake_hash_table
);
5223 defsubr (&Scopy_hash_table
);
5224 defsubr (&Smakehash
);
5225 defsubr (&Shash_table_count
);
5226 defsubr (&Shash_table_rehash_size
);
5227 defsubr (&Shash_table_rehash_threshold
);
5228 defsubr (&Shash_table_size
);
5229 defsubr (&Shash_table_test
);
5230 defsubr (&Shash_table_weakness
);
5231 defsubr (&Shash_table_p
);
5232 defsubr (&Sclrhash
);
5233 defsubr (&Sgethash
);
5234 defsubr (&Sputhash
);
5235 defsubr (&Sremhash
);
5236 defsubr (&Smaphash
);
5237 defsubr (&Sdefine_hash_table_test
);
5239 Qstring_lessp
= intern ("string-lessp");
5240 staticpro (&Qstring_lessp
);
5241 Qprovide
= intern ("provide");
5242 staticpro (&Qprovide
);
5243 Qrequire
= intern ("require");
5244 staticpro (&Qrequire
);
5245 Qyes_or_no_p_history
= intern ("yes-or-no-p-history");
5246 staticpro (&Qyes_or_no_p_history
);
5247 Qcursor_in_echo_area
= intern ("cursor-in-echo-area");
5248 staticpro (&Qcursor_in_echo_area
);
5249 Qwidget_type
= intern ("widget-type");
5250 staticpro (&Qwidget_type
);
5252 staticpro (&string_char_byte_cache_string
);
5253 string_char_byte_cache_string
= Qnil
;
5255 Fset (Qyes_or_no_p_history
, Qnil
);
5257 DEFVAR_LISP ("features", &Vfeatures
,
5258 "A list of symbols which are the features of the executing emacs.\n\
5259 Used by `featurep' and `require', and altered by `provide'.");
5262 DEFVAR_BOOL ("use-dialog-box", &use_dialog_box
,
5263 "*Non-nil means mouse commands use dialog boxes to ask questions.\n\
5264 This applies to y-or-n and yes-or-no questions asked by commands\n\
5265 invoked by mouse clicks and mouse menu items.");
5268 defsubr (&Sidentity
);
5271 defsubr (&Ssafe_length
);
5272 defsubr (&Sstring_bytes
);
5273 defsubr (&Sstring_equal
);
5274 defsubr (&Scompare_strings
);
5275 defsubr (&Sstring_lessp
);
5278 defsubr (&Svconcat
);
5279 defsubr (&Scopy_sequence
);
5280 defsubr (&Sstring_make_multibyte
);
5281 defsubr (&Sstring_make_unibyte
);
5282 defsubr (&Sstring_as_multibyte
);
5283 defsubr (&Sstring_as_unibyte
);
5284 defsubr (&Scopy_alist
);
5285 defsubr (&Ssubstring
);
5297 defsubr (&Snreverse
);
5298 defsubr (&Sreverse
);
5300 defsubr (&Splist_get
);
5302 defsubr (&Splist_put
);
5305 defsubr (&Sfillarray
);
5306 defsubr (&Schar_table_subtype
);
5307 defsubr (&Schar_table_parent
);
5308 defsubr (&Sset_char_table_parent
);
5309 defsubr (&Schar_table_extra_slot
);
5310 defsubr (&Sset_char_table_extra_slot
);
5311 defsubr (&Schar_table_range
);
5312 defsubr (&Sset_char_table_range
);
5313 defsubr (&Sset_char_table_default
);
5314 defsubr (&Soptimize_char_table
);
5315 defsubr (&Smap_char_table
);
5319 defsubr (&Smapconcat
);
5320 defsubr (&Sy_or_n_p
);
5321 defsubr (&Syes_or_no_p
);
5322 defsubr (&Sload_average
);
5323 defsubr (&Sfeaturep
);
5324 defsubr (&Srequire
);
5325 defsubr (&Sprovide
);
5326 defsubr (&Splist_member
);
5327 defsubr (&Swidget_put
);
5328 defsubr (&Swidget_get
);
5329 defsubr (&Swidget_apply
);
5330 defsubr (&Sbase64_encode_region
);
5331 defsubr (&Sbase64_decode_region
);
5332 defsubr (&Sbase64_encode_string
);
5333 defsubr (&Sbase64_decode_string
);
5341 Vweak_hash_tables
= Qnil
;