annotate src/fns.c @ 20:859a2309aef8 r19-15b93

Import from CVS: tag r19-15b93
author cvs
date Mon, 13 Aug 2007 08:50:05 +0200
parents 0293115a14e9
children 441bb1e64a06
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Random utility Lisp functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1985, 86, 87, 93, 94, 95 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995, 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Mule 2.0, FSF 19.30. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* This file has been Mule-ized. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 /* Note: FSF 19.30 has bool vectors. We have bit vectors. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 /* Hacked on for Mule by Ben Wing, December 1994, January 1995. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 /* Note on some machines this defines `vector' as a typedef,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 so make sure we don't use that name in this file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #undef vector
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #define vector *****
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #include "bytecode.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #include "commands.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 #include "device.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 #include "events.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 #include "extents.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 #include "systime.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 Lisp_Object Qstring_lessp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 Lisp_Object Qidentity;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 static Lisp_Object mark_bit_vector (Lisp_Object, void (*) (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 static void print_bit_vector (Lisp_Object, Lisp_Object, int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 static int bit_vector_equal (Lisp_Object o1, Lisp_Object o2, int depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 static unsigned long bit_vector_hash (Lisp_Object obj, int depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 DEFINE_BASIC_LRECORD_IMPLEMENTATION ("bit-vector", bit_vector,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 mark_bit_vector, print_bit_vector, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 bit_vector_equal, bit_vector_hash,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 struct Lisp_Bit_Vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 mark_bit_vector (Lisp_Object obj, void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 return (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 print_bit_vector (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 struct Lisp_Bit_Vector *v = XBIT_VECTOR (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 int len = bit_vector_length (v);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 int last = len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 if (INTP (Vprint_length))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 last = min (len, XINT (Vprint_length));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 write_c_string ("#*", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 for (i = 0; i < last; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 if (bit_vector_bit (v, i))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 write_c_string ("1", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 write_c_string ("0", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 if (last != len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 write_c_string ("...", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 bit_vector_equal (Lisp_Object o1, Lisp_Object o2, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 struct Lisp_Bit_Vector *v1 = XBIT_VECTOR (o1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 struct Lisp_Bit_Vector *v2 = XBIT_VECTOR (o2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 if (bit_vector_length (v1) != bit_vector_length (v2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 return !memcmp (v1->bits, v2->bits,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 BIT_VECTOR_LONG_STORAGE (bit_vector_length (v1)) *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 sizeof (long));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 bit_vector_hash (Lisp_Object obj, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 struct Lisp_Bit_Vector *v = XBIT_VECTOR (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 return HASH2 (bit_vector_length (v),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 memory_hash (v->bits,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 BIT_VECTOR_LONG_STORAGE (bit_vector_length (v)) *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 sizeof (long)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
113 DEFUN ("identity", Fidentity, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 Return the argument unchanged.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
115 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
116 (arg))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 return arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 extern long get_random (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 extern void seed_random (long arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
124 DEFUN ("random", Frandom, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 Return a pseudo-random number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 All integers representable in Lisp are equally likely.\n\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 On most systems, this is 28 bits' worth.\n\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 With positive integer argument N, return random number in interval [0,N).\n\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 With argument t, set the random number seed from the current time and pid.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
130 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
131 (limit))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 EMACS_INT val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 Lisp_Object lispy_val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 unsigned long denominator;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 if (EQ (limit, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 seed_random (getpid () + time (NULL));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 if (NATNUMP (limit) && !ZEROP (limit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 /* Try to take our random number from the higher bits of VAL,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 not the lower, since (says Gentzel) the low bits of `random'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 are less random than the higher ones. We do this by using the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 quotient rather than the remainder. At the high end of the RNG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 it's possible to get a quotient larger than limit; discarding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 these values eliminates the bias that would otherwise appear
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 when using a large limit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 denominator = ((unsigned long)1 << VALBITS) / XINT (limit);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 val = get_random () / denominator;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 while (val >= XINT (limit));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 val = get_random ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 XSETINT (lispy_val, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 return lispy_val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 /* Random data-structure functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 #ifdef LOSING_BYTECODE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 /* #### Delete this shit */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 /* Charcount is a misnomer here as we might be dealing with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 length of a vector or list, but emphasizes that we're not dealing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 with Bytecounts in strings */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 static Charcount
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 length_with_bytecode_hack (Lisp_Object seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 if (!COMPILED_FUNCTIONP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 return (XINT (Flength (seq)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 struct Lisp_Compiled_Function *b = XCOMPILED_FUNCTION (seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 int intp = b->flags.interactivep;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 int domainp = b->flags.domainp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 if (intp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 return (COMPILED_INTERACTIVE + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 else if (domainp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 return (COMPILED_DOMAIN + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 return (COMPILED_DOC_STRING + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 #endif /* LOSING_BYTECODE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 check_losing_bytecode (CONST char *function, Lisp_Object seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 if (COMPILED_FUNCTIONP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 error_with_frob
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 (seq,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 "As of 19.14, `%s' no longer works with compiled-function objects",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
200 DEFUN ("length", Flength, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 Return the length of vector, bit vector, list or string SEQUENCE.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
202 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
203 (obj))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 Lisp_Object tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 if (STRINGP (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 return (make_int (string_char_length (XSTRING (obj))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 else if (VECTORP (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 return (make_int (vector_length (XVECTOR (obj))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 else if (BIT_VECTORP (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 return (make_int (bit_vector_length (XBIT_VECTOR (obj))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 else if (CONSP (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 for (i = 0, tail = obj; !NILP (tail); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 tail = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 return (make_int (i));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 else if (NILP (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 return (Qzero);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 check_losing_bytecode ("length", obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 obj = wrong_type_argument (Qsequencep, obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 /* This does not check for quits. That is safe
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 since it must terminate. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
240 DEFUN ("safe-length", Fsafe_length, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 Return the length of a list, but avoid error or infinite loop.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 This function never gets an error. If LIST is not really a list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 it returns 0. If LIST is circular, it returns a finite value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 which is at least the number of distinct elements.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
245 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
246 (list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 Lisp_Object tail, halftail, length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 int len = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 /* halftail is used to detect circular lists. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 halftail = list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 for (tail = list; CONSP (tail); tail = XCDR (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 if (EQ (tail, halftail) && len != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 len++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 if ((len & 1) == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 halftail = XCDR (halftail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 XSETINT (length, len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 return length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 /*** string functions. ***/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
268 DEFUN ("string-equal", Fstring_equal, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 T if two strings have identical contents.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 Case is significant. Text properties are ignored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (Under XEmacs, `equal' also ignores text properties and extents in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 strings, but this is not the case under FSF Emacs.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 Symbols are also allowed; their print names are used instead.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
274 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
275 (s1, s2))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 int len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 if (SYMBOLP (s1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 XSETSTRING (s1, XSYMBOL (s1)->name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 if (SYMBOLP (s2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 XSETSTRING (s2, XSYMBOL (s2)->name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 CHECK_STRING (s1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 CHECK_STRING (s2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
286 len = XSTRING_LENGTH (s1);
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
287 if (len != XSTRING_LENGTH (s2) ||
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
288 memcmp (XSTRING_DATA (s1), XSTRING_DATA (s2), len))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
294 DEFUN ("string-lessp", Fstring_lessp, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 T if first arg string is less than second in lexicographic order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 If I18N2 support was compiled in, ordering is determined by the locale.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 Case is significant for the default C locale.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 Symbols are also allowed; their print names are used instead.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
299 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
300 (s1, s2))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 struct Lisp_String *p1, *p2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 Charcount end, len2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 if (SYMBOLP (s1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 XSETSTRING (s1, XSYMBOL (s1)->name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 if (SYMBOLP (s2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 XSETSTRING (s2, XSYMBOL (s2)->name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 CHECK_STRING (s1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 CHECK_STRING (s2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 p1 = XSTRING (s1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 p2 = XSTRING (s2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 end = string_char_length (XSTRING (s1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 len2 = string_char_length (XSTRING (s2));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 if (end > len2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 end = len2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 #ifdef I18N2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 Bytecount bcend = charcount_to_bytecount (string_data (p1), end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 /* Compare strings using collation order of locale. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 /* Need to be tricky to handle embedded nulls. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 for (i = 0; i < bcend; i += strlen((char *) string_data (p1) + i) + 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 int val = strcoll ((char *) string_data (p1) + i,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 (char *) string_data (p2) + i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 if (val < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 if (val > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 #else /* not I18N2 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 for (i = 0; i < end; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 if (string_char (p1, i) != string_char (p2, i))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 return string_char (p1, i) < string_char (p2, i) ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 #endif /* not I18N2 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 /* Can't do i < len2 because then comparison between "foo" and "foo^@"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 won't work right in I18N2 case */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 return ((end < len2) ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
349 DEFUN ("string-modified-tick", Fstring_modified_tick, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 Return STRING's tick counter, incremented for each change to the string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 Each string has a tick counter which is incremented each time the contents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 of the string are changed (e.g. with `aset'). It wraps around occasionally.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
353 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
354 (string))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 struct Lisp_String *s;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 CHECK_STRING (string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 s = XSTRING (string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 if (CONSP (s->plist) && INTP (XCAR (s->plist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 return XCAR (s->plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 return Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 bump_string_modiff (Lisp_Object str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 struct Lisp_String *s = XSTRING (str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 Lisp_Object *ptr = &s->plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 #ifdef I18N3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 /* #### remove the `string-translatable' property from the string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 if there is one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 /* skip over extent info if it's there */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 if (CONSP (*ptr) && EXTENT_INFOP (XCAR (*ptr)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 ptr = &XCDR (*ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 if (CONSP (*ptr) && INTP (XCAR (*ptr)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 XSETINT (XCAR (*ptr), 1+XINT (XCAR (*ptr)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 *ptr = Fcons (make_int (1), *ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 enum concat_target_type { c_cons, c_string, c_vector, c_bit_vector };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 static Lisp_Object concat (int nargs, Lisp_Object *args,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 enum concat_target_type target_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 int last_special);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 concat2 (Lisp_Object s1, Lisp_Object s2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 Lisp_Object args[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 args[0] = s1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 args[1] = s2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 return concat (2, args, c_string, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 concat3 (Lisp_Object s1, Lisp_Object s2, Lisp_Object s3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 Lisp_Object args[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 args[0] = s1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 args[1] = s2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 args[2] = s3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 return concat (3, args, c_string, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 vconcat2 (Lisp_Object s1, Lisp_Object s2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 Lisp_Object args[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 args[0] = s1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 args[1] = s2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 return concat (2, args, c_vector, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 vconcat3 (Lisp_Object s1, Lisp_Object s2, Lisp_Object s3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 Lisp_Object args[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 args[0] = s1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 args[1] = s2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 args[2] = s3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 return concat (3, args, c_vector, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
429 DEFUN ("append", Fappend, 0, MANY, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 Concatenate all the arguments and make the result a list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 The result is a list whose elements are the elements of all the arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 Each argument may be a list, vector, bit vector, or string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 The last argument is not copied, just used as the tail of the new list.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
434 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
435 (int nargs, Lisp_Object *args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 return concat (nargs, args, c_cons, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
440 DEFUN ("concat", Fconcat, 0, MANY, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 Concatenate all the arguments and make the result a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 The result is a string whose elements are the elements of all the arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 Each argument may be a string or a list or vector of characters (integers).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 Do not use individual integers as arguments!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 The behavior of `concat' in that case will be changed later!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 If your program passes an integer as an argument to `concat',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 you should change it right away not to do so.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
449 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
450 (int nargs, Lisp_Object *args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 return concat (nargs, args, c_string, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
455 DEFUN ("vconcat", Fvconcat, 0, MANY, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 Concatenate all the arguments and make the result a vector.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 The result is a vector whose elements are the elements of all the arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 Each argument may be a list, vector, bit vector, or string.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
459 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
460 (int nargs, Lisp_Object *args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 return concat (nargs, args, c_vector, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
465 DEFUN ("bvconcat", Fbvconcat, 0, MANY, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 Concatenate all the arguments and make the result a bit vector.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 The result is a bit vector whose elements are the elements of all the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 arguments. Each argument may be a list, vector, bit vector, or string.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
469 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
470 (int nargs, Lisp_Object *args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 return concat (nargs, args, c_bit_vector, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
475 DEFUN ("copy-sequence", Fcopy_sequence, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 Return a copy of a list, vector, bit vector or string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 The elements of a list or vector are not copied; they are shared
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 with the original.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
479 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
480 (arg))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 again:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 if (NILP (arg)) return arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 /* We handle conses separately because concat() is big and hairy and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 doesn't handle (copy-sequence '(a b . c)) and it's easier to redo this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 than to fix concat() without worrying about breaking other things.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 if (CONSP (arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 Lisp_Object rest = arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 Lisp_Object head, tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 tail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 while (CONSP (rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 Lisp_Object new = Fcons (XCAR (rest), XCDR (rest));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 if (NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 head = tail = new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 XCDR (tail) = new, tail = new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 rest = XCDR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 if (!NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 XCDR (tail) = rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 return head;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 else if (STRINGP (arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 return concat (1, &arg, c_string, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 else if (VECTORP (arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 return concat (1, &arg, c_vector, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 else if (BIT_VECTORP (arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 return concat (1, &arg, c_bit_vector, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 check_losing_bytecode ("copy-sequence", arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 arg = wrong_type_argument (Qsequencep, arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 goto again;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 struct merge_string_extents_struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 Lisp_Object string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 Bytecount entry_offset;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 Bytecount entry_length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 concat (int nargs, Lisp_Object *args,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 enum concat_target_type target_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 int last_special)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 Lisp_Object tail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 int toindex;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 int argnum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 Lisp_Object last_tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 Lisp_Object prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 struct merge_string_extents_struct *args_mse = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 Bufbyte *string_result = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 Bufbyte *string_result_ptr = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 /* The modus operandi in Emacs is "caller gc-protects args".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 However, concat is called many times in Emacs on freshly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 created stuff. So we help those callers out by protecting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 the args ourselves to save them a lot of temporary-variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 grief. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 gcpro1.nvars = nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 #ifdef I18N3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 /* #### if the result is a string and any of the strings have a string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 for the `string-translatable' property, then concat should also
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 concat the args but use the `string-translatable' strings, and store
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 the result in the returned string's `string-translatable' property. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 if (target_type == c_string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 args_mse = ((struct merge_string_extents_struct *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 alloca (nargs *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 sizeof (struct merge_string_extents_struct)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 /* In append, the last arg isn't treated like the others */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 if (last_special && nargs > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 nargs--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 last_tail = args[nargs];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 last_tail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 /* Check and coerce the arguments. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 for (argnum = 0; argnum < nargs; argnum++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 Lisp_Object seq = args[argnum];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 if (CONSP (seq) || NILP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 else if (VECTORP (seq) || STRINGP (seq) || BIT_VECTORP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 #ifdef LOSING_BYTECODE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 else if (COMPILED_FUNCTIONP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 /* Urk! We allow this, for "compatibility"... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 else if (INTP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 /* This is too revolting to think about but maintains
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 compatibility with FSF (and lots and lots of old code). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 args[argnum] = Fnumber_to_string (seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 check_losing_bytecode ("concat", seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 args[argnum] = wrong_type_argument (Qsequencep, seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 if (args_mse)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 if (STRINGP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 args_mse[argnum].string = seq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 args_mse[argnum].string = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 /* Charcount is a misnomer here as we might be dealing with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 length of a vector or list, but emphasizes that we're not dealing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 with Bytecounts in strings */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 Charcount total_length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 for (argnum = 0, total_length = 0; argnum < nargs; argnum++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 #ifdef LOSING_BYTECODE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 Charcount thislen = length_with_bytecode_hack (args[argnum]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 Charcount thislen = XINT (Flength (args[argnum]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 total_length += thislen;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 switch (target_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 case c_cons:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 if (total_length == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 /* In append, if all but last arg are nil, return last arg */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 RETURN_UNGCPRO (last_tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 val = Fmake_list (make_int (total_length), Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 case c_vector:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 val = make_vector (total_length, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 case c_bit_vector:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 val = make_bit_vector (total_length, Qzero);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 case c_string:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 /* We don't make the string yet because we don't know the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 actual number of bytes. This loop was formerly written
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 to call Fmake_string() here and then call set_string_char()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 for each char. This seems logical enough but is waaaaaaaay
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 slow -- set_string_char() has to scan the whole string up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 to the place where the substitution is called for in order
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 to find the place to change, and may have to do some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 realloc()ing in order to make the char fit properly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 O(N^2) yuckage. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 val = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 string_result = (Bufbyte *) alloca (total_length * MAX_EMCHAR_LEN);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 string_result_ptr = string_result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 if (CONSP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 tail = val, toindex = -1; /* -1 in toindex is flag we are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 making a list */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 toindex = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 for (argnum = 0; argnum < nargs; argnum++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 Charcount thisleni = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 Charcount thisindex = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 Lisp_Object seq = args[argnum];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 Bufbyte *string_source_ptr = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 Bufbyte *string_prev_result_ptr = string_result_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 if (!CONSP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 #ifdef LOSING_BYTECODE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 thisleni = length_with_bytecode_hack (seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 thisleni = XINT (Flength (seq));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 if (STRINGP (seq))
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
682 string_source_ptr = XSTRING_DATA (seq);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 Lisp_Object elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 /* We've come to the end of this arg, so exit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 if (NILP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 /* Fetch next element of `seq' arg into `elt' */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 if (CONSP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 elt = Fcar (seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 seq = Fcdr (seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 if (thisindex >= thisleni)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 if (STRINGP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 elt = make_char (charptr_emchar (string_source_ptr));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 INC_CHARPTR (string_source_ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 else if (VECTORP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 elt = vector_data (XVECTOR (seq))[thisindex];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 else if (BIT_VECTORP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 elt = make_int (bit_vector_bit (XBIT_VECTOR (seq),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 thisindex));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 elt = Felt (seq, make_int (thisindex));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 thisindex++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 /* Store into result */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 if (toindex < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 /* toindex negative means we are making a list */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 XCAR (tail) = elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 prev = tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 tail = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 else if (VECTORP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 vector_data (XVECTOR (val))[toindex++] = elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 else if (BIT_VECTORP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 CHECK_BIT (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 set_bit_vector_bit (XBIT_VECTOR (val), toindex++, XINT (elt));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 CHECK_CHAR_COERCE_INT (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 string_result_ptr += set_charptr_emchar (string_result_ptr,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 XCHAR (elt));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 if (args_mse)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 args_mse[argnum].entry_offset =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 string_prev_result_ptr - string_result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 args_mse[argnum].entry_length =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 string_result_ptr - string_prev_result_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 /* Now we finally make the string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 if (target_type == c_string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 val = make_string (string_result, string_result_ptr - string_result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 for (argnum = 0; argnum < nargs; argnum++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 if (STRINGP (args_mse[argnum].string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 copy_string_extents (val, args_mse[argnum].string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 args_mse[argnum].entry_offset, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 args_mse[argnum].entry_length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 if (!NILP (prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 XCDR (prev) = last_tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 RETURN_UNGCPRO (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
768 DEFUN ("copy-alist", Fcopy_alist, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 Return a copy of ALIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 This is an alist which represents the same mapping from objects to objects,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 but does not share the alist structure with ALIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 The objects mapped (cars and cdrs of elements of the alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 are shared, however.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 Elements of ALIST that are not conses are also shared.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
775 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
776 (alist))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 CHECK_LIST (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 if (NILP (alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 return alist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 alist = concat (1, &alist, c_cons, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 for (tem = alist; CONSP (tem); tem = XCDR (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 Lisp_Object car;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 car = XCAR (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 if (CONSP (car))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 XCAR (tem) = Fcons (XCAR (car), XCDR (car));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 return alist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
795 DEFUN ("copy-tree", Fcopy_tree, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 Return a copy of a list and substructures.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 The argument is copied, and any lists contained within it are copied
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 recursively. Circularities and shared substructures are not preserved.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 Second arg VECP causes vectors to be copied, too. Strings and bit vectors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 are not copied.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
801 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
802 (arg, vecp))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 if (CONSP (arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 rest = arg = Fcopy_sequence (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 while (CONSP (rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 Lisp_Object elt = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 if (CONSP (elt) || VECTORP (elt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 XCAR (rest) = Fcopy_tree (elt, vecp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 if (VECTORP (XCDR (rest))) /* hack for (a b . [c d]) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 XCDR (rest) = Fcopy_tree (XCDR (rest), vecp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 rest = XCDR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 else if (VECTORP (arg) && ! NILP (vecp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 int i = vector_length (XVECTOR (arg));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 int j;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 arg = Fcopy_sequence (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 for (j = 0; j < i; j++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 Lisp_Object elt = vector_data (XVECTOR (arg)) [j];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 if (CONSP (elt) || VECTORP (elt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 vector_data (XVECTOR (arg)) [j] = Fcopy_tree (elt, vecp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 return arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
835 DEFUN ("substring", Fsubstring, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 Return a substring of STRING, starting at index FROM and ending before TO.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 TO may be nil or omitted; then the substring runs to the end of STRING.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 If FROM or TO is negative, it counts from the end.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 Relevant parts of the string-extent-data are copied in the new string.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
840 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
841 (string, from, to))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 Charcount ccfr, ccto;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 Bytecount bfr, bto;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 CHECK_STRING (string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 /* Historically, FROM could not be omitted. Whatever ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 CHECK_INT (from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 get_string_range_char (string, from, to, &ccfr, &ccto,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 GB_HISTORICAL_STRING_BEHAVIOR);
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
852 bfr = charcount_to_bytecount (XSTRING_DATA (string), ccfr);
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
853 bto = charcount_to_bytecount (XSTRING_DATA (string), ccto);
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
854 val = make_string (XSTRING_DATA (string) + bfr, bto - bfr);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 /* Copy any applicable extent information into the new string: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 copy_string_extents (val, string, 0, bfr, bto - bfr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 return (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
860 DEFUN ("subseq", Fsubseq, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 Return a subsequence of SEQ, starting at index FROM and ending before TO.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 TO may be nil or omitted; then the subsequence runs to the end of SEQ.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 If FROM or TO is negative, it counts from the end.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 The resulting subsequence is always the same type as the original
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 sequence.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 If SEQ is a string, relevant parts of the string-extent-data are copied
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 in the new string.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
868 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
869 (seq, from, to))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 int len, f, t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 if (STRINGP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 return Fsubstring (seq, from, to);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 if (CONSP (seq) || NILP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 else if (VECTORP (seq) || BIT_VECTORP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 check_losing_bytecode ("subseq", seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 seq = wrong_type_argument (Qsequencep, seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 len = XINT (Flength (seq));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 CHECK_INT (from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 f = XINT (from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 if (f < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 f = len + f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 if (NILP (to))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 t = len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 CHECK_INT (to);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 t = XINT (to);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 if (t < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 t = len + t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 if (!(0 <= f && f <= t && t <= len))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 args_out_of_range_3 (seq, make_int (f), make_int (t));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 if (VECTORP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 Lisp_Object result = make_vector (t - f, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 Lisp_Object *in_elts = vector_data (XVECTOR (seq));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 Lisp_Object *out_elts = vector_data (XVECTOR (result));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 for (i = f; i < t; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 out_elts[i - f] = in_elts[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 if (CONSP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 seq = Fnthcdr (make_int (f), seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 for (i = f; i < t; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 result = Fcons (Fcar (seq), result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 seq = Fcdr (seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 return Fnreverse (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 /* bit vector */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 Lisp_Object result = make_bit_vector (t - f, Qzero);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 for (i = f; i < t; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 set_bit_vector_bit (XBIT_VECTOR (result), i - f,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 bit_vector_bit (XBIT_VECTOR (seq), i));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
945 DEFUN ("nthcdr", Fnthcdr, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 Take cdr N times on LIST, returns the result.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
947 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
948 (n, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 REGISTER int i, num;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 CHECK_INT (n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 num = XINT (n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 for (i = 0; i < num && !NILP (list); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 list = Fcdr (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
961 DEFUN ("nth", Fnth, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 Return the Nth element of LIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 N counts from zero. If LIST is not that long, nil is returned.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
964 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
965 (n, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 return Fcar (Fnthcdr (n, list));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
970 DEFUN ("elt", Felt, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 Return element of SEQUENCE at index N.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
972 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
973 (seq, n))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 CHECK_INT_COERCE_CHAR (n); /* yuck! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 if (CONSP (seq) || NILP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 Lisp_Object tem = Fnthcdr (n, seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 /* #### Utterly, completely, fucking disgusting.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 * #### The whole point of "elt" is that it operates on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 * #### sequences, and does error- (bounds-) checking.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 if (CONSP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 return (XCAR (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 #if 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 /* This is The Way It Has Always Been. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 /* This is The Way Mly Says It Should Be. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 args_out_of_range (seq, n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 else if (STRINGP (seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 || VECTORP (seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 || BIT_VECTORP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 return (Faref (seq, n));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 #ifdef LOSING_BYTECODE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 else if (COMPILED_FUNCTIONP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 int idx = XINT (n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 if (idx < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 lose:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 args_out_of_range (seq, n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 /* Utter perversity */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 struct Lisp_Compiled_Function *b = XCOMPILED_FUNCTION (seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 switch (idx)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 case COMPILED_ARGLIST:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 return (b->arglist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 case COMPILED_BYTECODE:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 return (b->bytecodes);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 case COMPILED_CONSTANTS:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 return (b->constants);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 case COMPILED_STACK_DEPTH:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 return (make_int (b->maxdepth));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 case COMPILED_DOC_STRING:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 return (compiled_function_documentation (b));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 case COMPILED_DOMAIN:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 return (compiled_function_domain (b));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 case COMPILED_INTERACTIVE:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 if (b->flags.interactivep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 return (compiled_function_interactive (b));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 /* if we return nil, can't tell interactive with no args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 from noninteractive. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 goto lose;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 goto lose;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 #endif /* LOSING_BYTECODE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 check_losing_bytecode ("elt", seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 seq = wrong_type_argument (Qsequencep, seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1045 DEFUN ("member", Fmember, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 Return non-nil if ELT is an element of LIST. Comparison done with `equal'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 The value is actually the tail of LIST whose car is ELT.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1048 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1049 (elt, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 REGISTER Lisp_Object tail, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 for (tail = list; !NILP (tail); tail = Fcdr (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 tem = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 if (! NILP (Fequal (elt, tem)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 return tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1062 DEFUN ("memq", Fmemq, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 Return non-nil if ELT is an element of LIST. Comparison done with `eq'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 The value is actually the tail of LIST whose car is ELT.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1065 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1066 (elt, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 REGISTER Lisp_Object tail, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 for (tail = list; !NILP (tail); tail = Fcdr (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 tem = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 if (HACKEQ_UNSAFE (elt, tem)) return tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 memq_no_quit (Lisp_Object elt, Lisp_Object list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 REGISTER Lisp_Object tail, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 for (tail = list; CONSP (tail); tail = XCDR (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 tem = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 if (HACKEQ_UNSAFE (elt, tem)) return tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1090 DEFUN ("assoc", Fassoc, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 Return non-nil if KEY is `equal' to the car of an element of LIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 The value is actually the element of LIST whose car equals KEY.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1093 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1094 (key, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 /* This function can GC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 REGISTER Lisp_Object tail, elt, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 for (tail = list; !NILP (tail); tail = Fcdr (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 elt = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 if (!CONSP (elt)) continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 tem = Fequal (Fcar (elt), key);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 if (!NILP (tem)) return elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 assoc_no_quit (Lisp_Object key, Lisp_Object list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 return (unbind_to (speccount, Fassoc (key, list)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1117 DEFUN ("assq", Fassq, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 Return non-nil if KEY is `eq' to the car of an element of LIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 The value is actually the element of LIST whose car is KEY.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 Elements of LIST that are not conses are ignored.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1121 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1122 (key, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 REGISTER Lisp_Object tail, elt, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 for (tail = list; !NILP (tail); tail = Fcdr (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 elt = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 if (!CONSP (elt)) continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 tem = Fcar (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 if (HACKEQ_UNSAFE (key, tem)) return elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 /* Like Fassq but never report an error and do not allow quits.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 Use only on lists known never to be circular. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 assq_no_quit (Lisp_Object key, Lisp_Object list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 /* This cannot GC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 REGISTER Lisp_Object tail, elt, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 for (tail = list; CONSP (tail); tail = XCDR (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 elt = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 if (!CONSP (elt)) continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 tem = XCAR (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 if (HACKEQ_UNSAFE (key, tem)) return elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1154 DEFUN ("rassoc", Frassoc, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 Return non-nil if KEY is `equal' to the cdr of an element of LIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 The value is actually the element of LIST whose cdr equals KEY.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1157 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1158 (key, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 REGISTER Lisp_Object tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 for (tail = list; !NILP (tail); tail = Fcdr (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 REGISTER Lisp_Object elt, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 elt = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 if (!CONSP (elt)) continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 tem = Fequal (Fcdr (elt), key);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 if (!NILP (tem)) return elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1173 DEFUN ("rassq", Frassq, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 Return non-nil if KEY is `eq' to the cdr of an element of LIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 The value is actually the element of LIST whose cdr is KEY.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1176 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1177 (key, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 REGISTER Lisp_Object tail, elt, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 for (tail = list; !NILP (tail); tail = Fcdr (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 elt = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 if (!CONSP (elt)) continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 tem = Fcdr (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 if (HACKEQ_UNSAFE (key, tem)) return elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 rassq_no_quit (Lisp_Object key, Lisp_Object list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 REGISTER Lisp_Object tail, elt, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 for (tail = list; CONSP (tail); tail = XCDR (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 elt = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 if (!CONSP (elt)) continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 tem = XCDR (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 if (HACKEQ_UNSAFE (key, tem)) return elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1206 DEFUN ("delete", Fdelete, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 Delete by side effect any occurrences of ELT as a member of LIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 The modified LIST is returned. Comparison is done with `equal'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 If the first member of LIST is ELT, there is no way to remove it by side
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 effect; therefore, write `(setq foo (delete element foo))' to be sure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 of changing the value of `foo'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1212 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1213 (elt, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 REGISTER Lisp_Object tail, prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 tail = list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 while (!NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 if (!NILP (Fequal (elt, Fcar (tail))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 if (NILP (prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 list = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 Fsetcdr (prev, Fcdr (tail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 prev = tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 tail = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1236 DEFUN ("delq", Fdelq, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 Delete by side effect any occurrences of ELT as a member of LIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 The modified LIST is returned. Comparison is done with `eq'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 If the first member of LIST is ELT, there is no way to remove it by side
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 effect; therefore, write `(setq foo (delq element foo))' to be sure of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 changing the value of `foo'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1242 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1243 (elt, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 REGISTER Lisp_Object tail, prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 REGISTER Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 tail = list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 while (!NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 tem = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 if (HACKEQ_UNSAFE (elt, tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 if (NILP (prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 list = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 Fsetcdr (prev, Fcdr (tail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 prev = tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 tail = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 /* no quit, no errors; be careful */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 delq_no_quit (Lisp_Object elt, Lisp_Object list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 REGISTER Lisp_Object tail, prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 REGISTER Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 tail = list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 while (CONSP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 tem = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 if (HACKEQ_UNSAFE (elt, tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 if (NILP (prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 list = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 XCDR (prev) = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 prev = tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 tail = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 /* Be VERY careful with this. This is like delq_no_quit() but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 also calls free_cons() on the removed conses. You must be SURE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 that no pointers to the freed conses remain around (e.g.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 someone else is pointing to part of the list). This function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 is useful on internal lists that are used frequently and where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 the actual list doesn't escape beyond known code bounds. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 delq_no_quit_and_free_cons (Lisp_Object elt, Lisp_Object list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 REGISTER Lisp_Object tail, prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 REGISTER Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 tail = list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 while (CONSP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 Lisp_Object cons_to_free = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 tem = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 if (HACKEQ_UNSAFE (elt, tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 if (NILP (prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 list = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 XCDR (prev) = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 cons_to_free = tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 prev = tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 tail = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 if (!NILP (cons_to_free))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 free_cons (XCONS (cons_to_free));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1331 DEFUN ("remassoc", Fremassoc, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 Delete by side effect any elements of LIST whose car is `equal' to KEY.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 The modified LIST is returned. If the first member of LIST has a car
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 that is `equal' to KEY, there is no way to remove it by side effect;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 therefore, write `(setq foo (remassoc key foo))' to be sure of changing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 the value of `foo'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1337 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1338 (key, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 REGISTER Lisp_Object tail, prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 tail = list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 while (!NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 Lisp_Object elt = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 if (CONSP (elt) && ! NILP (Fequal (key, Fcar (elt))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 if (NILP (prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 list = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 Fsetcdr (prev, Fcdr (tail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 prev = tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 tail = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 remassoc_no_quit (Lisp_Object key, Lisp_Object list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 return (unbind_to (speccount, Fremassoc (key, list)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1370 DEFUN ("remassq", Fremassq, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 Delete by side effect any elements of LIST whose car is `eq' to KEY.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 The modified LIST is returned. If the first member of LIST has a car
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 that is `eq' to KEY, there is no way to remove it by side effect;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 therefore, write `(setq foo (remassq key foo))' to be sure of changing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 the value of `foo'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1376 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1377 (key, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 REGISTER Lisp_Object tail, prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 tail = list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 while (!NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 Lisp_Object elt = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 if (CONSP (elt) && HACKEQ_UNSAFE (key, Fcar (elt)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 if (NILP (prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 list = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 Fsetcdr (prev, Fcdr (tail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 prev = tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 tail = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 /* no quit, no errors; be careful */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 remassq_no_quit (Lisp_Object key, Lisp_Object list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 REGISTER Lisp_Object tail, prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 REGISTER Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 tail = list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 while (CONSP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 tem = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 if (CONSP (tem) && HACKEQ_UNSAFE (key, XCAR (tem)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 if (NILP (prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 list = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 XCDR (prev) = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 prev = tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 tail = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1428 DEFUN ("remrassoc", Fremrassoc, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 Delete by side effect any elements of LIST whose cdr is `equal' to VALUE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 The modified LIST is returned. If the first member of LIST has a car
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 that is `equal' to VALUE, there is no way to remove it by side effect;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 therefore, write `(setq foo (remrassoc value foo))' to be sure of changing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 the value of `foo'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1434 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1435 (value, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 REGISTER Lisp_Object tail, prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 tail = list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 while (!NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 Lisp_Object elt = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 if (CONSP (elt) && ! NILP (Fequal (value, Fcdr (elt))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 if (NILP (prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 list = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 Fsetcdr (prev, Fcdr (tail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 prev = tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 tail = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1459 DEFUN ("remrassq", Fremrassq, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 Delete by side effect any elements of LIST whose cdr is `eq' to VALUE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 The modified LIST is returned. If the first member of LIST has a car
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 that is `eq' to VALUE, there is no way to remove it by side effect;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 therefore, write `(setq foo (remrassq value foo))' to be sure of changing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 the value of `foo'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1465 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1466 (value, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 REGISTER Lisp_Object tail, prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 tail = list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 while (!NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 Lisp_Object elt = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 if (CONSP (elt) && HACKEQ_UNSAFE (value, Fcdr (elt)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 if (NILP (prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 list = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 Fsetcdr (prev, Fcdr (tail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 prev = tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 tail = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 /* no quit, no errors; be careful */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 remrassq_no_quit (Lisp_Object value, Lisp_Object list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 REGISTER Lisp_Object tail, prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 REGISTER Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 tail = list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 while (CONSP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 tem = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 if (CONSP (tem) && HACKEQ_UNSAFE (value, XCDR (tem)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 if (NILP (prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 list = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 XCDR (prev) = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 prev = tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 tail = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1517 DEFUN ("nreverse", Fnreverse, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 Reverse LIST by modifying cdr pointers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 Returns the beginning of the reversed list.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1520 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1521 (list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 Lisp_Object prev, tail, next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 /* We gcpro our args; see `nconc' */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 tail = list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 GCPRO2 (prev, tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 while (!NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 next = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 Fsetcdr (tail, prev);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 prev = tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 tail = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 return prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1542 DEFUN ("reverse", Freverse, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 Reverse LIST, copying. Returns the beginning of the reversed list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 See also the function `nreverse', which is used more often.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1545 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1546 (list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 Lisp_Object length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 Lisp_Object *vec;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 Lisp_Object tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 REGISTER int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 length = Flength (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 vec = (Lisp_Object *) alloca (XINT (length) * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 for (i = XINT (length) - 1, tail = list; i >= 0; i--, tail = Fcdr (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 vec[i] = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 return Flist (XINT (length), vec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 static Lisp_Object list_merge (Lisp_Object org_l1, Lisp_Object org_l2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 Lisp_Object lisp_arg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 int (*pred_fn) (Lisp_Object, Lisp_Object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 Lisp_Object lisp_arg));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 list_sort (Lisp_Object list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 Lisp_Object lisp_arg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 int (*pred_fn) (Lisp_Object, Lisp_Object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 Lisp_Object lisp_arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 Lisp_Object front, back;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 Lisp_Object len, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 int length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 front = list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 len = Flength (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 length = XINT (len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 if (length < 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 XSETINT (len, (length / 2) - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 tem = Fnthcdr (len, list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 back = Fcdr (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 Fsetcdr (tem, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 GCPRO3 (front, back, lisp_arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 front = list_sort (front, lisp_arg, pred_fn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 back = list_sort (back, lisp_arg, pred_fn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 return list_merge (front, back, lisp_arg, pred_fn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 merge_pred_function (Lisp_Object obj1, Lisp_Object obj2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 Lisp_Object pred)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 Lisp_Object tmp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 /* prevents the GC from happening in call2 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 /* Emacs' GC doesn't actually relocate pointers, so this probably
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 isn't strictly necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 record_unwind_protect (restore_gc_inhibit,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 make_int (gc_currently_forbidden));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 gc_currently_forbidden = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 tmp = call2 (pred, obj1, obj2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 if (NILP (tmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1618 DEFUN ("sort", Fsort, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 Sort LIST, stably, comparing elements using PREDICATE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 Returns the sorted list. LIST is modified by side effects.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 PREDICATE is called with two elements of LIST, and should return T
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 if the first element is \"less\" than the second.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1623 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1624 (list, pred))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 return list_sort (list, pred, merge_pred_function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 merge (Lisp_Object org_l1, Lisp_Object org_l2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 Lisp_Object pred)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 return list_merge (org_l1, org_l2, pred, merge_pred_function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 list_merge (Lisp_Object org_l1, Lisp_Object org_l2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 Lisp_Object lisp_arg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 int (*pred_fn) (Lisp_Object, Lisp_Object, Lisp_Object lisp_arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 Lisp_Object value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 Lisp_Object tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 Lisp_Object l1, l2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 l1 = org_l1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 l2 = org_l2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 tail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 value = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 /* It is sufficient to protect org_l1 and org_l2.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 When l1 and l2 are updated, we copy the new values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 back into the org_ vars. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 GCPRO4 (org_l1, org_l2, lisp_arg, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 if (NILP (l1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 if (NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 return l2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 Fsetcdr (tail, l2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 return value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 if (NILP (l2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 if (NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 return l1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 Fsetcdr (tail, l1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 return value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 if (((*pred_fn) (Fcar (l2), Fcar (l1), lisp_arg)) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 tem = l1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 l1 = Fcdr (l1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 org_l1 = l1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 tem = l2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 l2 = Fcdr (l2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 org_l2 = l2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 if (NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 value = tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 Fsetcdr (tail, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 tail = tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 /* property-list functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 /* For properties of text, we need to do order-insensitive comparison of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 plists. That is, we need to compare two plists such that they are the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 same if they have the same set of keys, and equivalent values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 So (a 1 b 2) would be equal to (b 2 a 1).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 NIL_MEANS_NOT_PRESENT is as in `plists-eq' etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 LAXP means use `equal' for comparisons.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 plists_differ (Lisp_Object a, Lisp_Object b, int nil_means_not_present,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 int laxp, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 int eqp = (depth == -1); /* -1 as depth means us eq, not equal. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 int la, lb, m, i, fill;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 Lisp_Object *keys, *vals;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 char *flags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 if (NILP (a) && NILP (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 Fcheck_valid_plist (a);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 Fcheck_valid_plist (b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 la = XINT (Flength (a));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 lb = XINT (Flength (b));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 m = (la > lb ? la : lb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 fill = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 keys = (Lisp_Object *) alloca (m * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 vals = (Lisp_Object *) alloca (m * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 flags = (char *) alloca (m * sizeof (char));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 /* First extract the pairs from A. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 for (rest = a; !NILP (rest); rest = XCDR (XCDR (rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 Lisp_Object k = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 Lisp_Object v = XCAR (XCDR (rest));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 /* Maybe be Ebolified. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 if (nil_means_not_present && NILP (v)) continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 keys [fill] = k;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 vals [fill] = v;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 flags[fill] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 fill++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 /* Now iterate over B, and stop if we find something that's not in A,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 or that doesn't match. As we match, mark them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 for (rest = b; !NILP (rest); rest = XCDR (XCDR (rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 Lisp_Object k = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 Lisp_Object v = XCAR (XCDR (rest));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 /* Maybe be Ebolified. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 if (nil_means_not_present && NILP (v)) continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 for (i = 0; i < fill; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 if (!laxp ? EQ (k, keys [i]) : internal_equal (k, keys [i], depth))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 if ((eqp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 /* Ebolified here too, sigh ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 ? !HACKEQ_UNSAFE (v, vals [i])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 : !internal_equal (v, vals [i], depth)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 /* a property in B has a different value than in A */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 goto MISMATCH;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 flags [i] = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 if (i == fill)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 /* there are some properties in B that are not in A */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 goto MISMATCH;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 /* Now check to see that all the properties in A were also in B */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 for (i = 0; i < fill; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 if (flags [i] == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 goto MISMATCH;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 /* Ok. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 MISMATCH:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1785 DEFUN ("plists-eq", Fplists_eq, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 Return non-nil if property lists A and B are `eq'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 A property list is an alternating list of keywords and values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 This function does order-insensitive comparisons of the property lists:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 For example, the property lists '(a 1 b 2) and '(b 2 a 1) are equal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 Comparison between values is done using `eq'. See also `plists-equal'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 If optional arg NIL-MEANS-NOT-PRESENT is non-nil, then a property with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 a nil value is ignored. This feature is a virus that has infected
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1793 old Lisp implementations, but should not be used except for backward
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1794 compatibility.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1795 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1796 (a, b, nil_means_not_present))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 return (plists_differ (a, b, !NILP (nil_means_not_present), 0, -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 ? Qnil : Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1802 DEFUN ("plists-equal", Fplists_equal, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 Return non-nil if property lists A and B are `equal'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 A property list is an alternating list of keywords and values. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 function does order-insensitive comparisons of the property lists: For
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 example, the property lists '(a 1 b 2) and '(b 2 a 1) are equal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 Comparison between values is done using `equal'. See also `plists-eq'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 If optional arg NIL-MEANS-NOT-PRESENT is non-nil, then a property with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 a nil value is ignored. This feature is a virus that has infected
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1810 old Lisp implementations, but should not be used except for backward
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1811 compatibility.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1812 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1813 (a, b, nil_means_not_present))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 return (plists_differ (a, b, !NILP (nil_means_not_present), 0, 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 ? Qnil : Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1820 DEFUN ("lax-plists-eq", Flax_plists_eq, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 Return non-nil if lax property lists A and B are `eq'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 A property list is an alternating list of keywords and values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 This function does order-insensitive comparisons of the property lists:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 For example, the property lists '(a 1 b 2) and '(b 2 a 1) are equal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 Comparison between values is done using `eq'. See also `plists-equal'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 A lax property list is like a regular one except that comparisons between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 keywords is done using `equal' instead of `eq'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 If optional arg NIL-MEANS-NOT-PRESENT is non-nil, then a property with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 a nil value is ignored. This feature is a virus that has infected
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1830 old Lisp implementations, but should not be used except for backward
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1831 compatibility.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1832 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1833 (a, b, nil_means_not_present))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 return (plists_differ (a, b, !NILP (nil_means_not_present), 1, -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 ? Qnil : Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1839 DEFUN ("lax-plists-equal", Flax_plists_equal, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 Return non-nil if lax property lists A and B are `equal'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 A property list is an alternating list of keywords and values. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 function does order-insensitive comparisons of the property lists: For
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 example, the property lists '(a 1 b 2) and '(b 2 a 1) are equal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 Comparison between values is done using `equal'. See also `plists-eq'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 A lax property list is like a regular one except that comparisons between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 keywords is done using `equal' instead of `eq'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 If optional arg NIL-MEANS-NOT-PRESENT is non-nil, then a property with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 a nil value is ignored. This feature is a virus that has infected
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1849 old Lisp implementations, but should not be used except for backward
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1850 compatibility.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1851 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1852 (a, b, nil_means_not_present))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 return (plists_differ (a, b, !NILP (nil_means_not_present), 1, 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 ? Qnil : Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 /* Return the value associated with key PROPERTY in property list PLIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 Return nil if key not found. This function is used for internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 property lists that cannot be directly manipulated by the user.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 internal_plist_get (Lisp_Object plist, Lisp_Object property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 Lisp_Object tail = plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 for (; !NILP (tail); tail = XCDR (XCDR (tail)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 struct Lisp_Cons *c = XCONS (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 if (EQ (c->car, property))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 return XCAR (c->cdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 return Qunbound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 /* Set PLIST's value for PROPERTY to VALUE. Analogous to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 internal_plist_get(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 internal_plist_put (Lisp_Object *plist, Lisp_Object property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 Lisp_Object tail = *plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 for (; !NILP (tail); tail = XCDR (XCDR (tail)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 struct Lisp_Cons *c = XCONS (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 if (EQ (c->car, property))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 XCAR (c->cdr) = value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 *plist = Fcons (property, Fcons (value, *plist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 internal_remprop (Lisp_Object *plist, Lisp_Object property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 Lisp_Object tail = *plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 if (NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 if (EQ (XCAR (tail), property))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 *plist = XCDR (XCDR (tail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 for (tail = XCDR (tail); !NILP (XCDR (tail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 tail = XCDR (XCDR (tail)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 struct Lisp_Cons *c = XCONS (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 if (EQ (XCAR (c->cdr), property))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 c->cdr = XCDR (XCDR (c->cdr));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 /* Called on a malformed property list. BADPLACE should be some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 place where truncating will form a good list -- i.e. we shouldn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 result in a list with an odd length. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 bad_bad_bunny (Lisp_Object *plist, Lisp_Object *badplace, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 if (ERRB_EQ (errb, ERROR_ME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 return Fsignal (Qmalformed_property_list, list2 (*plist, *badplace));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 if (ERRB_EQ (errb, ERROR_ME_WARN))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 warn_when_safe_lispobj
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 (Qlist, Qwarning,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 list2 (build_string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 ("Malformed property list -- list has been truncated"),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 *plist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 *badplace = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 return Qunbound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 /* Called on a circular property list. BADPLACE should be some place
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 where truncating will result in an even-length list, as above.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 If doesn't particularly matter where we truncate -- anywhere we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 truncate along the entire list will break the circularity, because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 it will create a terminus and the list currently doesn't have one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 bad_bad_turtle (Lisp_Object *plist, Lisp_Object *badplace, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 if (ERRB_EQ (errb, ERROR_ME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 /* #### Eek, this will probably result in another error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 when PLIST is printed out */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 return Fsignal (Qcircular_property_list, list1 (*plist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 if (ERRB_EQ (errb, ERROR_ME_WARN))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 warn_when_safe_lispobj
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 (Qlist, Qwarning,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 list2 (build_string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 ("Circular property list -- list has been truncated"),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 *plist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 *badplace = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 return Qunbound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 /* Advance the tortoise pointer by two (one iteration of a property-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 loop) and the hare pointer by four and verify that no malformations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 or circularities exist. If so, return zero and store a value into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 RETVAL that should be returned by the calling function. Otherwise,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 return 1. See external_plist_get().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 advance_plist_pointers (Lisp_Object *plist,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 Lisp_Object **tortoise, Lisp_Object **hare,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 Error_behavior errb, Lisp_Object *retval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 Lisp_Object *tortsave = *tortoise;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 /* Note that our "fixing" may be more brutal than necessary,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 but it's the user's own problem, not ours. if they went in and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 manually fucked up a plist. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 for (i = 0; i < 2; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 /* This is a standard iteration of a defensive-loop-checking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 loop. We just do it twice because we want to advance past
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 both the property and its value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 If the pointer indirection is confusing you, remember that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 one level of indirection on the hare and tortoise pointers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 is only due to pass-by-reference for this function. The other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 level is so that the plist can be fixed in place. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 /* When we reach the end of a well-formed plist, **HARE is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 nil. In that case, we don't do anything at all except
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 advance TORTOISE by one. Otherwise, we advance HARE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 by two (making sure it's OK to do so), then advance
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 TORTOISE by one (it will always be OK to do so because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 the HARE is always ahead of the TORTOISE and will have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 already verified the path), then make sure TORTOISE and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 HARE don't contain the same non-nil object -- if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 TORTOISE and the HARE ever meet, then obviously we're
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 in a circularity, and if we're in a circularity, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 the TORTOISE and the HARE can't cross paths without
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 meeting, since the HARE only gains one step over the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 TORTOISE per iteration. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 if (!NILP (**hare))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 Lisp_Object *haresave = *hare;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 if (!CONSP (**hare))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 *retval = bad_bad_bunny (plist, haresave, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 *hare = &XCDR (**hare);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 /* In a non-plist, we'd check here for a nil value for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 **HARE, which is OK (it just means the list has an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 odd number of elements). In a plist, it's not OK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 for the list to have an odd number of elements. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 if (!CONSP (**hare))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 *retval = bad_bad_bunny (plist, haresave, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 *hare = &XCDR (**hare);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 *tortoise = &XCDR (**tortoise);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 if (!NILP (**hare) && EQ (**tortoise, **hare))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 *retval = bad_bad_turtle (plist, tortsave, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 /* Return the value of PROPERTY from PLIST, or Qunbound if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 property is not on the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 PLIST is a Lisp-accessible property list, meaning that it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 has to be checked for malformations and circularities.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 If ERRB is ERROR_ME, an error will be signalled. Otherwise, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 function will never signal an error; and if ERRB is ERROR_ME_WARN,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 on finding a malformation or a circularity, it issues a warning and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 attempts to silently fix the problem.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 A pointer to PLIST is passed in so that PLIST can be successfully
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 "fixed" even if the error is at the beginning of the plist. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 external_plist_get (Lisp_Object *plist, Lisp_Object property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 int laxp, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 Lisp_Object *tortoise = plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 Lisp_Object *hare = plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 while (!NILP (*tortoise))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 Lisp_Object *tortsave = tortoise;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 Lisp_Object retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 /* We do the standard tortoise/hare march. We isolate the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 grungy stuff to do this in advance_plist_pointers(), though.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 To us, all this function does is advance the tortoise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 pointer by two and the hare pointer by four and make sure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 everything's OK. We first advance the pointers and then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 check if a property matched; this ensures that our
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 check for a matching property is safe. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 if (!advance_plist_pointers (plist, &tortoise, &hare, errb, &retval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 if (!laxp ? EQ (XCAR (*tortsave), property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 : internal_equal (XCAR (*tortsave), property, 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 return XCAR (XCDR (*tortsave));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 return Qunbound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 /* Set PLIST's value for PROPERTY to VALUE, given a possibly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 malformed or circular plist. Analogous to external_plist_get(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 external_plist_put (Lisp_Object *plist, Lisp_Object property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 Lisp_Object value, int laxp, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 Lisp_Object *tortoise = plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 Lisp_Object *hare = plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 while (!NILP (*tortoise))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 Lisp_Object *tortsave = tortoise;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 Lisp_Object retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 /* See above */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 if (!advance_plist_pointers (plist, &tortoise, &hare, errb, &retval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 if (!laxp ? EQ (XCAR (*tortsave), property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 : internal_equal (XCAR (*tortsave), property, 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 XCAR (XCDR (*tortsave)) = value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 *plist = Fcons (property, Fcons (value, *plist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 external_remprop (Lisp_Object *plist, Lisp_Object property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 int laxp, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 Lisp_Object *tortoise = plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 Lisp_Object *hare = plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 while (!NILP (*tortoise))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 Lisp_Object *tortsave = tortoise;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 Lisp_Object retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 /* See above */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 if (!advance_plist_pointers (plist, &tortoise, &hare, errb, &retval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 if (!laxp ? EQ (XCAR (*tortsave), property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 : internal_equal (XCAR (*tortsave), property, 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 /* Now you see why it's so convenient to have that level
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 of indirection. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 *tortsave = XCDR (XCDR (*tortsave));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2161 DEFUN ("plist-get", Fplist_get, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 Extract a value from a property list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 PLIST is a property list, which is a list of the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 \(PROP1 VALUE1 PROP2 VALUE2...). This function returns the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 corresponding to the given PROP, or DEFAULT if PROP is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 one of the properties on the list.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2167 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2168 (plist, prop, defalt)) /* Cant spel in C */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 Lisp_Object val = external_plist_get (&plist, prop, 0, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 if (UNBOUNDP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 return defalt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2176 DEFUN ("plist-put", Fplist_put, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 Change value in PLIST of PROP to VAL.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 PLIST is a property list, which is a list of the form \(PROP1 VALUE1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 PROP2 VALUE2 ...). PROP is usually a symbol and VAL is any object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 If PROP is already a property on the list, its value is set to VAL,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 otherwise the new PROP VAL pair is added. The new plist is returned;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 use `(setq x (plist-put x prop val))' to be sure to use the new value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 The PLIST is modified by side effects.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2184 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2185 (plist, prop, val))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 external_plist_put (&plist, prop, val, 0, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 return plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2191 DEFUN ("plist-remprop", Fplist_remprop, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 Remove from PLIST the property PROP and its value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 PLIST is a property list, which is a list of the form \(PROP1 VALUE1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 PROP2 VALUE2 ...). PROP is usually a symbol. The new plist is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 returned; use `(setq x (plist-remprop x prop val))' to be sure to use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 the new value. The PLIST is modified by side effects.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2197 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2198 (plist, prop))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 external_remprop (&plist, prop, 0, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 return plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2204 DEFUN ("plist-member", Fplist_member, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 Return t if PROP has a value specified in PLIST.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2206 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2207 (plist, prop))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 return UNBOUNDP (Fplist_get (plist, prop, Qunbound)) ? Qnil : Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2212 DEFUN ("check-valid-plist", Fcheck_valid_plist, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 Given a plist, signal an error if there is anything wrong with it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 This means that it's a malformed or circular plist.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2215 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2216 (plist))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 Lisp_Object *tortoise;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 Lisp_Object *hare;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 start_over:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 tortoise = &plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 hare = &plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 while (!NILP (*tortoise))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 Lisp_Object retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 /* See above */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 if (!advance_plist_pointers (&plist, &tortoise, &hare, ERROR_ME,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 &retval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 goto start_over;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2237 DEFUN ("valid-plist-p", Fvalid_plist_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 Given a plist, return non-nil if its format is correct.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 If it returns nil, `check-valid-plist' will signal an error when given
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 the plist; that means it's a malformed or circular plist or has non-symbols
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 as keywords.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2242 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2243 (plist))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 Lisp_Object *tortoise;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 Lisp_Object *hare;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 tortoise = &plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 hare = &plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 while (!NILP (*tortoise))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 Lisp_Object retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 /* See above */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 if (!advance_plist_pointers (&plist, &tortoise, &hare, ERROR_ME_NOT,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 &retval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2263 DEFUN ("canonicalize-plist", Fcanonicalize_plist, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 Destructively remove any duplicate entries from a plist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 In such cases, the first entry applies.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 If optional arg NIL-MEANS-NOT-PRESENT is non-nil, then a property with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 a nil value is removed. This feature is a virus that has infected
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2269 old Lisp implementations, but should not be used except for backward
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2270 compatibility.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 The new plist is returned. If NIL-MEANS-NOT-PRESENT is given, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 return value may not be EQ to the passed-in value, so make sure to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 `setq' the value back into where it came from.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2275 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2276 (plist, nil_means_not_present))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 Lisp_Object head = plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 Fcheck_valid_plist (plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 while (!NILP (plist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 Lisp_Object prop = Fcar (plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 Lisp_Object next = Fcdr (plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 CHECK_CONS (next); /* just make doubly sure we catch any errors */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 if (!NILP (nil_means_not_present) && NILP (Fcar (next)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 if (EQ (head, plist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 head = Fcdr (next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 plist = Fcdr (next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 /* external_remprop returns 1 if it removed any property.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 We have to loop till it didn't remove anything, in case
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 the property occurs many times. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 while (external_remprop (&XCDR (next), prop, 0, ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 plist = Fcdr (next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 return head;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2305 DEFUN ("lax-plist-get", Flax_plist_get, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 Extract a value from a lax property list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 LAX-PLIST is a lax property list, which is a list of the form \(PROP1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 VALUE1 PROP2 VALUE2...), where comparions between properties is done
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 using `equal' instead of `eq'. This function returns the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 corresponding to the given PROP, or DEFAULT if PROP is not one of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 properties on the list.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2313 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2314 (lax_plist, prop, defalt)) /* Cant spel in C */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 Lisp_Object val = external_plist_get (&lax_plist, prop, 1, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 if (UNBOUNDP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 return defalt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2322 DEFUN ("lax-plist-put", Flax_plist_put, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 Change value in LAX-PLIST of PROP to VAL.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 LAX-PLIST is a lax property list, which is a list of the form \(PROP1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 VALUE1 PROP2 VALUE2...), where comparions between properties is done
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 using `equal' instead of `eq'. PROP is usually a symbol and VAL is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 any object. If PROP is already a property on the list, its value is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 set to VAL, otherwise the new PROP VAL pair is added. The new plist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 is returned; use `(setq x (lax-plist-put x prop val))' to be sure to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 use the new value. The LAX-PLIST is modified by side effects.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2331 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2332 (lax_plist, prop, val))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 external_plist_put (&lax_plist, prop, val, 1, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335 return lax_plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2338 DEFUN ("lax-plist-remprop", Flax_plist_remprop, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 Remove from LAX-PLIST the property PROP and its value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 LAX-PLIST is a lax property list, which is a list of the form \(PROP1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 VALUE1 PROP2 VALUE2...), where comparions between properties is done
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 using `equal' instead of `eq'. PROP is usually a symbol. The new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 plist is returned; use `(setq x (lax-plist-remprop x prop val))' to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 sure to use the new value. The LAX-PLIST is modified by side effects.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2345 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2346 (lax_plist, prop))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 external_remprop (&lax_plist, prop, 1, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 return lax_plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2352 DEFUN ("lax-plist-member", Flax_plist_member, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 Return t if PROP has a value specified in LAX-PLIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 LAX-PLIST is a lax property list, which is a list of the form \(PROP1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 VALUE1 PROP2 VALUE2...), where comparions between properties is done
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 using `equal' instead of `eq'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2357 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2358 (lax_plist, prop))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 return UNBOUNDP (Flax_plist_get (lax_plist, prop, Qunbound)) ? Qnil : Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2363 DEFUN ("canonicalize-lax-plist", Fcanonicalize_lax_plist, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 Destructively remove any duplicate entries from a lax plist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 In such cases, the first entry applies.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 If optional arg NIL-MEANS-NOT-PRESENT is non-nil, then a property with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 a nil value is removed. This feature is a virus that has infected
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2369 old Lisp implementations, but should not be used except for backward
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2370 compatibility.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 The new plist is returned. If NIL-MEANS-NOT-PRESENT is given, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 return value may not be EQ to the passed-in value, so make sure to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 `setq' the value back into where it came from.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2375 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2376 (lax_plist, nil_means_not_present))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 Lisp_Object head = lax_plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 Fcheck_valid_plist (lax_plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 while (!NILP (lax_plist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 Lisp_Object prop = Fcar (lax_plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 Lisp_Object next = Fcdr (lax_plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 CHECK_CONS (next); /* just make doubly sure we catch any errors */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 if (!NILP (nil_means_not_present) && NILP (Fcar (next)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 if (EQ (head, lax_plist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 head = Fcdr (next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 lax_plist = Fcdr (next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 /* external_remprop returns 1 if it removed any property.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 We have to loop till it didn't remove anything, in case
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 the property occurs many times. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 while (external_remprop (&XCDR (next), prop, 1, ERROR_ME));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 lax_plist = Fcdr (next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 return head;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 /* In C because the frame props stuff uses it */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2407 DEFUN ("destructive-alist-to-plist", Fdestructive_alist_to_plist, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 Convert association list ALIST into the equivalent property-list form.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 The plist is returned. This converts from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 \((a . 1) (b . 2) (c . 3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 \(a 1 b 2 c 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 The original alist is destroyed in the process of constructing the plist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 See also `alist-to-plist'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2419 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2420 (alist))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 Lisp_Object head = alist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 while (!NILP (alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 /* remember the alist element. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 Lisp_Object el = Fcar (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 Fsetcar (alist, Fcar (el));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 Fsetcar (el, Fcdr (el));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 Fsetcdr (el, Fcdr (alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 Fsetcdr (alist, el);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 alist = Fcdr (Fcdr (alist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 return head;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 /* Symbol plists are directly accessible, so we need to protect against
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 invalid property list structure */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 symbol_getprop (Lisp_Object sym, Lisp_Object propname, Lisp_Object defalt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 Lisp_Object val = external_plist_get (&XSYMBOL (sym)->plist, propname,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 0, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446 if (UNBOUNDP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 return defalt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 symbol_putprop (Lisp_Object sym, Lisp_Object propname, Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 external_plist_put (&XSYMBOL (sym)->plist, propname, value, 0, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 symbol_remprop (Lisp_Object symbol, Lisp_Object propname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 return external_remprop (&XSYMBOL (symbol)->plist, propname, 0, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 /* We store the string's extent info as the first element of the string's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 property list; and the string's MODIFF as the first or second element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 of the string's property list (depending on whether the extent info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 is present), but only if the string has been modified. This is ugly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 but it reduces the memory allocated for the string in the vast
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 majority of cases, where the string is never modified and has no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 extent info. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 static Lisp_Object *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 string_plist_ptr (struct Lisp_String *s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475 Lisp_Object *ptr = &s->plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477 if (CONSP (*ptr) && EXTENT_INFOP (XCAR (*ptr)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2478 ptr = &XCDR (*ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479 if (CONSP (*ptr) && INTP (XCAR (*ptr)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 ptr = &XCDR (*ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 return ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485 string_getprop (struct Lisp_String *s, Lisp_Object property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486 Lisp_Object defalt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 Lisp_Object val = external_plist_get (string_plist_ptr (s), property, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 if (UNBOUNDP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491 return defalt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 string_putprop (struct Lisp_String *s, Lisp_Object property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 external_plist_put (string_plist_ptr (s), property, value, 0, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 string_remprop (struct Lisp_String *s, Lisp_Object property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 return external_remprop (string_plist_ptr (s), property, 0, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 string_plist (struct Lisp_String *s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 return *string_plist_ptr (s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2514 DEFUN ("get", Fget, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 Return the value of OBJECT's PROPNAME property.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516 This is the last VALUE stored with `(put OBJECT PROPNAME VALUE)'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517 If there is no such property, return optional third arg DEFAULT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 (which defaults to `nil'). OBJECT can be a symbol, face, extent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 or string. See also `put', `remprop', and `object-plist'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2520 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2521 (object, propname, defalt)) /* Cant spel in C */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 /* Various places in emacs call Fget() and expect it not to quit,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526 so don't quit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 /* It's easiest to treat symbols specially because they may not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 be an lrecord */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 if (SYMBOLP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 val = symbol_getprop (object, propname, defalt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 else if (STRINGP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 val = string_getprop (XSTRING (object), propname, defalt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 else if (LRECORDP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536 CONST struct lrecord_implementation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 *imp = XRECORD_LHEADER (object)->implementation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 if (imp->getprop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 val = (imp->getprop) (object, propname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541 if (UNBOUNDP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 val = defalt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 goto noprops;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 noprops:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 signal_simple_error ("Object type has no properties", object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2556 DEFUN ("put", Fput, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557 Store OBJECT's PROPNAME property with value VALUE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558 It can be retrieved with `(get OBJECT PROPNAME)'. OBJECT can be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 symbol, face, extent, or string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561 For a string, no properties currently have predefined meanings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 For the predefined properties for extents, see `set-extent-property'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 For the predefined properties for faces, see `set-face-property'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 See also `get', `remprop', and `object-plist'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2566 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2567 (object, propname, value))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569 CHECK_SYMBOL (propname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 CHECK_IMPURE (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 if (SYMBOLP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2573 symbol_putprop (object, propname, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 else if (STRINGP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 string_putprop (XSTRING (object), propname, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2576 else if (LRECORDP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578 CONST struct lrecord_implementation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579 *imp = XRECORD_LHEADER (object)->implementation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 if (imp->putprop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582 if (! (imp->putprop) (object, propname, value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 signal_simple_error ("Can't set property on object", propname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 goto noprops;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 noprops:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 signal_simple_error ("Object type has no settable properties", object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 return value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 pure_put (Lisp_Object sym, Lisp_Object prop, Lisp_Object val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 Fput (sym, prop, Fpurecopy (val));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2603 DEFUN ("remprop", Fremprop, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 Remove from OBJECT's property list the property PROPNAME and its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 value. OBJECT can be a symbol, face, extent, or string. Returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 non-nil if the property list was actually changed (i.e. if PROPNAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 was present in the property list). See also `get', `put', and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608 `object-plist'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2609 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2610 (object, propname))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 int retval = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 CHECK_SYMBOL (propname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615 CHECK_IMPURE (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617 if (SYMBOLP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 retval = symbol_remprop (object, propname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 else if (STRINGP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 retval = string_remprop (XSTRING (object), propname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 else if (LRECORDP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 CONST struct lrecord_implementation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 *imp = XRECORD_LHEADER (object)->implementation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 if (imp->remprop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627 retval = (imp->remprop) (object, propname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 if (retval == -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 signal_simple_error ("Can't remove property from object",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630 propname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 goto noprops;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 noprops:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 signal_simple_error ("Object type has no removable properties", object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 return retval ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2644 DEFUN ("object-plist", Fobject_plist, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 Return a property list of OBJECT's props.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646 For a symbol this is equivalent to `symbol-plist'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 Do not modify the property list directly; this may or may not have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648 the desired effects. (In particular, for a property with a special
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 interpretation, this will probably have no effect at all.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2650 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2651 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653 if (SYMBOLP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 return Fsymbol_plist (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 else if (STRINGP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656 return string_plist (XSTRING (object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 else if (LRECORDP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 CONST struct lrecord_implementation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2660 *imp = XRECORD_LHEADER (object)->implementation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661 if (imp->plist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662 return (imp->plist) (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 signal_simple_error ("Object type has no properties", object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667 signal_simple_error ("Object type has no properties", object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 internal_equal (Lisp_Object o1, Lisp_Object o2, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676 if (depth > 200)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677 error ("Stack overflow in equal");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 do_cdr:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680 if (HACKEQ_UNSAFE (o1, o2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681 return (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 /* Note that (equal 20 20.0) should be nil */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683 else if (XTYPE (o1) != XTYPE (o2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684 return (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685 else if (CONSP (o1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687 if (!internal_equal (Fcar (o1), Fcar (o2), depth + 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 return (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 o1 = Fcdr (o1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690 o2 = Fcdr (o2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2691 goto do_cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2692 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 #ifndef LRECORD_VECTOR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 else if (VECTORP (o1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 int indecks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 int len = vector_length (XVECTOR (o1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699 if (len != vector_length (XVECTOR (o2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 return (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 for (indecks = 0; indecks < len; indecks++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703 Lisp_Object v1, v2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 v1 = vector_data (XVECTOR (o1)) [indecks];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705 v2 = vector_data (XVECTOR (o2)) [indecks];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 if (!internal_equal (v1, v2, depth + 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 return (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709 return (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 #endif /* !LRECORD_VECTOR */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 else if (STRINGP (o1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713 {
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
2714 Bytecount len = XSTRING_LENGTH (o1);
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
2715 if (len != XSTRING_LENGTH (o2))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 return (0);
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
2717 if (memcmp (XSTRING_DATA (o1), XSTRING_DATA (o2), len))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718 return (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719 return (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721 else if (LRECORDP (o1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 CONST struct lrecord_implementation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724 *imp1 = XRECORD_LHEADER (o1)->implementation,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725 *imp2 = XRECORD_LHEADER (o2)->implementation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 if (imp1 != imp2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727 return (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 else if (imp1->equal == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 /* EQ-ness of the objects was noticed above */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 return (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 return ((imp1->equal) (o1, o2, depth));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735 return (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2738 DEFUN ("equal", Fequal, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 T if two Lisp objects have similar structure and contents.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 They must have the same data type.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741 Conses are compared by comparing the cars and the cdrs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742 Vectors and strings are compared element by element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 Numbers are compared by value. Symbols must match exactly.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2744 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2745 (o1, o2))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 return ((internal_equal (o1, o2, 0)) ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2751 DEFUN ("fillarray", Ffillarray, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752 Store each element of ARRAY with ITEM.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753 ARRAY is a vector, bit vector, or string.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2754 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2755 (array, item))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757 retry:
10
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2758 if (STRINGP (array))
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2759 {
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2760 Charcount size;
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2761 Charcount i;
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2762 Emchar charval;
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2763 struct Lisp_String *s;
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2764 CHECK_CHAR_COERCE_INT (item);
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2765 CHECK_IMPURE (array);
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2766 charval = XCHAR (item);
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2767 s = XSTRING (array);
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2768 size = string_char_length (s);
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2769 for (i = 0; i < size; i++)
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2770 set_string_char (s, i, charval);
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2771 bump_string_modiff (array);
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2772 }
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2773 else if (VECTORP (array))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2775 Lisp_Object *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2776 int size;
10
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2777 int i;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2778 CHECK_IMPURE (array);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2779 size = vector_length (XVECTOR (array));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780 p = vector_data (XVECTOR (array));
10
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2781 for (i = 0; i < size; i++)
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2782 p[i] = item;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2783 }
10
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2784 else if (BIT_VECTORP (array))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2785 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786 struct Lisp_Bit_Vector *v;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787 int size;
10
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2788 int i;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 CHECK_BIT (item);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790 CHECK_IMPURE (array);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2791 v = XBIT_VECTOR (array);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2792 size = bit_vector_length (v);
10
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2793 for (i = 0; i < size; i++)
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 2
diff changeset
2794 set_bit_vector_bit (v, i, XINT (item));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2795 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2796 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798 array = wrong_type_argument (Qarrayp, array);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801 return array;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2803
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805 nconc2 (Lisp_Object s1, Lisp_Object s2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2806 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807 Lisp_Object args[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808 args[0] = s1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809 args[1] = s2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810 return Fnconc (2, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2811 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2812
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2813 DEFUN ("nconc", Fnconc, 0, MANY, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814 Concatenate any number of lists by altering them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815 Only the last argument is not altered, and need not be a list.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2816 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2817 (int nargs, Lisp_Object *args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 int argnum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820 Lisp_Object tail, tem, val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 /* The modus operandi in Emacs is "caller gc-protects args".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824 However, nconc (particularly nconc2 ()) is called many times
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 in Emacs on freshly created stuff (e.g. you see the idiom
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 nconc2 (Fcopy_sequence (foo), bar) a lot). So we help those
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827 callers out by protecting the args ourselves to save them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2828 a lot of temporary-variable grief. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2830 GCPRO1 (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2831 gcpro1.nvars = nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 val = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2835 for (argnum = 0; argnum < nargs; argnum++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2837 tem = args[argnum];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2838 if (NILP (tem)) continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2839
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2840 if (NILP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841 val = tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2843 if (argnum + 1 == nargs) break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2845 if (!CONSP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2846 tem = wrong_type_argument (Qlistp, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2847
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2848 while (CONSP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2849 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2850 tail = tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2851 tem = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2852 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2853 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2854
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2855 tem = args[argnum + 1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2856 Fsetcdr (tail, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2857 if (NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858 args[argnum + 1] = tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2861 RETURN_UNGCPRO (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2862 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2863
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865 /* This is the guts of all mapping functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2866 Apply fn to each element of seq, one by one,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2867 storing the results into elements of vals, a C vector of Lisp_Objects.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2868 leni is the length of vals, which should also be the length of seq.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2869
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2870 If VALS is a null pointer, do not accumulate the results. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2871
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2872 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2873 mapcar1 (int leni, Lisp_Object *vals, Lisp_Object fn, Lisp_Object seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2874 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2875 Lisp_Object tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2876 Lisp_Object dummy = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2877 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2878 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2879 Lisp_Object result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2881 GCPRO3 (dummy, fn, seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2882
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2883 if (vals)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2884 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2885 /* Don't let vals contain any garbage when GC happens. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2886 for (i = 0; i < leni; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2887 vals[i] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2888 gcpro1.var = vals;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2889 gcpro1.nvars = leni;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2890 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2891
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2892 /* We need not explicitly protect `tail' because it is used only on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2893 lists, and 1) lists are not relocated and 2) the list is marked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2894 via `seq' so will not be freed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2895
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2896 if (VECTORP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2897 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2898 for (i = 0; i < leni; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2899 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900 dummy = vector_data (XVECTOR (seq))[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2901 result = call1 (fn, dummy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2902 if (vals)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903 vals[i] = result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2905 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2906 else if (BIT_VECTORP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2907 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2908 struct Lisp_Bit_Vector *v = XBIT_VECTOR (seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909 for (i = 0; i < leni; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 XSETINT (dummy, bit_vector_bit (v, i));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912 result = call1 (fn, dummy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 if (vals)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914 vals[i] = result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2916 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2917 else if (STRINGP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2918 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2919 for (i = 0; i < leni; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 result = call1 (fn, make_char (string_char (XSTRING (seq), i)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922 if (vals)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2923 vals[i] = result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2924 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 else /* Must be a list, since Flength did not get an error */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2928 tail = seq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2929 for (i = 0; i < leni; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2930 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931 result = call1 (fn, Fcar (tail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932 if (vals)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933 vals[i] = result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2934 tail = Fcdr (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2938 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2939 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2940
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2941 DEFUN ("mapconcat", Fmapconcat, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2942 Apply FN to each element of SEQ, and concat the results as strings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2943 In between each pair of results, stick in SEP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944 Thus, \" \" as SEP results in spaces between the values returned by FN.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2945 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2946 (fn, seq, sep))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2947 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2948 int len = XINT (Flength (seq));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2950 Lisp_Object *args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2951 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2952 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2953
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2954 nargs = len + len - 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2955 if (nargs < 0) return build_string ("");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2957 args = (Lisp_Object *) alloca (nargs * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959 GCPRO1 (sep);
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2960 mapcar1 (len, args, fn, seq);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2963 for (i = len - 1; i >= 0; i--)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 args[i + i] = args[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966 for (i = 1; i < nargs; i += 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967 args[i] = sep;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969 return Fconcat (nargs, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2971
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2972 DEFUN ("mapcar", Fmapcar, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973 Apply FUNCTION to each element of SEQUENCE, and make a list of the results.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974 The result is a list just as long as SEQUENCE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 SEQUENCE may be a list, a vector, a bit vector, or a string.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2976 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2977 (fn, seq))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2979 int len = XINT (Flength (seq));
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2980 Lisp_Object *args = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2981
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2982 mapcar1 (len, args, fn, seq);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2983
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2984 return Flist (len, args);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2985 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2986
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2987 DEFUN ("mapc-internal", Fmapc_internal, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 Apply FUNCTION to each element of SEQUENCE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989 SEQUENCE may be a list, a vector, a bit vector, or a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 This function is like `mapcar' but does not accumulate the results,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991 which is more efficient if you do not use the results.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2992 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2993 (fn, seq))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2994 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
2995 mapcar1 (XINT (Flength (seq)), 0, fn, seq);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2997 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2998 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3001 /* #### this function doesn't belong in this file! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3002
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3003 DEFUN ("load-average", Fload_average, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3004 Return list of 1 minute, 5 minute and 15 minute load averages.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3005 Each of the three load averages is multiplied by 100,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3006 then converted to integer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3007
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3008 If the 5-minute or 15-minute load averages are not available, return a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3009 shortened list, containing only those averages which are available.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3010
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3011 On most systems, this won't work unless the emacs executable is installed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3012 as setgid kmem (assuming that /dev/kmem is in the group kmem).
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3013 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3014 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3015 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3016 double load_ave[10]; /* hey, just in case */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3017 int loads = getloadavg (load_ave, 3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3018 Lisp_Object ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3019
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3020 if (loads == -2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3021 error ("load-average not implemented for this operating system.");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3022 else if (loads < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3023 error ("could not get load-average; check permissions.");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3024
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3025 ret = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3026 while (loads > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027 ret = Fcons (make_int ((int) (load_ave[--loads] * 100.0)), ret);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029 return ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3030 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3031
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3032
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3033 Lisp_Object Vfeatures;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3034
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3035 DEFUN ("featurep", Ffeaturep, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3036 Return t if FEATURE is present in this Emacs.
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3037 Use this to conditionalize execution of lisp code based on the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3038 presence or absence of emacs or environment extensions.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3039 Use `provide' to declare that a feature is available.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040 This function looks at the value of the variable `features'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3041 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3042 (feature))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3043 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3044 CHECK_SYMBOL (feature);
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
3045 return NILP (Fmemq (feature, Vfeatures)) ? Qnil : Qt;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3046 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3047
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3048 DEFUN ("provide", Fprovide, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3049 Announce that FEATURE is a feature of the current Emacs.
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3050 This function updates the value of the variable `features'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3051 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3052 (feature))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3053 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3054 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3055 CHECK_SYMBOL (feature);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3056 if (!NILP (Vautoload_queue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3057 Vautoload_queue = Fcons (Fcons (Vfeatures, Qnil), Vautoload_queue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3058 tem = Fmemq (feature, Vfeatures);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3059 if (NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3060 Vfeatures = Fcons (feature, Vfeatures);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3061 LOADHIST_ATTACH (Fcons (Qprovide, feature));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3062 return feature;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3063 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3064
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3065 DEFUN ("require", Frequire, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3066 If feature FEATURE is not loaded, load it from FILENAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3067 If FEATURE is not a member of the list `features', then the feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3068 is not loaded; so load the file FILENAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3069 If FILENAME is omitted, the printname of FEATURE is used as the file name.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3070 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3071 (feature, file_name))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3072 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3073 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3074 CHECK_SYMBOL (feature);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3075 tem = Fmemq (feature, Vfeatures);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3076 LOADHIST_ATTACH (Fcons (Qrequire, feature));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3077 if (!NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3078 return (feature);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3079 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3080 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3081 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3082
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3083 /* Value saved here is to be restored into Vautoload_queue */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3084 record_unwind_protect (un_autoload, Vautoload_queue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3085 Vautoload_queue = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3086
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3087 call4 (Qload, NILP (file_name) ? Fsymbol_name (feature) : file_name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3088 Qnil, Qt, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3089
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3090 tem = Fmemq (feature, Vfeatures);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3091 if (NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3092 error ("Required feature %s was not provided",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3093 string_data (XSYMBOL (feature)->name));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3094
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3095 /* Once loading finishes, don't undo it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3096 Vautoload_queue = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3097 return (unbind_to (speccount, feature));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3098 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3099 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3102 Lisp_Object Qyes_or_no_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3104 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3105 syms_of_fns (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3106 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3107 defsymbol (&Qstring_lessp, "string-lessp");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3108 defsymbol (&Qidentity, "identity");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3109 defsymbol (&Qyes_or_no_p, "yes-or-no-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3110
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3111 DEFSUBR (Fidentity);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3112 DEFSUBR (Frandom);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3113 DEFSUBR (Flength);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3114 DEFSUBR (Fsafe_length);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3115 DEFSUBR (Fstring_equal);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3116 DEFSUBR (Fstring_lessp);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3117 DEFSUBR (Fstring_modified_tick);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3118 DEFSUBR (Fappend);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3119 DEFSUBR (Fconcat);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3120 DEFSUBR (Fvconcat);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3121 DEFSUBR (Fbvconcat);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3122 DEFSUBR (Fcopy_sequence);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3123 DEFSUBR (Fcopy_alist);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3124 DEFSUBR (Fcopy_tree);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3125 DEFSUBR (Fsubstring);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3126 DEFSUBR (Fsubseq);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3127 DEFSUBR (Fnthcdr);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3128 DEFSUBR (Fnth);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3129 DEFSUBR (Felt);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3130 DEFSUBR (Fmember);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3131 DEFSUBR (Fmemq);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3132 DEFSUBR (Fassoc);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3133 DEFSUBR (Fassq);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3134 DEFSUBR (Frassoc);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3135 DEFSUBR (Frassq);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3136 DEFSUBR (Fdelete);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3137 DEFSUBR (Fdelq);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3138 DEFSUBR (Fremassoc);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3139 DEFSUBR (Fremassq);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3140 DEFSUBR (Fremrassoc);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3141 DEFSUBR (Fremrassq);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3142 DEFSUBR (Fnreverse);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3143 DEFSUBR (Freverse);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3144 DEFSUBR (Fsort);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3145 DEFSUBR (Fplists_eq);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3146 DEFSUBR (Fplists_equal);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3147 DEFSUBR (Flax_plists_eq);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3148 DEFSUBR (Flax_plists_equal);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3149 DEFSUBR (Fplist_get);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3150 DEFSUBR (Fplist_put);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3151 DEFSUBR (Fplist_remprop);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3152 DEFSUBR (Fplist_member);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3153 DEFSUBR (Fcheck_valid_plist);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3154 DEFSUBR (Fvalid_plist_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3155 DEFSUBR (Fcanonicalize_plist);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3156 DEFSUBR (Flax_plist_get);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3157 DEFSUBR (Flax_plist_put);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3158 DEFSUBR (Flax_plist_remprop);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3159 DEFSUBR (Flax_plist_member);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3160 DEFSUBR (Fcanonicalize_lax_plist);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3161 DEFSUBR (Fdestructive_alist_to_plist);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3162 DEFSUBR (Fget);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3163 DEFSUBR (Fput);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3164 DEFSUBR (Fremprop);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3165 DEFSUBR (Fobject_plist);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3166 DEFSUBR (Fequal);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3167 DEFSUBR (Ffillarray);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3168 DEFSUBR (Fnconc);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3169 DEFSUBR (Fmapcar);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3170 DEFSUBR (Fmapc_internal);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3171 DEFSUBR (Fmapconcat);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3172 DEFSUBR (Fload_average);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3173 DEFSUBR (Ffeaturep);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3174 DEFSUBR (Frequire);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3175 DEFSUBR (Fprovide);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3176 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3178 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3179 init_provide_once (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3180 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3181 DEFVAR_LISP ("features", &Vfeatures /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3182 A list of symbols which are the features of the executing emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3183 Used by `featurep' and `require', and altered by `provide'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3184 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3185 Vfeatures = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3186 }