Mercurial > hg > xemacs-beta
annotate lisp/cl-macs.el @ 5402:308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
author | Mats Lidell <matsl@xemacs.org> |
---|---|
date | Thu, 14 Oct 2010 17:15:20 +0200 |
parents | 90a0084b3541 |
children | b9167d522a9a |
rev | line source |
---|---|
613 | 1 ;;; cl-macs.el --- Common Lisp extensions for XEmacs Lisp (part four) |
428 | 2 |
2153 | 3 ;; Copyright (C) 1993, 2003, 2004 Free Software Foundation, Inc. |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
4 ;; Copyright (C) 2002, 2010 Ben Wing. |
428 | 5 |
6 ;; Author: Dave Gillespie <daveg@synaptics.com> | |
7 ;; Version: 2.02 | |
8 ;; Keywords: extensions | |
9 | |
10 ;; This file is part of XEmacs. | |
11 | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
12 ;; XEmacs is free software: you can redistribute it and/or modify it |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
13 ;; under the terms of the GNU General Public License as published by the |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
14 ;; Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
15 ;; option) any later version. |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
16 |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
17 ;; XEmacs is distributed in the hope that it will be useful, but WITHOUT |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
18 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
19 ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
20 ;; for more details. |
428 | 21 |
22 ;; You should have received a copy of the GNU General Public License | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
23 ;; along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |
428 | 24 |
2153 | 25 ;;; Synched up with: FSF 21.3. |
428 | 26 |
27 ;;; Commentary: | |
28 | |
29 ;; These are extensions to Emacs Lisp that provide a degree of | |
30 ;; Common Lisp compatibility, beyond what is already built-in | |
31 ;; in Emacs Lisp. | |
32 ;; | |
33 ;; This package was written by Dave Gillespie; it is a complete | |
34 ;; rewrite of Cesar Quiroz's original cl.el package of December 1986. | |
35 ;; | |
36 ;; Bug reports, comments, and suggestions are welcome! | |
37 | |
38 ;; This file contains the portions of the Common Lisp extensions | |
39 ;; package which should be autoloaded, but need only be present | |
40 ;; if the compiler or interpreter is used---this file is not | |
41 ;; necessary for executing compiled code. | |
42 | |
43 ;; See cl.el for Change Log. | |
44 | |
45 | |
46 ;;; Code: | |
47 | |
48 (or (memq 'cl-19 features) | |
49 (error "Tried to load `cl-macs' before `cl'!")) | |
50 | |
51 | |
52 (defmacro cl-pop2 (place) | |
53 (list 'prog1 (list 'car (list 'cdr place)) | |
54 (list 'setq place (list 'cdr (list 'cdr place))))) | |
55 (put 'cl-pop2 'edebug-form-spec 'edebug-sexps) | |
56 | |
57 (defvar cl-optimize-safety) | |
58 (defvar cl-optimize-speed) | |
59 | |
60 | |
61 ;;; This kludge allows macros which use cl-transform-function-property | |
62 ;;; to be called at compile-time. | |
63 | |
64 (require | |
65 (progn | |
66 (or (fboundp 'cl-transform-function-property) | |
67 (defalias 'cl-transform-function-property | |
68 #'(lambda (n p f) | |
69 (list 'put (list 'quote n) (list 'quote p) | |
70 (list 'function (cons 'lambda f)))))) | |
442 | 71 'xemacs)) |
428 | 72 |
73 | |
74 ;;; Initialization. | |
75 | |
76 (defvar cl-old-bc-file-form nil) | |
77 | |
78 ;;;###autoload | |
79 (defun cl-compile-time-init () | |
80 (run-hooks 'cl-hack-bytecomp-hook)) | |
81 | |
82 | |
2153 | 83 ;;; Some predicates for analyzing Lisp forms. These are used by various |
84 ;;; macro expanders to optimize the results in certain common cases. | |
85 | |
86 (defconst cl-simple-funcs '(car cdr nth aref elt if and or + - 1+ 1- min max | |
87 car-safe cdr-safe progn prog1 prog2)) | |
88 (defconst cl-safe-funcs '(* / % length memq list vector vectorp | |
89 < > <= >= = error)) | |
90 | |
91 ;;; Check if no side effects, and executes quickly. | |
92 (defun cl-simple-expr-p (x &optional size) | |
93 (or size (setq size 10)) | |
94 (if (and (consp x) (not (memq (car x) '(quote function function*)))) | |
95 (and (symbolp (car x)) | |
96 (or (memq (car x) cl-simple-funcs) | |
97 (get (car x) 'side-effect-free)) | |
98 (progn | |
99 (setq size (1- size)) | |
100 (while (and (setq x (cdr x)) | |
101 (setq size (cl-simple-expr-p (car x) size)))) | |
102 (and (null x) (>= size 0) size))) | |
103 (and (> size 0) (1- size)))) | |
104 | |
105 (defun cl-simple-exprs-p (xs) | |
106 (while (and xs (cl-simple-expr-p (car xs))) | |
107 (setq xs (cdr xs))) | |
108 (not xs)) | |
109 | |
110 ;;; Check if no side effects. | |
111 (defun cl-safe-expr-p (x) | |
112 (or (not (and (consp x) (not (memq (car x) '(quote function function*))))) | |
113 (and (symbolp (car x)) | |
114 (or (memq (car x) cl-simple-funcs) | |
115 (memq (car x) cl-safe-funcs) | |
116 (get (car x) 'side-effect-free)) | |
117 (progn | |
118 (while (and (setq x (cdr x)) (cl-safe-expr-p (car x)))) | |
119 (null x))))) | |
120 | |
121 ;;; Check if constant (i.e., no side effects or dependencies). | |
122 (defun cl-const-expr-p (x) | |
123 (cond ((consp x) | |
124 (or (eq (car x) 'quote) | |
125 (and (memq (car x) '(function function*)) | |
126 (or (symbolp (nth 1 x)) | |
127 (and (eq (car-safe (nth 1 x)) 'lambda) 'func))))) | |
128 ((symbolp x) (and (memq x '(nil t)) t)) | |
129 (t t))) | |
130 | |
131 (defun cl-const-exprs-p (xs) | |
132 (while (and xs (cl-const-expr-p (car xs))) | |
133 (setq xs (cdr xs))) | |
134 (not xs)) | |
135 | |
136 (defun cl-const-expr-val (x) | |
137 (and (eq (cl-const-expr-p x) t) (if (consp x) (nth 1 x) x))) | |
138 | |
139 (defun cl-expr-access-order (x v) | |
140 (if (cl-const-expr-p x) v | |
141 (if (consp x) | |
142 (progn | |
143 (while (setq x (cdr x)) (setq v (cl-expr-access-order (car x) v))) | |
144 v) | |
145 (if (eq x (car v)) (cdr v) '(t))))) | |
146 | |
147 ;;; Count number of times X refers to Y. Return nil for 0 times. | |
148 (defun cl-expr-contains (x y) | |
149 (cond ((equal y x) 1) | |
150 ((and (consp x) (not (memq (car-safe x) '(quote function function*)))) | |
151 (let ((sum 0)) | |
152 (while x | |
153 (setq sum (+ sum (or (cl-expr-contains (pop x) y) 0)))) | |
154 (and (> sum 0) sum))) | |
155 (t nil))) | |
156 | |
157 (defun cl-expr-contains-any (x y) | |
158 (while (and y (not (cl-expr-contains x (car y)))) (pop y)) | |
159 y) | |
160 | |
161 ;;; Check whether X may depend on any of the symbols in Y. | |
162 (defun cl-expr-depends-p (x y) | |
163 (and (not (cl-const-expr-p x)) | |
164 (or (not (cl-safe-expr-p x)) (cl-expr-contains-any x y)))) | |
165 | |
166 ;;; Symbols. | |
167 | |
168 (defvar *gensym-counter*) | |
169 | |
170 ;; XEmacs change: gensym and gentemp have been moved to cl.el. | |
171 | |
172 | |
428 | 173 ;;; Program structure. |
174 | |
175 ;;;###autoload | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
176 (defmacro defun* (name arglist &optional docstring &rest body) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
177 "Define NAME as a function. |
428 | 178 Like normal `defun', except ARGLIST allows full Common Lisp conventions, |
872 | 179 and BODY is implicitly surrounded by (block NAME ...). |
180 | |
181 \"Full Common Lisp conventions\" means that: | |
182 | |
183 -- In addition to &optional and &rest, the lambda-list keywords &key, | |
184 &allow-other-keys, and &aux are allowed. | |
185 | |
186 -- The format of the arguments to &optional is expanded: As well as simple | |
187 variables, they can be lists of the form (VAR [INITFORM [SVAR]]); when | |
188 no argument is available for VAR, INITFORM is evaluated (or nil, if | |
189 INITFORM is omitted) and stored as VAR's value, and SVAR is bound to t. | |
190 If an arguent is available for VAR, and INITFORM is unused, SVAR is | |
191 bound to nil. | |
192 | |
193 -- &key specifies keyword arguments. The format of each argument is | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
194 VAR || ( { VAR || (KEYWORD VAR) } [INITFORM [SVAR]]). |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
195 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
196 If VAR is specified on its own, VAR is bound within BODY to the value |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
197 supplied by the caller for the corresponding keyword; for example, &key |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
198 my-value means callers write :my-value RUNTIME-EXPRESSION. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
199 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
200 If (VAR INITFORM) is specified, INITFORM is an expression evaluated at |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
201 runtime to determine a default value for VAR. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
202 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
203 If (VAR INITFORM SVAR) is specified, SVAR is variable available within |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
204 BODY that is non-nil if VAR was explicitly specified in the calling |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
205 expression. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
206 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
207 If ((KEYWORD VAR)) is specified, KEYWORD is the keyword to be used by |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
208 callers, and VAR is the corresponding variable binding within BODY. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
209 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
210 In calls to NAME, values for a given keyword may be supplied multiple |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
211 times. The first value is the only one used. |
872 | 212 |
213 -- &allow-other-keys means that if other keyword arguments are given that are | |
214 not specifically list in the arg list, they are allowed, rather than an | |
215 error being signalled. They can be retrieved with an &rest form. | |
216 | |
217 -- &aux specifies extra bindings, exactly like a `let*' enclosing the body. | |
218 The format of each binding is VAR || (VAR [INITFORM]) -- exactly like the | |
219 format of `let'/`let*' bindings. | |
220 " | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
221 (let* ((res (cl-transform-lambda (list* arglist docstring body) name)) |
428 | 222 (form (list* 'defun name (cdr res)))) |
223 (if (car res) (list 'progn (car res) form) form))) | |
224 | |
225 ;;;###autoload | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
226 (defmacro defmacro* (name arglist &optional docstring &rest body) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
227 "Define NAME as a macro. |
428 | 228 Like normal `defmacro', except ARGLIST allows full Common Lisp conventions, |
872 | 229 and BODY is implicitly surrounded by (block NAME ...). |
230 | |
231 \"Full Common Lisp conventions\" means that: | |
232 | |
233 -- The lambda-list keywords &optional, &rest, &key, &allow-other-keys, and | |
234 &aux are allowed, as in `defun*'. | |
235 | |
236 -- Three additional lambda-list keywords are allowed: &body, &whole, and | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
237 &environment: |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
238 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
239 &body is equivalent to &rest, but is intended to indicate that the |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
240 following arguments are the body of some piece of code, and should be |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
241 indented as such. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
242 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
243 &whole must come first; it is followed by a single variable that, at |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
244 macro expansion time, reflects all the arguments supplied to the macro, |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
245 as if it had been declared with a single &rest argument. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
246 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
247 &environment specifies local semantics for various macros for use within |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
248 the expansion of BODY. See the ENVIRONMENT argument to `macroexpand'. |
872 | 249 |
250 -- The macro arg list syntax allows for \"destructuring\" -- see also | |
251 `destructuring-bind', which destructures exactly like `defmacro*', and | |
252 `loop', which does a rather different way of destructuring. Anywhere | |
253 that a simple argument may appear, and (if following a lambda-list | |
254 keyword) a list may not normally appear, an embedded lambda list can be | |
255 substituted. (The format of the embedded lambda list is exactly the | |
256 same as for a top-level list except that &environment is not allowed.) | |
257 When matching this lambda list against a caller-specified argument, that | |
258 argument is treated as a list and normal lambda-list processing occurs, | |
259 just as if the entire operation were happening at top level. | |
260 Furthermore, any lambda list, embedded or top-level, can be dotted at its | |
261 end, and this will cause matching with an appropriate dotted list given | |
262 as an argument. | |
263 | |
264 See `loop' for practical examples of destructuring, but | |
265 keep in mind that `loop' destructuring is somewhat different from macro | |
266 destructuring in that | |
267 | |
268 (a) Macro destructuring has extra features in the various lambda-list | |
269 keywords, allowing for special processing of a list other than just | |
270 simple matching. | |
271 (b) Macro destructuring is strict, in that an error is signalled if the | |
272 actual structure does not match the expected structure. On the | |
273 other hand, loop destructuring is lax -- extra arguments in a list | |
274 are ignored, not enough arguments cause the remaining parameters to | |
275 receive a value of nil, etc. | |
276 " | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
277 (let* ((res (cl-transform-lambda (list* arglist docstring body) name)) |
428 | 278 (form (list* 'defmacro name (cdr res)))) |
279 (if (car res) (list 'progn (car res) form) form))) | |
280 | |
281 ;;;###autoload | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
282 (defmacro function* (symbol-or-lambda) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
283 "Introduce a function. |
428 | 284 Like normal `function', except that if argument is a lambda form, its |
285 ARGLIST allows full Common Lisp conventions." | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
286 (if (eq (car-safe symbol-or-lambda) 'lambda) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
287 (let* ((res (cl-transform-lambda (cdr symbol-or-lambda) 'cl-none)) |
428 | 288 (form (list 'function (cons 'lambda (cdr res))))) |
289 (if (car res) (list 'progn (car res) form) form)) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
290 (list 'function symbol-or-lambda))) |
428 | 291 |
292 (defun cl-transform-function-property (func prop form) | |
293 (let ((res (cl-transform-lambda form func))) | |
294 (append '(progn) (cdr (cdr (car res))) | |
295 (list (list 'put (list 'quote func) (list 'quote prop) | |
296 (list 'function (cons 'lambda (cdr res)))))))) | |
297 | |
298 (defconst lambda-list-keywords | |
299 '(&optional &rest &key &allow-other-keys &aux &whole &body &environment)) | |
300 | |
301 (defvar cl-macro-environment nil) | |
302 (defvar bind-block) (defvar bind-defs) (defvar bind-enquote) | |
303 (defvar bind-inits) (defvar bind-lets) (defvar bind-forms) | |
304 | |
452 | 305 ;; npak@ispras.ru |
306 (defun cl-upcase-arg (arg) | |
1580 | 307 ;; Changes all non-keyword symbols in `ARG' to symbols |
452 | 308 ;; with name in upper case. |
1580 | 309 ;; ARG is either symbol or list of symbols or lists |
452 | 310 (cond ((symbolp arg) |
1580 | 311 ;; Do not upcase &optional, &key etc. |
4694
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
312 (if (memq arg lambda-list-keywords) |
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
313 arg |
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
314 (make-symbol (upcase (symbol-name arg))))) |
1580 | 315 ((listp arg) |
316 (let ((arg (copy-list arg)) junk) | |
317 ;; Clean the list | |
318 (let ((p (last arg))) (if (cdr p) (setcdr p (list '&rest (cdr p))))) | |
319 (if (setq junk (cadr (memq '&cl-defs arg))) | |
320 (setq arg (delq '&cl-defs (delq junk arg)))) | |
321 (if (memq '&cl-quote arg) | |
322 (setq arg (delq '&cl-quote arg))) | |
323 (mapcar 'cl-upcase-arg arg))) | |
324 (t arg))) ; Maybe we are in initializer | |
452 | 325 |
5076
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
326 ;; npak@ispras.ru, modified by ben@666.com |
4702
eb1a409c317b
Unbreak autoload.el
Mike Sperber <sperber@deinprogramm.de>
parents:
4695
diff
changeset
|
327 ;;;###autoload |
5076
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
328 (defun cl-function-arglist (arglist) |
452 | 329 "Returns string with printed representation of arguments list. |
330 Supports Common Lisp lambda lists." | |
1580 | 331 (if (not (or (listp arglist) (symbolp arglist))) |
332 "Not available" | |
4694
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
333 (check-argument-type #'true-list-p arglist) |
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
334 (let ((print-gensym nil)) |
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
335 (condition-case nil |
5076
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
336 (let ((args (cond ((null arglist) nil) |
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
337 ((listp arglist) (cl-upcase-arg arglist)) |
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
338 ((symbolp arglist) |
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
339 (cl-upcase-arg (list '&rest arglist))) |
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
340 (t (wrong-type-argument 'listp arglist))))) |
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
341 (if args (prin1-to-string args) "()")) |
5070
b0f4adffca7d
fix so that CL docstrings (with &key, etc.) handled properly
Ben Wing <ben@xemacs.org>
parents:
4997
diff
changeset
|
342 (t "Not available"))))) |
452 | 343 |
428 | 344 (defun cl-transform-lambda (form bind-block) |
345 (let* ((args (car form)) (body (cdr form)) | |
346 (bind-defs nil) (bind-enquote nil) | |
347 (bind-inits nil) (bind-lets nil) (bind-forms nil) | |
452 | 348 (header nil) (simple-args nil) |
5076
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
349 (complex-arglist (cl-function-arglist args)) |
452 | 350 (doc "")) |
428 | 351 (while (or (stringp (car body)) (eq (car-safe (car body)) 'interactive)) |
2153 | 352 (push (pop body) header)) |
428 | 353 (setq args (if (listp args) (copy-list args) (list '&rest args))) |
354 (let ((p (last args))) (if (cdr p) (setcdr p (list '&rest (cdr p))))) | |
355 (if (setq bind-defs (cadr (memq '&cl-defs args))) | |
356 (setq args (delq '&cl-defs (delq bind-defs args)) | |
357 bind-defs (cadr bind-defs))) | |
358 (if (setq bind-enquote (memq '&cl-quote args)) | |
359 (setq args (delq '&cl-quote args))) | |
360 (if (memq '&whole args) (error "&whole not currently implemented")) | |
361 (let* ((p (memq '&environment args)) (v (cadr p))) | |
362 (if p (setq args (nconc (delq (car p) (delq v args)) | |
363 (list '&aux (list v 'cl-macro-environment)))))) | |
364 (while (and args (symbolp (car args)) | |
365 (not (memq (car args) '(nil &rest &body &key &aux))) | |
366 (not (and (eq (car args) '&optional) | |
367 (or bind-defs (consp (cadr args)))))) | |
2153 | 368 (push (pop args) simple-args)) |
428 | 369 (or (eq bind-block 'cl-none) |
370 (setq body (list (list* 'block bind-block body)))) | |
4694
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
371 (setq simple-args (nreverse simple-args) |
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
372 header (nreverse header)) |
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
373 ;; Add CL lambda list to documentation, if the CL lambda list differs |
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
374 ;; from the non-CL lambda list. npak@ispras.ru |
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
375 (unless (equal complex-arglist |
5076
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
376 (cl-function-arglist simple-args)) |
4694
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
377 (and (stringp (car header)) (setq doc (pop header))) |
5070
b0f4adffca7d
fix so that CL docstrings (with &key, etc.) handled properly
Ben Wing <ben@xemacs.org>
parents:
4997
diff
changeset
|
378 ;; Stick the arguments onto the end of the doc string in a way that |
b0f4adffca7d
fix so that CL docstrings (with &key, etc.) handled properly
Ben Wing <ben@xemacs.org>
parents:
4997
diff
changeset
|
379 ;; will be recognized specially by `function-arglist'. |
b0f4adffca7d
fix so that CL docstrings (with &key, etc.) handled properly
Ben Wing <ben@xemacs.org>
parents:
4997
diff
changeset
|
380 (push (concat doc "\n\narguments: " complex-arglist "\n") |
b0f4adffca7d
fix so that CL docstrings (with &key, etc.) handled properly
Ben Wing <ben@xemacs.org>
parents:
4997
diff
changeset
|
381 header)) |
428 | 382 (if (null args) |
4694
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
383 (list* nil simple-args (nconc header body)) |
2153 | 384 (if (memq '&optional simple-args) (push '&optional args)) |
428 | 385 (cl-do-arglist args nil (- (length simple-args) |
386 (if (memq '&optional simple-args) 1 0))) | |
387 (setq bind-lets (nreverse bind-lets)) | |
388 (list* (and bind-inits (list* 'eval-when '(compile load eval) | |
389 (nreverse bind-inits))) | |
4694
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
390 (nconc simple-args |
2153 | 391 (list '&rest (car (pop bind-lets)))) |
392 ;; XEmacs change: we add usage information using Nickolay's | |
393 ;; approach above | |
4694
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
394 (nconc header |
428 | 395 (list (nconc (list 'let* bind-lets) |
396 (nreverse bind-forms) body))))))) | |
397 | |
398 (defun cl-do-arglist (args expr &optional num) ; uses bind-* | |
399 (if (nlistp args) | |
400 (if (or (memq args lambda-list-keywords) (not (symbolp args))) | |
401 (error "Invalid argument name: %s" args) | |
2153 | 402 (push (list args expr) bind-lets)) |
428 | 403 (setq args (copy-list args)) |
404 (let ((p (last args))) (if (cdr p) (setcdr p (list '&rest (cdr p))))) | |
405 (let ((p (memq '&body args))) (if p (setcar p '&rest))) | |
406 (if (memq '&environment args) (error "&environment used incorrectly")) | |
407 (let ((save-args args) | |
408 (restarg (memq '&rest args)) | |
409 (safety (if (cl-compiling-file) cl-optimize-safety 3)) | |
410 (keys nil) | |
411 (laterarg nil) (exactarg nil) minarg) | |
412 (or num (setq num 0)) | |
413 (if (listp (cadr restarg)) | |
414 (setq restarg (gensym "--rest--")) | |
415 (setq restarg (cadr restarg))) | |
2153 | 416 (push (list restarg expr) bind-lets) |
428 | 417 (if (eq (car args) '&whole) |
2153 | 418 (push (list (cl-pop2 args) restarg) bind-lets)) |
428 | 419 (let ((p args)) |
420 (setq minarg restarg) | |
421 (while (and p (not (memq (car p) lambda-list-keywords))) | |
422 (or (eq p args) (setq minarg (list 'cdr minarg))) | |
423 (setq p (cdr p))) | |
424 (if (memq (car p) '(nil &aux)) | |
425 (setq minarg (list '= (list 'length restarg) | |
426 (length (ldiff args p))) | |
427 exactarg (not (eq args p))))) | |
428 (while (and args (not (memq (car args) lambda-list-keywords))) | |
429 (let ((poparg (list (if (or (cdr args) (not exactarg)) 'pop 'car) | |
430 restarg))) | |
431 (cl-do-arglist | |
2153 | 432 (pop args) |
428 | 433 (if (or laterarg (= safety 0)) poparg |
434 (list 'if minarg poparg | |
435 (list 'signal '(quote wrong-number-of-arguments) | |
436 (list 'list (and (not (eq bind-block 'cl-none)) | |
437 (list 'quote bind-block)) | |
438 (list 'length restarg))))))) | |
439 (setq num (1+ num) laterarg t)) | |
2153 | 440 (while (and (eq (car args) '&optional) (pop args)) |
428 | 441 (while (and args (not (memq (car args) lambda-list-keywords))) |
2153 | 442 (let ((arg (pop args))) |
428 | 443 (or (consp arg) (setq arg (list arg))) |
444 (if (cddr arg) (cl-do-arglist (nth 2 arg) (list 'and restarg t))) | |
445 (let ((def (if (cdr arg) (nth 1 arg) | |
446 (or (car bind-defs) | |
447 (nth 1 (assq (car arg) bind-defs))))) | |
448 (poparg (list 'pop restarg))) | |
449 (and def bind-enquote (setq def (list 'quote def))) | |
450 (cl-do-arglist (car arg) | |
451 (if def (list 'if restarg poparg def) poparg)) | |
452 (setq num (1+ num)))))) | |
453 (if (eq (car args) '&rest) | |
454 (let ((arg (cl-pop2 args))) | |
455 (if (consp arg) (cl-do-arglist arg restarg))) | |
456 (or (eq (car args) '&key) (= safety 0) exactarg | |
2153 | 457 (push (list 'if restarg |
428 | 458 (list 'signal '(quote wrong-number-of-arguments) |
459 (list 'list | |
460 (and (not (eq bind-block 'cl-none)) | |
461 (list 'quote bind-block)) | |
462 (list '+ num (list 'length restarg))))) | |
463 bind-forms))) | |
2153 | 464 (while (and (eq (car args) '&key) (pop args)) |
428 | 465 (while (and args (not (memq (car args) lambda-list-keywords))) |
2153 | 466 (let ((arg (pop args))) |
428 | 467 (or (consp arg) (setq arg (list arg))) |
4793
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
468 (let* ((karg (if (consp (car arg)) |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
469 ;; It's possible to use non-keywords here, as |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
470 ;; in the KEYWORD-ARGUMENT-NAME-PACKAGE Common |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
471 ;; Lisp issue: |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
472 (caar arg) |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
473 ;; Use read instead of intern in case we ever |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
474 ;; actually get packages and keywords are no |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
475 ;; longer in obarray: |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
476 (read (concat ":" (symbol-name (car arg)))))) |
428 | 477 (varg (if (consp (car arg)) (cadar arg) (car arg))) |
478 (def (if (cdr arg) (cadr arg) | |
479 (or (car bind-defs) (cadr (assq varg bind-defs))))) | |
4793
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
480 (look (list 'memq (quote-maybe karg) restarg))) |
428 | 481 (and def bind-enquote (setq def (list 'quote def))) |
482 (if (cddr arg) | |
483 (let* ((temp (or (nth 2 arg) (gensym))) | |
484 (val (list 'car (list 'cdr temp)))) | |
485 (cl-do-arglist temp look) | |
486 (cl-do-arglist varg | |
487 (list 'if temp | |
488 (list 'prog1 val (list 'setq temp t)) | |
489 def))) | |
490 (cl-do-arglist | |
491 varg | |
492 (list 'car | |
493 (list 'cdr | |
494 (if (null def) | |
495 look | |
496 (list 'or look | |
497 (if (eq (cl-const-expr-p def) t) | |
498 (list | |
499 'quote | |
500 (list nil (cl-const-expr-val def))) | |
501 (list 'list nil def)))))))) | |
4793
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
502 (push karg keys))))) |
428 | 503 (setq keys (nreverse keys)) |
2153 | 504 (or (and (eq (car args) '&allow-other-keys) (pop args)) |
428 | 505 (null keys) (= safety 0) |
506 (let* ((var (gensym "--keys--")) | |
507 (allow '(:allow-other-keys)) | |
508 (check (list | |
509 'while var | |
510 (list | |
511 'cond | |
512 (list (list 'memq (list 'car var) | |
513 (list 'quote (append keys allow))) | |
514 (list 'setq var (list 'cdr (list 'cdr var)))) | |
515 (list (list 'car | |
516 (list 'cdr | |
4793
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
517 (list 'memq (car allow) |
428 | 518 restarg))) |
519 (list 'setq var nil)) | |
520 (list t | |
521 (list | |
522 'error | |
5084
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5080
diff
changeset
|
523 ''invalid-keyword-argument |
428 | 524 (list 'car var))))))) |
2153 | 525 (push (list 'let (list (list var restarg)) check) bind-forms))) |
526 (while (and (eq (car args) '&aux) (pop args)) | |
428 | 527 (while (and args (not (memq (car args) lambda-list-keywords))) |
528 (if (consp (car args)) | |
529 (if (and bind-enquote (cadar args)) | |
530 (cl-do-arglist (caar args) | |
2153 | 531 (list 'quote (cadr (pop args)))) |
532 (cl-do-arglist (caar args) (cadr (pop args)))) | |
533 (cl-do-arglist (pop args) nil)))) | |
428 | 534 (if args (error "Malformed argument list %s" save-args))))) |
535 | |
536 (defun cl-arglist-args (args) | |
537 (if (nlistp args) (list args) | |
538 (let ((res nil) (kind nil) arg) | |
539 (while (consp args) | |
2153 | 540 (setq arg (pop args)) |
428 | 541 (if (memq arg lambda-list-keywords) (setq kind arg) |
2153 | 542 (if (eq arg '&cl-defs) (pop args) |
428 | 543 (and (consp arg) kind (setq arg (car arg))) |
544 (and (consp arg) (cdr arg) (eq kind '&key) (setq arg (cadr arg))) | |
545 (setq res (nconc res (cl-arglist-args arg)))))) | |
546 (nconc res (and args (list args)))))) | |
547 | |
548 ;;;###autoload | |
549 (defmacro destructuring-bind (args expr &rest body) | |
872 | 550 "Bind the arguments in ARGS to EXPR then eval BODY. |
551 This is similar to `let' but it does \"destructuring\", in that it matches | |
552 the structure of ARGS to the structure of EXPR and binds corresponding | |
553 arguments in ARGS to their values in EXPR. The format of ARGS, and the | |
554 way the destructuring works, is exactly like the destructuring that occurs | |
555 in `defmacro*'; see that for more information. | |
556 | |
557 An alternative means of destructuring is using the `loop' macro. `loop' | |
558 gives practical examples of destructuring. `defmacro*' describes the | |
559 differences between loop and macro-style destructuring. | |
560 | |
561 You can rewrite a call to (destructuring-bind ARGS EXPR &rest BODY) using | |
562 `loop', approximately like this: | |
563 | |
564 (loop for ARGS = EXPR | |
565 return (progn BODY)) | |
566 | |
567 I say \"approximately\" because the destructuring works in a somewhat | |
568 different fashion, although for most reasonably simple constructs the | |
569 results will be the same." | |
428 | 570 (let* ((bind-lets nil) (bind-forms nil) (bind-inits nil) |
571 (bind-defs nil) (bind-block 'cl-none)) | |
572 (cl-do-arglist (or args '(&aux)) expr) | |
573 (append '(progn) bind-inits | |
574 (list (nconc (list 'let* (nreverse bind-lets)) | |
575 (nreverse bind-forms) body))))) | |
576 | |
577 | |
578 ;;; The `eval-when' form. | |
579 | |
580 (defvar cl-not-toplevel nil) | |
581 | |
582 ;;;###autoload | |
583 (defmacro eval-when (when &rest body) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
584 "Control when BODY is evaluated. |
428 | 585 If `compile' is in WHEN, BODY is evaluated when compiled at top-level. |
586 If `load' is in WHEN, BODY is evaluated when loaded after top-level compile. | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
587 If `eval' is in WHEN, BODY is evaluated when interpreted or at non-top-level. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
588 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
589 arguments: ((&rest WHEN) &body BODY)" |
428 | 590 (if (and (fboundp 'cl-compiling-file) (cl-compiling-file) |
591 (not cl-not-toplevel) (not (boundp 'for-effect))) ; horrible kludge | |
2153 | 592 (let ((comp (or (memq 'compile when) (memq :compile-toplevel when))) |
428 | 593 (cl-not-toplevel t)) |
2153 | 594 (if (or (memq 'load when) (memq :load-toplevel when)) |
428 | 595 (if comp (cons 'progn (mapcar 'cl-compile-time-too body)) |
596 (list* 'if nil nil body)) | |
597 (progn (if comp (eval (cons 'progn body))) nil))) | |
2153 | 598 (and (or (memq 'eval when) (memq :execute when)) |
428 | 599 (cons 'progn body)))) |
600 | |
601 (defun cl-compile-time-too (form) | |
602 (or (and (symbolp (car-safe form)) (get (car-safe form) 'byte-hunk-handler)) | |
603 (setq form (macroexpand | |
604 form (cons '(eval-when) byte-compile-macro-environment)))) | |
605 (cond ((eq (car-safe form) 'progn) | |
606 (cons 'progn (mapcar 'cl-compile-time-too (cdr form)))) | |
607 ((eq (car-safe form) 'eval-when) | |
608 (let ((when (nth 1 form))) | |
2153 | 609 (if (or (memq 'eval when) (memq :execute when)) |
428 | 610 (list* 'eval-when (cons 'compile when) (cddr form)) |
611 form))) | |
612 (t (eval form) form))) | |
613 | |
614 ;;;###autoload | |
615 (defmacro load-time-value (form &optional read-only) | |
616 "Like `progn', but evaluates the body at load time. | |
617 The result of the body appears to the compiler as a quoted constant." | |
618 (if (cl-compiling-file) | |
619 (let* ((temp (gentemp "--cl-load-time--")) | |
620 (set (list 'set (list 'quote temp) form))) | |
621 (if (and (fboundp 'byte-compile-file-form-defmumble) | |
622 (boundp 'this-kind) (boundp 'that-one)) | |
623 (fset 'byte-compile-file-form | |
624 (list 'lambda '(form) | |
625 (list 'fset '(quote byte-compile-file-form) | |
626 (list 'quote | |
627 (symbol-function 'byte-compile-file-form))) | |
628 (list 'byte-compile-file-form (list 'quote set)) | |
629 '(byte-compile-file-form form))) | |
630 ;; XEmacs change | |
631 (print set (symbol-value ;;'outbuffer | |
632 'byte-compile-output-buffer | |
633 ))) | |
634 (list 'symbol-value (list 'quote temp))) | |
635 (list 'quote (eval form)))) | |
636 | |
637 | |
638 ;;; Conditional control structures. | |
639 | |
640 ;;;###autoload | |
641 (defmacro case (expr &rest clauses) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
642 "Evals EXPR, chooses from CLAUSES on that value. |
428 | 643 Each clause looks like (KEYLIST BODY...). EXPR is evaluated and compared |
644 against each key in each KEYLIST; the corresponding BODY is evaluated. | |
645 If no clause succeeds, case returns nil. A single atom may be used in | |
646 place of a KEYLIST of one atom. A KEYLIST of `t' or `otherwise' is | |
647 allowed only in the final clause, and matches if no other keys match. | |
648 Key values are compared by `eql'." | |
649 (let* ((temp (if (cl-simple-expr-p expr 3) expr (gensym))) | |
650 (head-list nil) | |
651 (last-clause (car (last clauses))) | |
652 (body (cons | |
653 'cond | |
654 (mapcar | |
655 #'(lambda (c) | |
656 (cons (cond ((memq (car c) '(t otherwise)) | |
2153 | 657 ;; XEmacs addition: check for last clause |
428 | 658 (or (eq c last-clause) |
659 (error | |
660 "`%s' is allowed only as the last case clause" | |
661 (car c))) | |
662 t) | |
663 ((eq (car c) 'ecase-error-flag) | |
664 (list 'error "ecase failed: %s, %s" | |
665 temp (list 'quote (reverse head-list)))) | |
666 ((listp (car c)) | |
667 (setq head-list (append (car c) head-list)) | |
668 (list 'member* temp (list 'quote (car c)))) | |
669 (t | |
670 (if (memq (car c) head-list) | |
671 (error "Duplicate key in case: %s" | |
672 (car c))) | |
2153 | 673 (push (car c) head-list) |
428 | 674 (list 'eql temp (list 'quote (car c))))) |
675 (or (cdr c) '(nil)))) | |
676 clauses)))) | |
677 (if (eq temp expr) body | |
678 (list 'let (list (list temp expr)) body)))) | |
679 | |
680 ;; #### CL standard also requires `ccase', which signals a continuable | |
681 ;; error (`cerror' in XEmacs). However, I don't think it buys us | |
682 ;; anything to introduce it, as there is probably much more CL stuff | |
683 ;; missing, and the feature is not essential. --hniksic | |
684 | |
685 ;;;###autoload | |
686 (defmacro ecase (expr &rest clauses) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
687 "Like `case', but error if no case fits. |
428 | 688 `otherwise'-clauses are not allowed." |
2153 | 689 ;; XEmacs addition: disallow t and otherwise |
428 | 690 (let ((disallowed (or (assq t clauses) |
691 (assq 'otherwise clauses)))) | |
692 (if disallowed | |
693 (error "`%s' is not allowed in ecase" (car disallowed)))) | |
694 (list* 'case expr (append clauses '((ecase-error-flag))))) | |
695 | |
696 ;;;###autoload | |
697 (defmacro typecase (expr &rest clauses) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
698 "Evals EXPR, chooses from CLAUSES on that value. |
428 | 699 Each clause looks like (TYPE BODY...). EXPR is evaluated and, if it |
700 satisfies TYPE, the corresponding BODY is evaluated. If no clause succeeds, | |
701 typecase returns nil. A TYPE of `t' or `otherwise' is allowed only in the | |
702 final clause, and matches if no other keys match." | |
703 (let* ((temp (if (cl-simple-expr-p expr 3) expr (gensym))) | |
704 (type-list nil) | |
705 (body (cons | |
706 'cond | |
707 (mapcar | |
708 #'(lambda (c) | |
709 (cons (cond ((eq (car c) 'otherwise) t) | |
710 ((eq (car c) 'ecase-error-flag) | |
711 (list 'error "etypecase failed: %s, %s" | |
712 temp (list 'quote (reverse type-list)))) | |
713 (t | |
2153 | 714 (push (car c) type-list) |
428 | 715 (cl-make-type-test temp (car c)))) |
716 (or (cdr c) '(nil)))) | |
717 clauses)))) | |
718 (if (eq temp expr) body | |
719 (list 'let (list (list temp expr)) body)))) | |
720 | |
721 ;;;###autoload | |
722 (defmacro etypecase (expr &rest clauses) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
723 "Like `typecase', but error if no case fits. |
428 | 724 `otherwise'-clauses are not allowed." |
725 (list* 'typecase expr (append clauses '((ecase-error-flag))))) | |
726 | |
727 | |
728 ;;; Blocks and exits. | |
729 | |
730 ;;;###autoload | |
731 (defmacro block (name &rest body) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
732 "Define a lexically-scoped block named NAME. |
428 | 733 NAME may be any symbol. Code inside the BODY forms can call `return-from' |
734 to jump prematurely out of the block. This differs from `catch' and `throw' | |
735 in two respects: First, the NAME is an unevaluated symbol rather than a | |
736 quoted symbol or other form; and second, NAME is lexically rather than | |
737 dynamically scoped: Only references to it within BODY will work. These | |
738 references may appear inside macro expansions, but not inside functions | |
739 called from BODY." | |
740 (if (cl-safe-expr-p (cons 'progn body)) (cons 'progn body) | |
741 (list 'cl-block-wrapper | |
742 (list* 'catch (list 'quote (intern (format "--cl-block-%s--" name))) | |
743 body)))) | |
744 | |
745 (defvar cl-active-block-names nil) | |
746 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
747 (put 'cl-block-wrapper 'byte-compile |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
748 #'(lambda (cl-form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
749 (if (/= (length cl-form) 2) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
750 (byte-compile-warn-wrong-args cl-form 1)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
751 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
752 (if (fboundp 'byte-compile-form-do-effect) ; Check for optimizing |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
753 ; compiler |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
754 (progn |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
755 (let* ((cl-entry (cons (nth 1 (nth 1 (nth 1 cl-form))) nil)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
756 (cl-active-block-names (cons cl-entry |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
757 cl-active-block-names)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
758 (cl-body (byte-compile-top-level |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
759 (cons 'progn (cddr (nth 1 cl-form)))))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
760 (if (cdr cl-entry) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
761 (byte-compile-form (list 'catch (nth 1 (nth 1 cl-form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
762 cl-body)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
763 (byte-compile-form cl-body)))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
764 (byte-compile-form (nth 1 cl-form))))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
765 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
766 (put 'cl-block-throw 'byte-compile |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
767 #'(lambda (cl-form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
768 (let ((cl-found (assq (nth 1 (nth 1 cl-form)) cl-active-block-names))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
769 (if cl-found (setcdr cl-found t))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
770 (byte-compile-throw (cons 'throw (cdr cl-form))))) |
428 | 771 |
772 ;;;###autoload | |
2153 | 773 (defmacro return (&optional result) |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
774 "Return from the block named nil. |
428 | 775 This is equivalent to `(return-from nil RESULT)'." |
2153 | 776 (list 'return-from nil result)) |
428 | 777 |
778 ;;;###autoload | |
2153 | 779 (defmacro return-from (name &optional result) |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
780 "Return from the block named NAME. |
428 | 781 This jumps out to the innermost enclosing `(block NAME ...)' form, |
782 returning RESULT from that form (or nil if RESULT is omitted). | |
783 This is compatible with Common Lisp, but note that `defun' and | |
784 `defmacro' do not create implicit blocks as they do in Common Lisp." | |
785 (let ((name2 (intern (format "--cl-block-%s--" name)))) | |
2153 | 786 (list 'cl-block-throw (list 'quote name2) result))) |
428 | 787 |
788 | |
789 ;;; The "loop" macro. | |
790 | |
791 (defvar args) (defvar loop-accum-var) (defvar loop-accum-vars) | |
792 (defvar loop-bindings) (defvar loop-body) (defvar loop-destr-temps) | |
793 (defvar loop-finally) (defvar loop-finish-flag) (defvar loop-first-flag) | |
794 (defvar loop-initially) (defvar loop-map-form) (defvar loop-name) | |
795 (defvar loop-result) (defvar loop-result-explicit) | |
796 (defvar loop-result-var) (defvar loop-steps) (defvar loop-symbol-macs) | |
797 | |
798 ;;;###autoload | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
799 (defmacro loop (&rest clauses) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
800 "The Common Lisp `loop' macro. |
800 | 801 |
802 The loop macro consists of a series of clauses, which do things like | |
803 iterate variables, set conditions for exiting the loop, accumulating values | |
804 to be returned as the return value of the loop, and executing arbitrary | |
2297 | 805 blocks of code. Each clause is processed in turn, and the loop executes its |
800 | 806 body repeatedly until an exit condition is hit. |
807 | |
808 It's important to understand that loop clauses such as `for' and `while', | |
809 which look like loop-establishing constructs, don't actually *establish* a | |
810 loop\; the looping is established by the `loop' clause itself, which will | |
811 repeatedly process its body until told to stop. `while' merely establishes | |
812 a condition which, when true, causes the loop to finish, and `for' sets a | |
813 variable to different values on each iteration (e.g. successive elements of | |
814 a list) and sets an exit condition when there are no more values. This | |
815 means, for example, that if two `for' clauses appear, you don't get two | |
816 nested loops, but instead two variables that are stepped in parallel, and | |
817 two exit conditions, either of which, if triggered, will cause the loop to | |
818 end. Similarly for a loop with a `for' and a `while' clause. For example: | |
819 | |
820 \(loop | |
821 for x in list | |
822 while x | |
823 do ...) | |
824 | |
825 In each successive iteration, X is set to the next element of the list. If | |
826 there are no more elements, or if any element is nil (the `while' clause), | |
827 the loop exits. Otherwise, the block of code following `do' is executed.) | |
828 | |
829 This example also shows that some clauses establish variable bindings -- | |
830 essentially like a `let' binding -- and that following clauses can | |
831 reference these variables. Furthermore, the entire loop is surrounded by a | |
832 block named nil (unless the `named' clause is given), so you can return | |
833 from the loop using the macro `return'. (The other way to exit the loop is | |
834 through the macro `loop-finish'. The difference is that some loop clauses | |
835 establish or accumulate a value to be returned, and `loop-finish' returns | |
836 this. `return', however, can only return an explicitly-specified value. | |
837 NOTE CAREFULLY: There is a loop clause called `return' as well as a | |
838 standard Lisp macro called `return'. Normally they work similarly\; but if | |
839 you give the loop a name with `named', you will need to use the macro | |
840 `return-from'.) | |
841 | |
842 Another extremely useful feature of loops is called \"destructuring\". If, | |
843 in place of VAR, a list (possibly dotted, possibly a tree of arbitary | |
844 complexity) is given, the value to be assigned is assumed to have a similar | |
845 structure to the list given, and variables in the list will be matched up | |
846 with corresponding elements in the structure. For example: | |
847 | |
848 \(loop | |
849 for (x y) in '((foo 1) (bar 2) (baz 3)) | |
850 do (puthash x y some-hash-table)) | |
851 | |
852 will add three elements to a hash table, mapping foo -> 1, bar -> 2, and | |
853 baz -> 3. As other examples, you can conveniently process alists using | |
854 | |
855 \(loop for (x . y) in alist do ...) | |
856 | |
857 and plists using | |
858 | |
859 \(loop for (x y) on plist by #'cddr do ...) | |
860 | |
861 Destructuring is forgiving in that mismatches in the number of elements on | |
862 either size will be handled gracefully, either by ignoring or initializing | |
1123 | 863 to nil. Destructuring is extremely powerful, and is probably the single |
864 most useful feature of `loop'. | |
865 | |
866 Other useful features of loops are iterating over hash-tables, collecting values into lists, and being able to modify lists in-place as you iterate over them. As an example of the first two, | |
867 | |
868 \(loop for x being the hash-key in table using (hash-value y) | |
869 collect (cons x y)) | |
870 | |
871 converts hash-table TABLE to an alist. (What `collect' actually does is | |
872 push its value onto the end of an internal list and establish this list as | |
873 the default return value of the loop. See below for more information.) | |
874 | |
875 An example of in-place modification is | |
876 | |
877 \(setq foo '(1 3 5)) | |
878 \(loop for x in-ref foo do | |
879 (setf x (* x x))) | |
880 | |
881 after which foo will contain '(1 9 25). | |
800 | 882 |
883 If you don't understand how a particular loop clause works, create an | |
884 example and use `macroexpand-sexp' to expand the macro. | |
885 | |
428 | 886 Valid clauses are: |
800 | 887 |
888 \(NOTE: Keywords in lowercase\; slashes separate different possibilities | |
889 for keywords, some of which are synonymous\; brackets indicate optional | |
890 parts of the clause. In all of the clauses with `being', the word `being', | |
891 the words `each' or `the', and the difference between singular and plural | |
892 keywords are all just syntactic sugar. Stylistically, you should write | |
893 either `being each foo' or `being the foos'.) | |
894 | |
895 for VAR from/upfrom/downfrom NUM1 to/upto/downto/above/below NUM2 [by NUMSTEP] | |
896 Step VAR across numbers. `upfrom', `upto', and `below' explicitly | |
897 indicate upward stepping\; `downfrom', `downto', and `above' explicitly | |
898 indicate downward stepping. (If none of these is given, the default is | |
899 upward.) `to', `upto', and `downto' cause stepping to include NUM2 as | |
900 the last iteration, while `above' and `below' stop just before reaching | |
901 NUM2. `by' can be given to indicate a stepping increment other than 1. | |
902 | |
903 for VAR in LIST [by FUNC] | |
904 Step VAR over elements of a LIST. FUNC specifies how to get successive | |
905 sublists and defaults to `cdr'. | |
906 | |
907 for VAR on LIST [by FUNC] | |
908 Step VAR over tails of a LIST. FUNC specifies how to get successive | |
909 sublists and defaults to `cdr'. | |
910 | |
911 for VAR in-ref LIST [by FUNC] | |
912 Step VAR over elements of a LIST, like `for ... in', except the VAR is | |
913 bound using `symbol-macrolet' instead of `let'. In essence, VAR is set | |
914 to a \"reference\" to the list element instead of the element itself\; | |
915 this us, you can destructively modify the list using `setf' on VAR, and | |
916 any changes to the list will \"magically\" reflect themselves in | |
917 subsequent uses of VAR. | |
918 | |
919 for VAR = INIT [then EXPR] | |
920 Set VAR on each iteration of the loop. If only INIT is given, use it | |
921 on each iteration. Otherwise, use INIT on the first iteration and EXPR | |
922 on subsequent ones. | |
923 | |
924 for VAR across/across-ref ARRAY | |
925 Step VAR across a sequence other than a list (string, vector, bit | |
926 vector). If `across-ref' is given, VAR is bound using | |
927 `symbol-macrolet' instead of `let' -- see above. | |
928 | |
929 for VAR being each/the element/elements in/of/in-ref/of-ref SEQUENCE [using (index INDEX-VAR)] | |
930 Step VAR across any sequence. A variable can be specified with a | |
931 `using' phrase to receive the index, starting at 0. If `in-ref' or | |
932 `of-ref' is given, VAR is bound using `symbol-macrolet' instead of | |
933 `let' -- see above. | |
934 | |
935 for VAR being each/the hash-key/hash-keys/hash-value/hash-values in/of HASH-TABLE [using (hash-value/hash-key OTHER-VAR)] | |
936 | |
937 for VAR being each/the hash-key/hash-keys/hash-value/hash-values in/of HASH-TABLE [using (hash-value/hash-key OTHER-VAR)] | |
938 Map VAR over a hash table. The various keywords are synonymous except | |
939 those that distinguish between keys and values. The `using' phrase is | |
940 optional and allows both key and value to be bound. | |
941 | |
942 for VAR being each/the symbol/present-symbol/external-symbol/symbols/present-symbols/external-symbols in/of OBARRAY | |
943 Map VAR over the symbols in an obarray. All symbol keywords are | |
944 currently synonymous. | |
945 | |
946 for VAR being each/the extent/extents [in/of BUFFER-OR-STRING] [from POS] [to POS] | |
947 Map VAR over the extents in a buffer or string, defaulting to the | |
948 current buffer, the beginning and the end, respectively. | |
949 | |
950 for VAR being each/the interval/intervals [in/of BUFFER-OR-STRING] [property PROPERTY] [from POS] [to POS] | |
951 Map VAR over the intervals without property change in a buffer or | |
952 string, defaulting to the current buffer, the beginning and the end, | |
953 respectively. If PROPERTY is given, iteration occurs using | |
954 `next-single-property-change'\; otherwise, using | |
955 `next-property-change'. | |
956 | |
957 for VAR being each/the window/windows [in/of FRAME] | |
958 Step VAR over the windows in FRAME, defaulting to the selected frame. | |
959 | |
960 for VAR being each/the frame/frames | |
961 Step VAR over all frames. | |
962 | |
963 for VAR being each/the buffer/buffers [by FUNC] | |
964 Step VAR over all buffers. This is actually equivalent to | |
965 `for VAR in (buffer-list) [by FUNC]'. | |
966 | |
967 for VAR being each/the key-code/key-codes/key-seq/key-seqs/key-binding/key-bindings in KEYMAP [using (key-code/key-codes/key-seq/key-seqs/key-binding/key-bindings OTHER-VAR)] | |
968 Map VAR over the entries in a keymap. Keyword `key-seq' causes | |
969 recursive mapping over prefix keymaps occurring in the keymap, with VAR | |
970 getting the built-up sequence (a vector). Otherwise, mapping does not | |
971 occur recursively. `key-code' and `key-seq' refer to what is bound | |
972 (second argument of `define-key'), and `key-binding' what it's bound to | |
973 (third argument of `define-key'). | |
974 | |
975 as VAR ... | |
976 `as' is a synonym for `for'. | |
977 | |
978 and VAR ... | |
979 `and' clauses have the same syntax as `for' clauses except that the | |
980 variables in the clause are bound in parallel with a preceding | |
981 `and'/`for' clause instead of in series. | |
982 | |
983 with VAR = INIT | |
984 Set VAR to INIT once, before doing any iterations. | |
985 | |
986 repeat NUM | |
987 Exit the loop if more than NUM iterations have occurred. | |
988 | |
989 while COND | |
990 Exit the loop if COND isn't true. | |
991 | |
992 until COND | |
993 Exit the loop if COND is true. | |
994 | |
995 collect EXPR [into VAR] | |
996 Push EXPR onto the end of a list of values -- stored either in VAR or a | |
997 temporary variable that will be returned as the return value of the | |
998 loop if it terminates through an exit condition or a call to | |
999 `loop-finish'. | |
1000 | |
1001 append EXPR [into VAR] | |
1002 Append EXPR (a list) onto the end of a list of values, like `collect'. | |
1003 | |
1004 nconc EXPR [into VAR] | |
1005 Nconc EXPR (a list) onto the end of a list of values, like `collect'. | |
1006 | |
1007 concat EXPR [into VAR] | |
1008 Concatenate EXPR (a string) onto the end of a string of values, like | |
1009 `collect'. | |
1010 | |
1011 vconcat EXPR [into VAR] | |
1012 Concatenate EXPR (a vector) onto the end of a vector of values, like | |
1013 `collect'. | |
1014 | |
1015 bvconcat EXPR [into VAR] | |
1016 Concatenate EXPR (a bit vector) onto the end of a bit vector of values, | |
1017 like `collect'. | |
1018 | |
1019 sum EXPR [into VAR] | |
1020 Add EXPR to a value, like `collect'. | |
1021 | |
1022 count EXPR [into VAR] | |
1023 If EXPR is true, increment a value by 1, like `collect'. | |
1024 | |
1025 maximize EXPR [into VAR] | |
1026 IF EXPR is greater than a value, replace the value with EXPR, like | |
1027 `collect'. | |
1028 | |
1029 minimize EXPR [into VAR] | |
1030 IF EXPR is less than a value, replace the value with EXPR, like | |
1031 `collect'. | |
1032 | |
1033 always COND | |
1034 If COND is true, continue the loop and set the loop return value (the | |
1035 same value that's manipulated by `collect' and friends and is returned | |
1036 by a normal loop exit or an exit using `loop-finish') to t\; otherwise, | |
1037 exit the loop and return nil. The effect is to determine and return | |
1038 whether a condition is true \"always\" (all iterations of the loop). | |
1039 | |
1040 never COND | |
1041 If COND is false, continue the loop and set the loop return value (like | |
1042 `always') to t\; otherwise, exit the loop and return nil. The effect | |
1043 is to determine and return whether a condition is \"never\" true (all | |
1044 iterations of the loop). | |
1045 | |
1046 thereis COND | |
1047 If COND is true, exit the loop and return COND. | |
1048 | |
1049 if/when COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...] | |
1050 If COND is true, execute the directly following clause(s)\; otherwise, | |
1051 execute the clauses following `else'. | |
1052 | |
1053 unless COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...] | |
1054 If COND is false, execute the directly following clause(s)\; otherwise, execute the clauses following `else'. | |
1055 | |
1056 do EXPRS... | |
1057 Execute the expressions (any Lisp forms). | |
1058 | |
1059 initially EXPRS... | |
1060 Execute EXPR once, before doing any iterations, and after values have | |
1061 been set using `with'. | |
1062 | |
1063 finally EXPRS... | |
1064 Execute EXPR once, directly before the loop terminates. This will not | |
1065 be executed if the loop terminates prematurely as a result of `always', | |
1066 `never', `thereis', or `return'. | |
1067 | |
1068 return EXPR | |
1069 Exit from the loop and return EXPR. | |
1070 | |
1071 finally return EXPR | |
1072 Specify the value to be returned when the loop exits. (Unlike `return', | |
1073 this doesn't cause the loop to immediately exit\; it will exit whenever | |
1074 it normally would have.) This takes precedence over a return value | |
1075 specified with `collect' and friends or `always' and friends. | |
1076 | |
1077 named NAME | |
1078 Specify the name for block surrounding the loop, in place of nil. | |
1079 (See `block'.) | |
1080 " | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1081 (if (not (memq t (mapcar 'symbolp (delq nil (delq t (copy-list clauses)))))) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1082 (list 'block nil (list* 'while t clauses)) |
428 | 1083 (let ((loop-name nil) (loop-bindings nil) |
1084 (loop-body nil) (loop-steps nil) | |
1085 (loop-result nil) (loop-result-explicit nil) | |
1086 (loop-result-var nil) (loop-finish-flag nil) | |
1087 (loop-accum-var nil) (loop-accum-vars nil) | |
1088 (loop-initially nil) (loop-finally nil) | |
1089 (loop-map-form nil) (loop-first-flag nil) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1090 (loop-destr-temps nil) (loop-symbol-macs nil) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1091 (args (append clauses '(cl-end-loop)))) |
428 | 1092 (while (not (eq (car args) 'cl-end-loop)) (cl-parse-loop-clause)) |
1093 (if loop-finish-flag | |
2153 | 1094 (push (list (list loop-finish-flag t)) loop-bindings)) |
428 | 1095 (if loop-first-flag |
2153 | 1096 (progn (push (list (list loop-first-flag t)) loop-bindings) |
1097 (push (list 'setq loop-first-flag nil) loop-steps))) | |
428 | 1098 (let* ((epilogue (nconc (nreverse loop-finally) |
1099 (list (or loop-result-explicit loop-result)))) | |
1100 (ands (cl-loop-build-ands (nreverse loop-body))) | |
1101 (while-body (nconc (cadr ands) (nreverse loop-steps))) | |
1102 (body (append | |
1103 (nreverse loop-initially) | |
1104 (list (if loop-map-form | |
1105 (list 'block '--cl-finish-- | |
1106 (subst | |
1107 (if (eq (car ands) t) while-body | |
1108 (cons (list 'or (car ands) | |
1109 '(return-from --cl-finish-- | |
1110 nil)) | |
1111 while-body)) | |
1112 '--cl-map loop-map-form)) | |
1113 (list* 'while (car ands) while-body))) | |
1114 (if loop-finish-flag | |
1346 | 1115 (if (equal epilogue '(nil)) |
1116 ;; XEmacs change: When epilogue is nil and | |
1117 ;; loop-finish-flag exists, you get a byte-compiler | |
1118 ;; warning using the original (commented-out) | |
1119 ;; code below. So instead we create a form that | |
1120 ;; gives the same result but uses loop-finish-flag. | |
1121 ;; --ben | |
1122 ;(list loop-result-var) | |
1123 (list (list 'if loop-finish-flag | |
1124 loop-result-var loop-result-var)) | |
428 | 1125 (list (list 'if loop-finish-flag |
1126 (cons 'progn epilogue) loop-result-var))) | |
1127 epilogue)))) | |
2153 | 1128 (if loop-result-var (push (list loop-result-var) loop-bindings)) |
428 | 1129 (while loop-bindings |
1130 (if (cdar loop-bindings) | |
2153 | 1131 (setq body (list (cl-loop-let (pop loop-bindings) body t))) |
428 | 1132 (let ((lets nil)) |
1133 (while (and loop-bindings | |
1134 (not (cdar loop-bindings))) | |
2153 | 1135 (push (car (pop loop-bindings)) lets)) |
428 | 1136 (setq body (list (cl-loop-let lets body nil)))))) |
1137 (if loop-symbol-macs | |
1138 (setq body (list (list* 'symbol-macrolet loop-symbol-macs body)))) | |
1139 (list* 'block loop-name body))))) | |
1140 | |
1141 (defun cl-parse-loop-clause () ; uses args, loop-* | |
2153 | 1142 (let ((word (pop args)) |
428 | 1143 (hash-types '(hash-key hash-keys hash-value hash-values)) |
1144 (key-types '(key-code key-codes key-seq key-seqs | |
1145 key-binding key-bindings))) | |
1146 (cond | |
1147 | |
1148 ((null args) | |
1149 (error "Malformed `loop' macro")) | |
1150 | |
1151 ((eq word 'named) | |
2153 | 1152 (setq loop-name (pop args))) |
428 | 1153 |
1154 ((eq word 'initially) | |
2153 | 1155 (if (memq (car args) '(do doing)) (pop args)) |
428 | 1156 (or (consp (car args)) (error "Syntax error on `initially' clause")) |
1157 (while (consp (car args)) | |
2153 | 1158 (push (pop args) loop-initially))) |
428 | 1159 |
1160 ((eq word 'finally) | |
1161 (if (eq (car args) 'return) | |
1162 (setq loop-result-explicit (or (cl-pop2 args) '(quote nil))) | |
2153 | 1163 (if (memq (car args) '(do doing)) (pop args)) |
428 | 1164 (or (consp (car args)) (error "Syntax error on `finally' clause")) |
1165 (if (and (eq (caar args) 'return) (null loop-name)) | |
2153 | 1166 (setq loop-result-explicit (or (nth 1 (pop args)) '(quote nil))) |
428 | 1167 (while (consp (car args)) |
2153 | 1168 (push (pop args) loop-finally))))) |
428 | 1169 |
1170 ((memq word '(for as)) | |
1171 (let ((loop-for-bindings nil) (loop-for-sets nil) (loop-for-steps nil) | |
1172 (ands nil)) | |
1173 (while | |
2153 | 1174 (let ((var (or (pop args) (gensym)))) |
1175 (setq word (pop args)) | |
1176 (if (eq word 'being) (setq word (pop args))) | |
1177 (if (memq word '(the each)) (setq word (pop args))) | |
428 | 1178 (if (memq word '(buffer buffers)) |
1179 (setq word 'in args (cons '(buffer-list) args))) | |
1180 (cond | |
1181 | |
1182 ((memq word '(from downfrom upfrom to downto upto | |
1183 above below by)) | |
2153 | 1184 (push word args) |
428 | 1185 (if (memq (car args) '(downto above)) |
1186 (error "Must specify `from' value for downward loop")) | |
1187 (let* ((down (or (eq (car args) 'downfrom) | |
1188 (memq (caddr args) '(downto above)))) | |
1189 (excl (or (memq (car args) '(above below)) | |
1190 (memq (caddr args) '(above below)))) | |
1191 (start (and (memq (car args) '(from upfrom downfrom)) | |
1192 (cl-pop2 args))) | |
1193 (end (and (memq (car args) | |
1194 '(to upto downto above below)) | |
1195 (cl-pop2 args))) | |
1196 (step (and (eq (car args) 'by) (cl-pop2 args))) | |
1197 (end-var (and (not (cl-const-expr-p end)) (gensym))) | |
1198 (step-var (and (not (cl-const-expr-p step)) | |
1199 (gensym)))) | |
1200 (and step (numberp step) (<= step 0) | |
1201 (error "Loop `by' value is not positive: %s" step)) | |
2153 | 1202 (push (list var (or start 0)) loop-for-bindings) |
1203 (if end-var (push (list end-var end) loop-for-bindings)) | |
1204 (if step-var (push (list step-var step) | |
428 | 1205 loop-for-bindings)) |
1206 (if end | |
2153 | 1207 (push (list |
428 | 1208 (if down (if excl '> '>=) (if excl '< '<=)) |
1209 var (or end-var end)) loop-body)) | |
2153 | 1210 (push (list var (list (if down '- '+) var |
428 | 1211 (or step-var step 1))) |
1212 loop-for-steps))) | |
1213 | |
1214 ((memq word '(in in-ref on)) | |
1215 (let* ((on (eq word 'on)) | |
1216 (temp (if (and on (symbolp var)) var (gensym)))) | |
2153 | 1217 (push (list temp (pop args)) loop-for-bindings) |
1218 (push (list 'consp temp) loop-body) | |
428 | 1219 (if (eq word 'in-ref) |
2153 | 1220 (push (list var (list 'car temp)) loop-symbol-macs) |
428 | 1221 (or (eq temp var) |
1222 (progn | |
2153 | 1223 (push (list var nil) loop-for-bindings) |
1224 (push (list var (if on temp (list 'car temp))) | |
428 | 1225 loop-for-sets)))) |
2153 | 1226 (push (list temp |
428 | 1227 (if (eq (car args) 'by) |
1228 (let ((step (cl-pop2 args))) | |
1229 (if (and (memq (car-safe step) | |
1230 '(quote function | |
1231 function*)) | |
1232 (symbolp (nth 1 step))) | |
1233 (list (nth 1 step) temp) | |
1234 (list 'funcall step temp))) | |
1235 (list 'cdr temp))) | |
1236 loop-for-steps))) | |
1237 | |
1238 ((eq word '=) | |
2153 | 1239 (let* ((start (pop args)) |
428 | 1240 (then (if (eq (car args) 'then) (cl-pop2 args) start))) |
2153 | 1241 (push (list var nil) loop-for-bindings) |
428 | 1242 (if (or ands (eq (car args) 'and)) |
1243 (progn | |
2153 | 1244 (push (list var |
428 | 1245 (list 'if |
1246 (or loop-first-flag | |
1247 (setq loop-first-flag | |
1248 (gensym))) | |
1249 start var)) | |
1250 loop-for-sets) | |
2153 | 1251 (push (list var then) loop-for-steps)) |
1252 (push (list var | |
428 | 1253 (if (eq start then) start |
1254 (list 'if | |
1255 (or loop-first-flag | |
1256 (setq loop-first-flag (gensym))) | |
1257 start then))) | |
1258 loop-for-sets)))) | |
1259 | |
1260 ((memq word '(across across-ref)) | |
1261 (let ((temp-vec (gensym)) (temp-idx (gensym))) | |
2153 | 1262 (push (list temp-vec (pop args)) loop-for-bindings) |
1263 (push (list temp-idx -1) loop-for-bindings) | |
1264 (push (list '< (list 'setq temp-idx (list '1+ temp-idx)) | |
428 | 1265 (list 'length temp-vec)) loop-body) |
1266 (if (eq word 'across-ref) | |
2153 | 1267 (push (list var (list 'aref temp-vec temp-idx)) |
428 | 1268 loop-symbol-macs) |
2153 | 1269 (push (list var nil) loop-for-bindings) |
1270 (push (list var (list 'aref temp-vec temp-idx)) | |
428 | 1271 loop-for-sets)))) |
1272 | |
1273 ((memq word '(element elements)) | |
1274 (let ((ref (or (memq (car args) '(in-ref of-ref)) | |
1275 (and (not (memq (car args) '(in of))) | |
1276 (error "Expected `of'")))) | |
1277 (seq (cl-pop2 args)) | |
1278 (temp-seq (gensym)) | |
1279 (temp-idx (if (eq (car args) 'using) | |
1280 (if (and (= (length (cadr args)) 2) | |
1281 (eq (caadr args) 'index)) | |
1282 (cadr (cl-pop2 args)) | |
1283 (error "Bad `using' clause")) | |
1284 (gensym)))) | |
2153 | 1285 (push (list temp-seq seq) loop-for-bindings) |
1286 (push (list temp-idx 0) loop-for-bindings) | |
428 | 1287 (if ref |
1288 (let ((temp-len (gensym))) | |
2153 | 1289 (push (list temp-len (list 'length temp-seq)) |
428 | 1290 loop-for-bindings) |
2153 | 1291 (push (list var (list 'elt temp-seq temp-idx)) |
428 | 1292 loop-symbol-macs) |
2153 | 1293 (push (list '< temp-idx temp-len) loop-body)) |
1294 (push (list var nil) loop-for-bindings) | |
1295 (push (list 'and temp-seq | |
428 | 1296 (list 'or (list 'consp temp-seq) |
1297 (list '< temp-idx | |
1298 (list 'length temp-seq)))) | |
1299 loop-body) | |
2153 | 1300 (push (list var (list 'if (list 'consp temp-seq) |
428 | 1301 (list 'pop temp-seq) |
1302 (list 'aref temp-seq temp-idx))) | |
1303 loop-for-sets)) | |
2153 | 1304 (push (list temp-idx (list '1+ temp-idx)) |
428 | 1305 loop-for-steps))) |
1306 | |
1307 ((memq word hash-types) | |
1308 (or (memq (car args) '(in of)) (error "Expected `of'")) | |
1309 (let* ((table (cl-pop2 args)) | |
1310 (other (if (eq (car args) 'using) | |
1311 (if (and (= (length (cadr args)) 2) | |
1312 (memq (caadr args) hash-types) | |
1313 (not (eq (caadr args) word))) | |
1314 (cadr (cl-pop2 args)) | |
1315 (error "Bad `using' clause")) | |
1316 (gensym)))) | |
1317 (if (memq word '(hash-value hash-values)) | |
1318 (setq var (prog1 other (setq other var)))) | |
1319 (setq loop-map-form | |
1320 (list 'maphash (list 'function | |
1321 (list* 'lambda (list var other) | |
1322 '--cl-map)) table)))) | |
1323 | |
1324 ((memq word '(symbol present-symbol external-symbol | |
1325 symbols present-symbols external-symbols)) | |
1326 (let ((ob (and (memq (car args) '(in of)) (cl-pop2 args)))) | |
1327 (setq loop-map-form | |
1328 (list 'mapatoms (list 'function | |
1329 (list* 'lambda (list var) | |
1330 '--cl-map)) ob)))) | |
1331 | |
1332 ((memq word '(overlay overlays extent extents)) | |
1333 (let ((buf nil) (from nil) (to nil)) | |
1334 (while (memq (car args) '(in of from to)) | |
1335 (cond ((eq (car args) 'from) (setq from (cl-pop2 args))) | |
1336 ((eq (car args) 'to) (setq to (cl-pop2 args))) | |
1337 (t (setq buf (cl-pop2 args))))) | |
1338 (setq loop-map-form | |
1339 (list 'cl-map-extents | |
1340 (list 'function (list 'lambda (list var (gensym)) | |
1341 '(progn . --cl-map) nil)) | |
1342 buf from to)))) | |
1343 | |
1344 ((memq word '(interval intervals)) | |
1345 (let ((buf nil) (prop nil) (from nil) (to nil) | |
1346 (var1 (gensym)) (var2 (gensym))) | |
1347 (while (memq (car args) '(in of property from to)) | |
1348 (cond ((eq (car args) 'from) (setq from (cl-pop2 args))) | |
1349 ((eq (car args) 'to) (setq to (cl-pop2 args))) | |
1350 ((eq (car args) 'property) | |
1351 (setq prop (cl-pop2 args))) | |
1352 (t (setq buf (cl-pop2 args))))) | |
1353 (if (and (consp var) (symbolp (car var)) (symbolp (cdr var))) | |
1354 (setq var1 (car var) var2 (cdr var)) | |
2153 | 1355 (push (list var (list 'cons var1 var2)) loop-for-sets)) |
428 | 1356 (setq loop-map-form |
1357 (list 'cl-map-intervals | |
1358 (list 'function (list 'lambda (list var1 var2) | |
1359 '(progn . --cl-map))) | |
1360 buf prop from to)))) | |
1361 | |
1362 ((memq word key-types) | |
1363 (or (memq (car args) '(in of)) (error "Expected `of'")) | |
800 | 1364 (let* ((map (cl-pop2 args)) |
1365 other-word | |
1366 (other (if (eq (car args) 'using) | |
1367 (if (and (= (length (cadr args)) 2) | |
1368 (memq (setq other-word (caadr args)) | |
1369 key-types) | |
1370 (not (eq (caadr args) word))) | |
1371 (cadr (cl-pop2 args)) | |
1372 (error "Bad `using' clause")) | |
428 | 1373 (gensym)))) |
2153 | 1374 ;; XEmacs addition: track other-word |
800 | 1375 (when (memq word '(key-binding key-bindings)) |
1376 (setq var (prog1 other (setq other var))) | |
1377 (and other-word (setq word other-word))) | |
428 | 1378 (setq loop-map-form |
1379 (list (if (memq word '(key-seq key-seqs)) | |
2153 | 1380 'cl-map-keymap-recursively 'map-keymap) |
428 | 1381 (list 'function (list* 'lambda (list var other) |
1382 '--cl-map)) map)))) | |
1383 | |
1384 ((memq word '(frame frames screen screens)) | |
1385 (let ((temp (gensym))) | |
2153 | 1386 (push (list var '(selected-frame)) |
428 | 1387 loop-for-bindings) |
2153 | 1388 (push (list temp nil) loop-for-bindings) |
1389 (push (list 'prog1 (list 'not (list 'eq var temp)) | |
428 | 1390 (list 'or temp (list 'setq temp var))) |
1391 loop-body) | |
2153 | 1392 (push (list var (list 'next-frame var)) |
428 | 1393 loop-for-steps))) |
1394 | |
1395 ((memq word '(window windows)) | |
1396 (let ((scr (and (memq (car args) '(in of)) (cl-pop2 args))) | |
1397 (temp (gensym))) | |
2153 | 1398 (push (list var (if scr |
428 | 1399 (list 'frame-selected-window scr) |
1400 '(selected-window))) | |
1401 loop-for-bindings) | |
2153 | 1402 (push (list temp nil) loop-for-bindings) |
1403 (push (list 'prog1 (list 'not (list 'eq var temp)) | |
428 | 1404 (list 'or temp (list 'setq temp var))) |
1405 loop-body) | |
2153 | 1406 (push (list var (list 'next-window var)) loop-for-steps))) |
428 | 1407 |
1408 (t | |
1409 (let ((handler (and (symbolp word) | |
1410 (get word 'cl-loop-for-handler)))) | |
1411 (if handler | |
1412 (funcall handler var) | |
1413 (error "Expected a `for' preposition, found %s" word))))) | |
1414 (eq (car args) 'and)) | |
1415 (setq ands t) | |
2153 | 1416 (pop args)) |
428 | 1417 (if (and ands loop-for-bindings) |
2153 | 1418 (push (nreverse loop-for-bindings) loop-bindings) |
428 | 1419 (setq loop-bindings (nconc (mapcar 'list loop-for-bindings) |
1420 loop-bindings))) | |
1421 (if loop-for-sets | |
2153 | 1422 (push (list 'progn |
428 | 1423 (cl-loop-let (nreverse loop-for-sets) 'setq ands) |
1424 t) loop-body)) | |
1425 (if loop-for-steps | |
2153 | 1426 (push (cons (if ands 'psetq 'setq) |
428 | 1427 (apply 'append (nreverse loop-for-steps))) |
1428 loop-steps)))) | |
1429 | |
1430 ((eq word 'repeat) | |
1431 (let ((temp (gensym))) | |
2153 | 1432 (push (list (list temp (pop args))) loop-bindings) |
1433 (push (list '>= (list 'setq temp (list '1- temp)) 0) loop-body))) | |
1434 | |
1435 ((memq word '(collect collecting)) | |
1436 (let ((what (pop args)) | |
428 | 1437 (var (cl-loop-handle-accum nil 'nreverse))) |
1438 (if (eq var loop-accum-var) | |
2153 | 1439 (push (list 'progn (list 'push what var) t) loop-body) |
1440 (push (list 'progn | |
428 | 1441 (list 'setq var (list 'nconc var (list 'list what))) |
1442 t) loop-body)))) | |
1443 | |
1444 ((memq word '(nconc nconcing append appending)) | |
2153 | 1445 (let ((what (pop args)) |
428 | 1446 (var (cl-loop-handle-accum nil 'nreverse))) |
2153 | 1447 (push (list 'progn |
428 | 1448 (list 'setq var |
1449 (if (eq var loop-accum-var) | |
1450 (list 'nconc | |
1451 (list (if (memq word '(nconc nconcing)) | |
1452 'nreverse 'reverse) | |
1453 what) | |
1454 var) | |
1455 (list (if (memq word '(nconc nconcing)) | |
1456 'nconc 'append) | |
1457 var what))) t) loop-body))) | |
1458 | |
1459 ((memq word '(concat concating)) | |
2153 | 1460 (let ((what (pop args)) |
428 | 1461 (var (cl-loop-handle-accum ""))) |
2153 | 1462 (push (list 'progn (list 'callf 'concat var what) t) loop-body))) |
428 | 1463 |
1464 ((memq word '(vconcat vconcating)) | |
2153 | 1465 (let ((what (pop args)) |
428 | 1466 (var (cl-loop-handle-accum []))) |
2153 | 1467 (push (list 'progn (list 'callf 'vconcat var what) t) loop-body))) |
1468 | |
1469 ;; XEmacs addition: handle bit-vectors | |
800 | 1470 ((memq word '(bvconcat bvconcating)) |
2153 | 1471 (let ((what (pop args)) |
800 | 1472 (var (cl-loop-handle-accum #*))) |
2153 | 1473 (push (list 'progn (list 'callf 'bvconcat var what) t) loop-body))) |
800 | 1474 |
428 | 1475 ((memq word '(sum summing)) |
2153 | 1476 (let ((what (pop args)) |
428 | 1477 (var (cl-loop-handle-accum 0))) |
2153 | 1478 (push (list 'progn (list 'incf var what) t) loop-body))) |
428 | 1479 |
1480 ((memq word '(count counting)) | |
2153 | 1481 (let ((what (pop args)) |
428 | 1482 (var (cl-loop-handle-accum 0))) |
2153 | 1483 (push (list 'progn (list 'if what (list 'incf var)) t) loop-body))) |
428 | 1484 |
1485 ((memq word '(minimize minimizing maximize maximizing)) | |
2153 | 1486 (let* ((what (pop args)) |
428 | 1487 (temp (if (cl-simple-expr-p what) what (gensym))) |
1488 (var (cl-loop-handle-accum nil)) | |
1489 (func (intern (substring (symbol-name word) 0 3))) | |
1490 (set (list 'setq var (list 'if var (list func var temp) temp)))) | |
2153 | 1491 (push (list 'progn (if (eq temp what) set |
428 | 1492 (list 'let (list (list temp what)) set)) |
1493 t) loop-body))) | |
1494 | |
1495 ((eq word 'with) | |
1496 (let ((bindings nil)) | |
2153 | 1497 (while (progn (push (list (pop args) |
428 | 1498 (and (eq (car args) '=) (cl-pop2 args))) |
1499 bindings) | |
1500 (eq (car args) 'and)) | |
2153 | 1501 (pop args)) |
1502 (push (nreverse bindings) loop-bindings))) | |
428 | 1503 |
1504 ((eq word 'while) | |
2153 | 1505 (push (pop args) loop-body)) |
428 | 1506 |
1507 ((eq word 'until) | |
2153 | 1508 (push (list 'not (pop args)) loop-body)) |
428 | 1509 |
1510 ((eq word 'always) | |
1511 (or loop-finish-flag (setq loop-finish-flag (gensym))) | |
2153 | 1512 (push (list 'setq loop-finish-flag (pop args)) loop-body) |
428 | 1513 (setq loop-result t)) |
1514 | |
1515 ((eq word 'never) | |
1516 (or loop-finish-flag (setq loop-finish-flag (gensym))) | |
2153 | 1517 (push (list 'setq loop-finish-flag (list 'not (pop args))) |
428 | 1518 loop-body) |
1519 (setq loop-result t)) | |
1520 | |
1521 ((eq word 'thereis) | |
1522 (or loop-finish-flag (setq loop-finish-flag (gensym))) | |
1523 (or loop-result-var (setq loop-result-var (gensym))) | |
2153 | 1524 (push (list 'setq loop-finish-flag |
1525 (list 'not (list 'setq loop-result-var (pop args)))) | |
428 | 1526 loop-body)) |
1527 | |
1528 ((memq word '(if when unless)) | |
2153 | 1529 (let* ((cond (pop args)) |
428 | 1530 (then (let ((loop-body nil)) |
1531 (cl-parse-loop-clause) | |
1532 (cl-loop-build-ands (nreverse loop-body)))) | |
1533 (else (let ((loop-body nil)) | |
1534 (if (eq (car args) 'else) | |
2153 | 1535 (progn (pop args) (cl-parse-loop-clause))) |
428 | 1536 (cl-loop-build-ands (nreverse loop-body)))) |
1537 (simple (and (eq (car then) t) (eq (car else) t)))) | |
2153 | 1538 (if (eq (car args) 'end) (pop args)) |
428 | 1539 (if (eq word 'unless) (setq then (prog1 else (setq else then)))) |
1540 (let ((form (cons (if simple (cons 'progn (nth 1 then)) (nth 2 then)) | |
1541 (if simple (nth 1 else) (list (nth 2 else)))))) | |
1542 (if (cl-expr-contains form 'it) | |
1543 (let ((temp (gensym))) | |
2153 | 1544 (push (list temp) loop-bindings) |
428 | 1545 (setq form (list* 'if (list 'setq temp cond) |
1546 (subst temp 'it form)))) | |
1547 (setq form (list* 'if cond form))) | |
2153 | 1548 (push (if simple (list 'progn form t) form) loop-body)))) |
428 | 1549 |
1550 ((memq word '(do doing)) | |
1551 (let ((body nil)) | |
1552 (or (consp (car args)) (error "Syntax error on `do' clause")) | |
2153 | 1553 (while (consp (car args)) (push (pop args) body)) |
1554 (push (cons 'progn (nreverse (cons t body))) loop-body))) | |
428 | 1555 |
1556 ((eq word 'return) | |
1557 (or loop-finish-flag (setq loop-finish-flag (gensym))) | |
1558 (or loop-result-var (setq loop-result-var (gensym))) | |
2153 | 1559 (push (list 'setq loop-result-var (pop args) |
428 | 1560 loop-finish-flag nil) loop-body)) |
1561 | |
1562 (t | |
1563 (let ((handler (and (symbolp word) (get word 'cl-loop-handler)))) | |
1564 (or handler (error "Expected a loop keyword, found %s" word)) | |
1565 (funcall handler)))) | |
1566 (if (eq (car args) 'and) | |
2153 | 1567 (progn (pop args) (cl-parse-loop-clause))))) |
428 | 1568 |
1569 (defun cl-loop-let (specs body par) ; uses loop-* | |
1570 (let ((p specs) (temps nil) (new nil)) | |
1571 (while (and p (or (symbolp (car-safe (car p))) (null (cadar p)))) | |
1572 (setq p (cdr p))) | |
1573 (and par p | |
1574 (progn | |
1575 (setq par nil p specs) | |
1576 (while p | |
1577 (or (cl-const-expr-p (cadar p)) | |
1578 (let ((temp (gensym))) | |
2153 | 1579 (push (list temp (cadar p)) temps) |
428 | 1580 (setcar (cdar p) temp))) |
1581 (setq p (cdr p))))) | |
1582 (while specs | |
1583 (if (and (consp (car specs)) (listp (caar specs))) | |
1584 (let* ((spec (caar specs)) (nspecs nil) | |
2153 | 1585 (expr (cadr (pop specs))) |
428 | 1586 (temp (cdr (or (assq spec loop-destr-temps) |
2153 | 1587 (car (push (cons spec (or (last spec 0) |
428 | 1588 (gensym))) |
1589 loop-destr-temps)))))) | |
2153 | 1590 (push (list temp expr) new) |
428 | 1591 (while (consp spec) |
2153 | 1592 (push (list (pop spec) |
428 | 1593 (and expr (list (if spec 'pop 'car) temp))) |
1594 nspecs)) | |
1595 (setq specs (nconc (nreverse nspecs) specs))) | |
2153 | 1596 (push (pop specs) new))) |
428 | 1597 (if (eq body 'setq) |
1598 (let ((set (cons (if par 'psetq 'setq) (apply 'nconc (nreverse new))))) | |
1599 (if temps (list 'let* (nreverse temps) set) set)) | |
1600 (list* (if par 'let 'let*) | |
1601 (nconc (nreverse temps) (nreverse new)) body)))) | |
1602 | |
1603 (defun cl-loop-handle-accum (def &optional func) ; uses args, loop-* | |
1604 (if (eq (car args) 'into) | |
1605 (let ((var (cl-pop2 args))) | |
1606 (or (memq var loop-accum-vars) | |
2153 | 1607 (progn (push (list (list var def)) loop-bindings) |
1608 (push var loop-accum-vars))) | |
428 | 1609 var) |
1610 (or loop-accum-var | |
1611 (progn | |
2153 | 1612 (push (list (list (setq loop-accum-var (gensym)) def)) |
428 | 1613 loop-bindings) |
1614 (setq loop-result (if func (list func loop-accum-var) | |
1615 loop-accum-var)) | |
1616 loop-accum-var)))) | |
1617 | |
1618 (defun cl-loop-build-ands (clauses) | |
1619 (let ((ands nil) | |
1620 (body nil)) | |
1621 (while clauses | |
1622 (if (and (eq (car-safe (car clauses)) 'progn) | |
1623 (eq (car (last (car clauses))) t)) | |
1624 (if (cdr clauses) | |
1625 (setq clauses (cons (nconc (butlast (car clauses)) | |
1626 (if (eq (car-safe (cadr clauses)) | |
1627 'progn) | |
1628 (cdadr clauses) | |
1629 (list (cadr clauses)))) | |
1630 (cddr clauses))) | |
2153 | 1631 (setq body (cdr (butlast (pop clauses))))) |
1632 (push (pop clauses) ands))) | |
428 | 1633 (setq ands (or (nreverse ands) (list t))) |
1634 (list (if (cdr ands) (cons 'and ands) (car ands)) | |
1635 body | |
1636 (let ((full (if body | |
1637 (append ands (list (cons 'progn (append body '(t))))) | |
1638 ands))) | |
1639 (if (cdr full) (cons 'and full) (car full)))))) | |
1640 | |
1641 | |
1642 ;;; Other iteration control structures. | |
1643 | |
1644 ;;;###autoload | |
1645 (defmacro do (steps endtest &rest body) | |
1646 "The Common Lisp `do' loop. | |
1647 Format is: (do ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)" | |
1648 (cl-expand-do-loop steps endtest body nil)) | |
1649 | |
1650 ;;;###autoload | |
1651 (defmacro do* (steps endtest &rest body) | |
1652 "The Common Lisp `do*' loop. | |
1653 Format is: (do* ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)" | |
1654 (cl-expand-do-loop steps endtest body t)) | |
1655 | |
1656 (defun cl-expand-do-loop (steps endtest body star) | |
1657 (list 'block nil | |
1658 (list* (if star 'let* 'let) | |
1659 (mapcar #'(lambda (c) (if (consp c) (list (car c) (nth 1 c)) c)) | |
1660 steps) | |
1661 (list* 'while (list 'not (car endtest)) | |
1662 (append body | |
1663 (let ((sets (mapcar | |
1664 #'(lambda (c) | |
1665 (and (consp c) (cdr (cdr c)) | |
1666 (list (car c) (nth 2 c)))) | |
1667 steps))) | |
1668 (setq sets (delq nil sets)) | |
1669 (and sets | |
1670 (list (cons (if (or star (not (cdr sets))) | |
1671 'setq 'psetq) | |
1672 (apply 'append sets))))))) | |
1673 (or (cdr endtest) '(nil))))) | |
1674 | |
1675 ;;;###autoload | |
1676 (defmacro dolist (spec &rest body) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1677 "Loop over a list. |
428 | 1678 Evaluate BODY with VAR bound to each `car' from LIST, in turn. |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1679 Then evaluate RESULT to get return value, default nil. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1680 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1681 arguments: ((VAR LIST &optional RESULT) &body BODY)" |
428 | 1682 (let ((temp (gensym "--dolist-temp--"))) |
1683 (list 'block nil | |
1684 (list* 'let (list (list temp (nth 1 spec)) (car spec)) | |
1685 (list* 'while temp (list 'setq (car spec) (list 'car temp)) | |
1686 (append body (list (list 'setq temp | |
1687 (list 'cdr temp))))) | |
1688 (if (cdr (cdr spec)) | |
1689 (cons (list 'setq (car spec) nil) (cdr (cdr spec))) | |
1690 '(nil)))))) | |
1691 | |
1692 ;;;###autoload | |
1693 (defmacro dotimes (spec &rest body) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1694 "Loop a certain number of times. |
428 | 1695 Evaluate BODY with VAR bound to successive integers from 0, inclusive, |
1696 to COUNT, exclusive. Then evaluate RESULT to get return value, default | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1697 nil. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1698 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1699 arguments: ((VAR COUNT &optional RESULT) &body BODY)" |
428 | 1700 (let ((temp (gensym "--dotimes-temp--"))) |
1701 (list 'block nil | |
1702 (list* 'let (list (list temp (nth 1 spec)) (list (car spec) 0)) | |
1703 (list* 'while (list '< (car spec) temp) | |
1704 (append body (list (list 'incf (car spec))))) | |
1705 (or (cdr (cdr spec)) '(nil)))))) | |
1706 | |
1707 ;;;###autoload | |
1708 (defmacro do-symbols (spec &rest body) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1709 "Loop over all symbols. |
428 | 1710 Evaluate BODY with VAR bound to each interned symbol, or to each symbol |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1711 from OBARRAY. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1712 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1713 arguments: ((VAR &optional OBARRAY RESULT) &body BODY)" |
428 | 1714 ;; Apparently this doesn't have an implicit block. |
1715 (list 'block nil | |
1716 (list 'let (list (car spec)) | |
1717 (list* 'mapatoms | |
1718 (list 'function (list* 'lambda (list (car spec)) body)) | |
1719 (and (cadr spec) (list (cadr spec)))) | |
1720 (caddr spec)))) | |
1721 | |
1722 ;;;###autoload | |
1723 (defmacro do-all-symbols (spec &rest body) | |
1724 (list* 'do-symbols (list (car spec) nil (cadr spec)) body)) | |
1725 | |
1726 | |
1727 ;;; Assignments. | |
1728 | |
1729 ;;;###autoload | |
1730 (defmacro psetq (&rest args) | |
1731 "(psetq SYM VAL SYM VAL ...): set SYMs to the values VALs in parallel. | |
1732 This is like `setq', except that all VAL forms are evaluated (in order) | |
1733 before assigning any symbols SYM to the corresponding values." | |
1734 (cons 'psetf args)) | |
1735 | |
1736 | |
1737 ;;; Binding control structures. | |
1738 | |
1739 ;;;###autoload | |
1740 (defmacro progv (symbols values &rest body) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
1741 "Bind SYMBOLS to VALUES dynamically in BODY. |
428 | 1742 The forms SYMBOLS and VALUES are evaluated, and must evaluate to lists. |
1743 Each SYMBOL in the first list is bound to the corresponding VALUE in the | |
1744 second list (or made unbound if VALUES is shorter than SYMBOLS); then the | |
1745 BODY forms are executed and their result is returned. This is much like | |
1746 a `let' form, except that the list of symbols can be computed at run-time." | |
1747 (list 'let '((cl-progv-save nil)) | |
1748 (list 'unwind-protect | |
1749 (list* 'progn (list 'cl-progv-before symbols values) body) | |
1750 '(cl-progv-after)))) | |
1751 | |
1752 ;;; This should really have some way to shadow 'byte-compile properties, etc. | |
1753 ;;;###autoload | |
1754 (defmacro flet (bindings &rest body) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1755 "Make temporary function definitions. |
428 | 1756 This is an analogue of `let' that operates on the function cell of FUNC |
1757 rather than its value cell. The FORMs are evaluated with the specified | |
1758 function definitions in place, then the definitions are undone (the FUNCs | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1759 go back to their previous definitions, or lack thereof). |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1760 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1761 arguments: (((FUNC ARGLIST &body BODY) &rest FUNCTIONS) &body FORM)" |
428 | 1762 (list* 'letf* |
1763 (mapcar | |
1764 #'(lambda (x) | |
1765 (if (or (and (fboundp (car x)) | |
1766 (eq (car-safe (symbol-function (car x))) 'macro)) | |
1767 (cdr (assq (car x) cl-macro-environment))) | |
1768 (error "Use `labels', not `flet', to rebind macro names")) | |
1769 (let ((func (list 'function* | |
1770 (list 'lambda (cadr x) | |
1771 (list* 'block (car x) (cddr x)))))) | |
1772 (if (and (cl-compiling-file) | |
1773 (boundp 'byte-compile-function-environment)) | |
2153 | 1774 (push (cons (car x) (eval func)) |
428 | 1775 byte-compile-function-environment)) |
1776 (list (list 'symbol-function (list 'quote (car x))) func))) | |
1777 bindings) | |
1778 body)) | |
1779 | |
1780 ;;;###autoload | |
1781 (defmacro labels (bindings &rest body) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1782 "Make temporary func bindings. |
428 | 1783 This is like `flet', except the bindings are lexical instead of dynamic. |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1784 Unlike `flet', this macro is fully compliant with the Common Lisp standard. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1785 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1786 arguments: (((FUNC ARGLIST &body BODY) &rest FUNCTIONS) &body FORM)" |
428 | 1787 (let ((vars nil) (sets nil) (cl-macro-environment cl-macro-environment)) |
1788 (while bindings | |
1789 (let ((var (gensym))) | |
2153 | 1790 (push var vars) |
1791 (push (list 'function* (cons 'lambda (cdar bindings))) sets) | |
1792 (push var sets) | |
1793 (push (list (car (pop bindings)) 'lambda '(&rest cl-labels-args) | |
428 | 1794 (list 'list* '(quote funcall) (list 'quote var) |
1795 'cl-labels-args)) | |
1796 cl-macro-environment))) | |
1797 (cl-macroexpand-all (list* 'lexical-let vars (cons (cons 'setq sets) body)) | |
1798 cl-macro-environment))) | |
1799 | |
1800 ;; The following ought to have a better definition for use with newer | |
1801 ;; byte compilers. | |
1802 ;;;###autoload | |
1803 (defmacro macrolet (bindings &rest body) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1804 "Make temporary macro definitions. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1805 This is like `flet', but for macros instead of functions. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1806 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1807 arguments: (((NAME ARGLIST &optional DOCSTRING &body body) &rest MACROS) &body FORM)" |
428 | 1808 (if (cdr bindings) |
1809 (list 'macrolet | |
1810 (list (car bindings)) (list* 'macrolet (cdr bindings) body)) | |
1811 (if (null bindings) (cons 'progn body) | |
1812 (let* ((name (caar bindings)) | |
1813 (res (cl-transform-lambda (cdar bindings) name))) | |
1814 (eval (car res)) | |
1815 (cl-macroexpand-all (cons 'progn body) | |
1816 (cons (list* name 'lambda (cdr res)) | |
1817 cl-macro-environment)))))) | |
1818 | |
1819 ;;;###autoload | |
1820 (defmacro symbol-macrolet (bindings &rest body) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1821 "Make symbol macro definitions. |
428 | 1822 Within the body FORMs, references to the variable NAME will be replaced |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1823 by EXPANSION, and (setq NAME ...) will act like (setf EXPANSION ...). |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1824 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1825 arguments: (((NAME EXPANSION) &rest SYMBOL-MACROS) &body FORM)" |
428 | 1826 (if (cdr bindings) |
1827 (list 'symbol-macrolet | |
1828 (list (car bindings)) (list* 'symbol-macrolet (cdr bindings) body)) | |
1829 (if (null bindings) (cons 'progn body) | |
1830 (cl-macroexpand-all (cons 'progn body) | |
1831 (cons (list (symbol-name (caar bindings)) | |
1832 (cadar bindings)) | |
1833 cl-macro-environment))))) | |
1834 | |
1835 (defvar cl-closure-vars nil) | |
1836 ;;;###autoload | |
1837 (defmacro lexical-let (bindings &rest body) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
1838 "Like `let', but lexically scoped. |
428 | 1839 The main visible difference is that lambdas inside BODY will create |
1840 lexical closures as in Common Lisp." | |
1841 (let* ((cl-closure-vars cl-closure-vars) | |
1842 (vars (mapcar #'(lambda (x) | |
1843 (or (consp x) (setq x (list x))) | |
2153 | 1844 (push (gensym (format "--%s--" (car x))) |
428 | 1845 cl-closure-vars) |
2153 | 1846 (set (car cl-closure-vars) [bad-lexical-ref]) |
428 | 1847 (list (car x) (cadr x) (car cl-closure-vars))) |
1848 bindings)) | |
1849 (ebody | |
1850 (cl-macroexpand-all | |
1851 (cons 'progn body) | |
1852 (nconc (mapcar #'(lambda (x) | |
1853 (list (symbol-name (car x)) | |
1854 (list 'symbol-value (caddr x)) | |
1855 t)) | |
1856 vars) | |
1857 (list '(defun . cl-defun-expander)) | |
1858 cl-macro-environment)))) | |
1859 (if (not (get (car (last cl-closure-vars)) 'used)) | |
1860 (list 'let (mapcar #'(lambda (x) (list (caddr x) (cadr x))) vars) | |
1861 (sublis (mapcar #'(lambda (x) | |
1862 (cons (caddr x) (list 'quote (caddr x)))) | |
1863 vars) | |
1864 ebody)) | |
1865 (list 'let (mapcar #'(lambda (x) | |
1866 (list (caddr x) | |
1867 (list 'make-symbol | |
1868 (format "--%s--" (car x))))) | |
1869 vars) | |
1870 (apply 'append '(setf) | |
1871 (mapcar #'(lambda (x) | |
1872 (list (list 'symbol-value (caddr x)) (cadr x))) | |
1873 vars)) | |
1874 ebody)))) | |
1875 | |
1876 ;;;###autoload | |
1877 (defmacro lexical-let* (bindings &rest body) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
1878 "Like `let*', but lexically scoped. |
428 | 1879 The main visible difference is that lambdas inside BODY will create |
1880 lexical closures as in Common Lisp." | |
1881 (if (null bindings) (cons 'progn body) | |
1882 (setq bindings (reverse bindings)) | |
1883 (while bindings | |
2153 | 1884 (setq body (list (list* 'lexical-let (list (pop bindings)) body)))) |
428 | 1885 (car body))) |
1886 | |
1887 (defun cl-defun-expander (func &rest rest) | |
1888 (list 'progn | |
1889 (list 'defalias (list 'quote func) | |
1890 (list 'function (cons 'lambda rest))) | |
1891 (list 'quote func))) | |
1892 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1893 ;;; Multiple values. We support full Common Lisp conventions here. |
428 | 1894 |
1895 ;;;###autoload | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1896 (defmacro multiple-value-bind (syms form &rest body) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1897 "Collect and bind multiple return values. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1898 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1899 If FORM returns multiple values, each symbol in SYMS is bound to one of |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1900 them, in order, and BODY is executed. If FORM returns fewer multiple values |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1901 than there are SYMS, remaining SYMS are bound to nil. If FORM does |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1902 not return multiple values, it is treated as returning one multiple value. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1903 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1904 Returns the value given by the last element of BODY." |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1905 (if (null syms) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1906 `(progn ,form ,@body) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1907 (if (= 1 (length syms)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1908 ;; Code written to deal with other "implementations" of multiple |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1909 ;; values may have a one-element SYMS. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1910 `(let ((,(car syms) ,form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1911 ,@body) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1912 (let ((temp (gensym))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1913 `(let* ((,temp (multiple-value-list-internal 0 ,(length syms) ,form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1914 ,@(loop |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1915 for var in syms |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1916 collect `(,var (prog1 (car ,temp) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1917 (setq ,temp (cdr ,temp)))))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1918 ,@body))))) |
428 | 1919 |
1920 ;;;###autoload | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1921 (defmacro multiple-value-setq (syms form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1922 "Collect and set multiple values. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1923 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1924 FORM should normally return multiple values; the first N values are stored |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1925 in the symbols in SYMS in turn. If FORM returns fewer than N values, the |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1926 remaining symbols have their values set to nil. FORM not returning multiple |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1927 values is treated as FORM returning one multiple value, with other elements |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1928 of SYMS initialized to nil. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1929 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1930 Returns the first of the multiple values given by FORM." |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1931 (if (null syms) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1932 ;; Never return multiple values from multiple-value-setq: |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1933 (and form `(values ,form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1934 (if (= 1 (length syms)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1935 `(setq ,(car syms) ,form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1936 (let ((temp (gensym))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1937 `(let* ((,temp (multiple-value-list-internal 0 ,(length syms) ,form))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1938 (setq ,@(loop |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1939 for sym in syms |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1940 nconc `(,sym (car-safe ,temp) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1941 ,temp (cdr-safe ,temp)))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1942 ,(car syms)))))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1943 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1944 ;;;###autoload |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1945 (defmacro multiple-value-list (form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1946 "Evaluate FORM and return a list of the multiple values it returned." |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1947 `(multiple-value-list-internal 0 multiple-values-limit ,form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1948 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1949 ;;;###autoload |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1950 (defmacro nth-value (n form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1951 "Evaluate FORM and return the Nth multiple value it returned." |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1952 (if (integerp n) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1953 `(car (multiple-value-list-internal ,n ,(1+ n) ,form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1954 (let ((temp (gensym))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1955 `(let ((,temp ,n)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1956 (car (multiple-value-list-internal ,temp (1+ ,temp) ,form)))))) |
428 | 1957 |
1958 ;;; Declarations. | |
1959 | |
1960 ;;;###autoload | |
1961 (defmacro locally (&rest body) (cons 'progn body)) | |
1962 ;;;###autoload | |
5263
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1963 (defmacro the (type form) |
5269
90a0084b3541
Rephrase the #'the docstring, make it nicer while byte-compiling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5266
diff
changeset
|
1964 "Assert that FORM gives a result of type TYPE, and return that result. |
5263
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1965 |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1966 TYPE is a Common Lisp type specifier. |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1967 |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1968 If macro expansion of a `the' form happens during byte compilation, and the |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1969 byte compiler customization variable `byte-compile-delete-errors' is |
5269
90a0084b3541
Rephrase the #'the docstring, make it nicer while byte-compiling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5266
diff
changeset
|
1970 non-nil, `the' is equivalent to FORM without any type checks." |
5263
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1971 (if (cl-safe-expr-p form) |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1972 `(prog1 ,form (assert ,(cl-make-type-test form type) t)) |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1973 (let ((saved (gensym))) |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1974 `(let ((,saved ,form)) |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1975 (prog1 ,saved (assert ,(cl-make-type-test saved type) t)))))) |
428 | 1976 |
1977 (defvar cl-proclaim-history t) ; for future compilers | |
1978 (defvar cl-declare-stack t) ; for future compilers | |
1979 | |
1980 (defun cl-do-proclaim (spec hist) | |
2153 | 1981 (and hist (listp cl-proclaim-history) (push spec cl-proclaim-history)) |
428 | 1982 (cond ((eq (car-safe spec) 'special) |
1983 (if (boundp 'byte-compile-bound-variables) | |
1984 (setq byte-compile-bound-variables | |
442 | 1985 (append |
2153 | 1986 ;; XEmacs change |
442 | 1987 (mapcar #'(lambda (v) (cons v byte-compile-global-bit)) |
1988 (cdr spec)) | |
1989 byte-compile-bound-variables)))) | |
428 | 1990 |
1991 ((eq (car-safe spec) 'inline) | |
1992 (while (setq spec (cdr spec)) | |
1993 (or (memq (get (car spec) 'byte-optimizer) | |
1994 '(nil byte-compile-inline-expand)) | |
1995 (error "%s already has a byte-optimizer, can't make it inline" | |
1996 (car spec))) | |
1997 (put (car spec) 'byte-optimizer 'byte-compile-inline-expand))) | |
1998 | |
1999 ((eq (car-safe spec) 'notinline) | |
2000 (while (setq spec (cdr spec)) | |
2001 (if (eq (get (car spec) 'byte-optimizer) | |
2002 'byte-compile-inline-expand) | |
2003 (put (car spec) 'byte-optimizer nil)))) | |
2004 | |
2005 ((eq (car-safe spec) 'optimize) | |
2006 (let ((speed (assq (nth 1 (assq 'speed (cdr spec))) | |
446 | 2007 '((0 . nil) (1 . t) (2 . t) (3 . t)))) |
428 | 2008 (safety (assq (nth 1 (assq 'safety (cdr spec))) |
446 | 2009 '((0 . t) (1 . t) (2 . t) (3 . nil))))) |
2010 (when speed | |
2011 (setq cl-optimize-speed (car speed) | |
2012 byte-optimize (cdr speed))) | |
2013 (when safety | |
2014 (setq cl-optimize-safety (car safety) | |
2015 byte-compile-delete-errors (cdr safety))))) | |
428 | 2016 |
2017 ((and (eq (car-safe spec) 'warn) (boundp 'byte-compile-warnings)) | |
2018 (if (eq byte-compile-warnings t) | |
2019 ;; XEmacs change | |
2020 (setq byte-compile-warnings byte-compile-default-warnings)) | |
2021 (while (setq spec (cdr spec)) | |
2022 (if (consp (car spec)) | |
2023 (if (eq (cadar spec) 0) | |
2024 (setq byte-compile-warnings | |
2025 (delq (caar spec) byte-compile-warnings)) | |
2026 (setq byte-compile-warnings | |
2027 (adjoin (caar spec) byte-compile-warnings))))))) | |
2028 nil) | |
2029 | |
2030 ;;; Process any proclamations made before cl-macs was loaded. | |
2031 (defvar cl-proclaims-deferred) | |
2032 (let ((p (reverse cl-proclaims-deferred))) | |
2153 | 2033 (while p (cl-do-proclaim (pop p) t)) |
428 | 2034 (setq cl-proclaims-deferred nil)) |
2035 | |
2036 ;;;###autoload | |
2037 (defmacro declare (&rest specs) | |
2038 (if (cl-compiling-file) | |
2039 (while specs | |
2153 | 2040 (if (listp cl-declare-stack) (push (car specs) cl-declare-stack)) |
2041 (cl-do-proclaim (pop specs) nil))) | |
428 | 2042 nil) |
2043 | |
2044 | |
2045 | |
2046 ;;; Generalized variables. | |
2047 | |
2048 ;;;###autoload | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2049 (defmacro define-setf-method (name arglist &rest body) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2050 "Define a `setf' method. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2051 This method shows how to handle `setf's to places of the form (NAME ARGLIST...). |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2052 The argument forms are bound according to ARGLIST, as if NAME were |
428 | 2053 going to be expanded as a macro, then the BODY forms are executed and must |
2054 return a list of five elements: a temporary-variables list, a value-forms | |
2055 list, a store-variables list (of length one), a store-form, and an access- | |
2056 form. See `defsetf' for a simpler way to define most setf-methods." | |
2057 (append '(eval-when (compile load eval)) | |
2058 (if (stringp (car body)) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2059 (list (list 'put (list 'quote name) '(quote setf-documentation) |
2153 | 2060 (pop body)))) |
428 | 2061 (list (cl-transform-function-property |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2062 name 'setf-method (cons arglist body))))) |
2153 | 2063 (defalias 'define-setf-expander 'define-setf-method) |
428 | 2064 |
2065 ;;;###autoload | |
2066 (defmacro defsetf (func arg1 &rest args) | |
2067 "(defsetf NAME FUNC): define a `setf' method. | |
2068 This macro is an easy-to-use substitute for `define-setf-method' that works | |
2069 well for simple place forms. In the simple `defsetf' form, `setf's of | |
2070 the form (setf (NAME ARGS...) VAL) are transformed to function or macro | |
2071 calls of the form (FUNC ARGS... VAL). Example: (defsetf aref aset). | |
2072 Alternate form: (defsetf NAME ARGLIST (STORE) BODY...). | |
2073 Here, the above `setf' call is expanded by binding the argument forms ARGS | |
2074 according to ARGLIST, binding the value form VAL to STORE, then executing | |
2075 BODY, which must return a Lisp form that does the necessary `setf' operation. | |
2076 Actually, ARGLIST and STORE may be bound to temporary variables which are | |
2077 introduced automatically to preserve proper execution order of the arguments. | |
2078 Example: (defsetf nth (n x) (v) (list 'setcar (list 'nthcdr n x) v))." | |
2079 (if (listp arg1) | |
2080 (let* ((largs nil) (largsr nil) | |
2081 (temps nil) (tempsr nil) | |
2082 (restarg nil) (rest-temps nil) | |
2083 (store-var (car (prog1 (car args) (setq args (cdr args))))) | |
2084 (store-temp (intern (format "--%s--temp--" store-var))) | |
2085 (lets1 nil) (lets2 nil) | |
2086 (docstr nil) (p arg1)) | |
2087 (if (stringp (car args)) | |
2088 (setq docstr (prog1 (car args) (setq args (cdr args))))) | |
2089 (while (and p (not (eq (car p) '&aux))) | |
2090 (if (eq (car p) '&rest) | |
2091 (setq p (cdr p) restarg (car p)) | |
2092 (or (memq (car p) '(&optional &key &allow-other-keys)) | |
2093 (setq largs (cons (if (consp (car p)) (car (car p)) (car p)) | |
2094 largs) | |
2095 temps (cons (intern (format "--%s--temp--" (car largs))) | |
2096 temps)))) | |
2097 (setq p (cdr p))) | |
2098 (setq largs (nreverse largs) temps (nreverse temps)) | |
2099 (if restarg | |
2100 (setq largsr (append largs (list restarg)) | |
2101 rest-temps (intern (format "--%s--temp--" restarg)) | |
2102 tempsr (append temps (list rest-temps))) | |
2103 (setq largsr largs tempsr temps)) | |
2104 (let ((p1 largs) (p2 temps)) | |
2105 (while p1 | |
2106 (setq lets1 (cons (list (car p2) | |
2107 (list 'gensym (format "--%s--" (car p1)))) | |
2108 lets1) | |
2109 lets2 (cons (list (car p1) (car p2)) lets2) | |
2110 p1 (cdr p1) p2 (cdr p2)))) | |
2111 (if restarg (setq lets2 (cons (list restarg rest-temps) lets2))) | |
2112 (append (list 'define-setf-method func arg1) | |
2113 (and docstr (list docstr)) | |
2114 (list | |
2115 (list 'let* | |
2116 (nreverse | |
2117 (cons (list store-temp | |
2118 (list 'gensym (format "--%s--" store-var))) | |
2119 (if restarg | |
2120 (append | |
2121 (list | |
2122 (list rest-temps | |
2123 (list 'mapcar '(quote gensym) | |
2124 restarg))) | |
2125 lets1) | |
2126 lets1))) | |
2127 (list 'list ; 'values | |
2128 (cons (if restarg 'list* 'list) tempsr) | |
2129 (cons (if restarg 'list* 'list) largsr) | |
2130 (list 'list store-temp) | |
2131 (cons 'let* | |
2132 (cons (nreverse | |
2133 (cons (list store-var store-temp) | |
2134 lets2)) | |
2135 args)) | |
2136 (cons (if restarg 'list* 'list) | |
2137 (cons (list 'quote func) tempsr))))))) | |
2138 (list 'defsetf func '(&rest args) '(store) | |
2139 (let ((call (list 'cons (list 'quote arg1) | |
2140 '(append args (list store))))) | |
2141 (if (car args) | |
2142 (list 'list '(quote progn) call 'store) | |
2143 call))))) | |
2144 | |
2145 ;;; Some standard place types from Common Lisp. | |
2153 | 2146 (eval-when-compile (defvar ignored-arg)) ; XEmacs: warning suppression |
428 | 2147 (defsetf aref aset) |
2148 (defsetf car setcar) | |
2149 (defsetf cdr setcdr) | |
2153 | 2150 (defsetf caar (x) (val) (list 'setcar (list 'car x) val)) |
2151 (defsetf cadr (x) (val) (list 'setcar (list 'cdr x) val)) | |
2152 (defsetf cdar (x) (val) (list 'setcdr (list 'car x) val)) | |
2153 (defsetf cddr (x) (val) (list 'setcdr (list 'cdr x) val)) | |
428 | 2154 (defsetf elt (seq n) (store) |
2155 (list 'if (list 'listp seq) (list 'setcar (list 'nthcdr n seq) store) | |
2156 (list 'aset seq n store))) | |
2153 | 2157 ;; XEmacs change: ignore the optional DEFAULT arguments |
428 | 2158 (defsetf get (x y &optional ignored-arg) (store) (list 'put x y store)) |
2159 (defsetf get* (x y &optional ignored-arg) (store) (list 'put x y store)) | |
2153 | 2160 (defsetf gethash (x h &optional ignored-arg) (store) (list 'puthash x store h)) |
428 | 2161 (defsetf nth (n x) (store) (list 'setcar (list 'nthcdr n x) store)) |
2162 (defsetf subseq (seq start &optional end) (new) | |
2153 | 2163 (list 'progn (list 'replace seq new :start1 start :end1 end) new)) |
428 | 2164 (defsetf symbol-function fset) |
2165 (defsetf symbol-plist setplist) | |
2166 (defsetf symbol-value set) | |
2167 | |
2168 ;;; Various car/cdr aliases. Note that `cadr' is handled specially. | |
2169 (defsetf first setcar) | |
2170 (defsetf second (x) (store) (list 'setcar (list 'cdr x) store)) | |
2171 (defsetf third (x) (store) (list 'setcar (list 'cddr x) store)) | |
2172 (defsetf fourth (x) (store) (list 'setcar (list 'cdddr x) store)) | |
2173 (defsetf fifth (x) (store) (list 'setcar (list 'nthcdr 4 x) store)) | |
2174 (defsetf sixth (x) (store) (list 'setcar (list 'nthcdr 5 x) store)) | |
2175 (defsetf seventh (x) (store) (list 'setcar (list 'nthcdr 6 x) store)) | |
2176 (defsetf eighth (x) (store) (list 'setcar (list 'nthcdr 7 x) store)) | |
2177 (defsetf ninth (x) (store) (list 'setcar (list 'nthcdr 8 x) store)) | |
2178 (defsetf tenth (x) (store) (list 'setcar (list 'nthcdr 9 x) store)) | |
2179 (defsetf rest setcdr) | |
2180 | |
2181 ;;; Some more Emacs-related place types. | |
2182 (defsetf buffer-file-name set-visited-file-name t) | |
2153 | 2183 ;; XEmacs change: we do not need to wrap this in with-current-buffer |
428 | 2184 (defsetf buffer-modified-p set-buffer-modified-p t) |
2185 (defsetf buffer-name rename-buffer t) | |
2186 (defsetf buffer-string () (store) | |
2187 (list 'progn '(erase-buffer) (list 'insert store))) | |
2188 (defsetf buffer-substring cl-set-buffer-substring) | |
2189 (defsetf current-buffer set-buffer) | |
2190 (defsetf current-case-table set-case-table) | |
2191 (defsetf current-column move-to-column t) | |
2192 (defsetf current-global-map use-global-map t) | |
2193 (defsetf current-input-mode () (store) | |
2194 (list 'progn (list 'apply 'set-input-mode store) store)) | |
2195 (defsetf current-local-map use-local-map t) | |
2196 (defsetf current-window-configuration set-window-configuration t) | |
2197 (defsetf default-file-modes set-default-file-modes t) | |
2198 (defsetf default-value set-default) | |
2199 (defsetf documentation-property put) | |
2153 | 2200 ;;(defsetf extent-data set-extent-data) |
428 | 2201 (defsetf extent-face set-extent-face) |
2202 (defsetf extent-priority set-extent-priority) | |
2153 | 2203 ;; XEmacs addition |
428 | 2204 (defsetf extent-property (x y &optional ignored-arg) (arg) |
2205 (list 'set-extent-property x y arg)) | |
2153 | 2206 (defsetf extent-end-position (ext) (store) |
2207 `(progn (set-extent-endpoints ,ext (extent-start-position ,ext) ,store) | |
2208 ,store)) | |
428 | 2209 (defsetf extent-start-position (ext) (store) |
2210 `(progn (set-extent-endpoints ,ext ,store (extent-end-position ,ext)) | |
2211 ,store)) | |
2212 (defsetf face-background (f &optional s) (x) (list 'set-face-background f x s)) | |
2213 (defsetf face-background-pixmap (f &optional s) (x) | |
2214 (list 'set-face-background-pixmap f x s)) | |
5080
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5076
diff
changeset
|
2215 (defsetf face-background-placement (f &optional s) (x) |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5076
diff
changeset
|
2216 (list 'set-face-background-placement f x s)) |
428 | 2217 (defsetf face-font (f &optional s) (x) (list 'set-face-font f x s)) |
2218 (defsetf face-foreground (f &optional s) (x) (list 'set-face-foreground f x s)) | |
2219 (defsetf face-underline-p (f &optional s) (x) | |
2220 (list 'set-face-underline-p f x s)) | |
2221 (defsetf file-modes set-file-modes t) | |
2153 | 2222 (defsetf frame-height (&optional f) (v) |
2223 `(progn (set-frame-height ,f ,v) ,v)) | |
428 | 2224 (defsetf frame-parameters modify-frame-parameters t) |
2225 (defsetf frame-visible-p cl-set-frame-visible-p) | |
2153 | 2226 (defsetf frame-width (&optional f) (v) |
2227 `(progn (set-frame-width ,f ,v) ,v)) | |
2228 ;; XEmacs change: frame-properties instead of frame-parameters | |
428 | 2229 (defsetf frame-properties (&optional f) (p) |
2230 `(progn (set-frame-properties ,f ,p) ,p)) | |
2231 (defsetf frame-property (f p &optional ignored-arg) (v) | |
2232 `(progn (set-frame-property ,f ,v) ,p)) | |
2153 | 2233 ;; XEmacs addition |
428 | 2234 (defsetf current-frame-configuration set-frame-configuration) |
2235 | |
2236 ;; XEmacs: new stuff | |
2237 ;; Consoles | |
2238 (defsetf selected-console select-console t) | |
2239 (defsetf selected-device select-device t) | |
2240 (defsetf device-baud-rate (&optional d) (v) | |
2241 `(set-device-baud-rate ,d ,v)) | |
2242 ;; This setf method is a bad idea, because set-specifier *adds* a | |
2243 ;; specification, rather than just setting it. The net effect is that | |
2244 ;; it makes specifier-instance return VAL, but other things don't work | |
2245 ;; as expected -- letf, to name one. | |
2246 ;(defsetf specifier-instance (spec &optional dom def nof) (val) | |
2247 ; `(set-specifier ,spec ,val ,dom)) | |
2248 | |
2249 ;; Annotations | |
2250 (defsetf annotation-glyph set-annotation-glyph) | |
2251 (defsetf annotation-down-glyph set-annotation-down-glyph) | |
2252 (defsetf annotation-face set-annotation-face) | |
2253 (defsetf annotation-layout set-annotation-layout) | |
2254 (defsetf annotation-data set-annotation-data) | |
2255 (defsetf annotation-action set-annotation-action) | |
2256 (defsetf annotation-menu set-annotation-menu) | |
2257 ;; Widget | |
2258 (defsetf widget-get widget-put t) | |
2259 (defsetf widget-value widget-value-set t) | |
2260 | |
2261 ;; Misc | |
2262 (defsetf recent-keys-ring-size set-recent-keys-ring-size) | |
2263 (defsetf symbol-value-in-buffer (s b &optional ignored-arg) (store) | |
2264 `(with-current-buffer ,b (set ,s ,store))) | |
2265 (defsetf symbol-value-in-console (s c &optional ignored-arg) (store) | |
2266 `(letf (((selected-console) ,c)) | |
2267 (set ,s ,store))) | |
2268 | |
2269 (defsetf buffer-dedicated-frame (&optional b) (v) | |
2270 `(set-buffer-dedicated-frame ,b ,v)) | |
2271 (defsetf console-type-image-conversion-list | |
2272 set-console-type-image-conversion-list) | |
2273 (defsetf default-toolbar-position set-default-toolbar-position) | |
2274 (defsetf device-class (&optional d) (v) | |
2275 `(set-device-class ,d ,v)) | |
2276 (defsetf extent-begin-glyph set-extent-begin-glyph) | |
2277 (defsetf extent-begin-glyph-layout set-extent-begin-glyph-layout) | |
2278 (defsetf extent-end-glyph set-extent-end-glyph) | |
2279 (defsetf extent-end-glyph-layout set-extent-end-glyph-layout) | |
2280 (defsetf extent-keymap set-extent-keymap) | |
2281 (defsetf extent-parent set-extent-parent) | |
2282 (defsetf extent-properties set-extent-properties) | |
2283 ;; Avoid adding various face and glyph functions. | |
2284 (defsetf frame-selected-window (&optional f) (v) | |
2285 `(set-frame-selected-window ,f ,v)) | |
2286 (defsetf glyph-image (glyph &optional domain) (i) | |
2287 (list 'set-glyph-image glyph i domain)) | |
2288 (defsetf itimer-function set-itimer-function) | |
2289 (defsetf itimer-function-arguments set-itimer-function-arguments) | |
2290 (defsetf itimer-is-idle set-itimer-is-idle) | |
2291 (defsetf itimer-recorded-run-time set-itimer-recorded-run-time) | |
2292 (defsetf itimer-restart set-itimer-restart) | |
2293 (defsetf itimer-uses-arguments set-itimer-uses-arguments) | |
2294 (defsetf itimer-value set-itimer-value) | |
2295 (defsetf keymap-parents set-keymap-parents) | |
2296 (defsetf marker-insertion-type set-marker-insertion-type) | |
2297 (defsetf mouse-pixel-position (&optional d) (v) | |
2298 `(progn | |
2299 (set-mouse-pixel-position ,d ,(car v) ,(car (cdr v)) ,(cdr (cdr v))) | |
2300 ,v)) | |
2301 (defsetf trunc-stack-length set-trunc-stack-length) | |
2302 (defsetf trunc-stack-stack set-trunc-stack-stack) | |
2303 (defsetf undoable-stack-max set-undoable-stack-max) | |
2304 (defsetf weak-list-list set-weak-list-list) | |
2153 | 2305 ;; End of new XEmacs stuff |
428 | 2306 |
2307 (defsetf getenv setenv t) | |
2308 (defsetf get-register set-register) | |
2309 (defsetf global-key-binding global-set-key) | |
2310 (defsetf keymap-parent set-keymap-parent) | |
2153 | 2311 ;; XEmacs addition: more keymap-related setf forms |
428 | 2312 (defsetf keymap-name set-keymap-name) |
2313 (defsetf keymap-prompt set-keymap-prompt) | |
2314 (defsetf keymap-default-binding set-keymap-default-binding) | |
2315 (defsetf local-key-binding local-set-key) | |
2316 (defsetf mark set-mark t) | |
2317 (defsetf mark-marker set-mark t) | |
2318 (defsetf marker-position set-marker t) | |
2319 (defsetf match-data store-match-data t) | |
2320 (defsetf mouse-position (scr) (store) | |
2321 (list 'set-mouse-position scr (list 'car store) (list 'cadr store) | |
2322 (list 'cddr store))) | |
2323 (defsetf overlay-get overlay-put) | |
2324 (defsetf overlay-start (ov) (store) | |
2325 (list 'progn (list 'move-overlay ov store (list 'overlay-end ov)) store)) | |
2326 (defsetf overlay-end (ov) (store) | |
2327 (list 'progn (list 'move-overlay ov (list 'overlay-start ov) store) store)) | |
2328 (defsetf point goto-char) | |
2329 (defsetf point-marker goto-char t) | |
2330 (defsetf point-max () (store) | |
2331 (list 'progn (list 'narrow-to-region '(point-min) store) store)) | |
2332 (defsetf point-min () (store) | |
2333 (list 'progn (list 'narrow-to-region store '(point-max)) store)) | |
2334 (defsetf process-buffer set-process-buffer) | |
2335 (defsetf process-filter set-process-filter) | |
2336 (defsetf process-sentinel set-process-sentinel) | |
2153 | 2337 ;;(defsetf process-get process-put) |
428 | 2338 (defsetf read-mouse-position (scr) (store) |
2339 (list 'set-mouse-position scr (list 'car store) (list 'cdr store))) | |
2153 | 2340 ;;(defsetf screen-height set-screen-height t) |
2341 ;;(defsetf screen-width set-screen-width t) | |
428 | 2342 (defsetf selected-window select-window) |
2153 | 2343 ;;(defsetf selected-screen select-screen) |
428 | 2344 (defsetf selected-frame select-frame) |
2345 (defsetf standard-case-table set-standard-case-table) | |
2346 (defsetf syntax-table set-syntax-table) | |
2347 (defsetf visited-file-modtime set-visited-file-modtime t) | |
2348 (defsetf window-buffer set-window-buffer t) | |
2349 (defsetf window-display-table set-window-display-table t) | |
2350 (defsetf window-dedicated-p set-window-dedicated-p t) | |
2351 (defsetf window-height (&optional window) (store) | |
2352 `(progn (enlarge-window (- ,store (window-height)) nil ,window) ,store)) | |
2353 (defsetf window-hscroll set-window-hscroll) | |
2354 (defsetf window-point set-window-point) | |
2355 (defsetf window-start set-window-start) | |
2356 (defsetf window-width (&optional window) (store) | |
2357 `(progn (enlarge-window (- ,store (window-width)) t ,window) ,store)) | |
2358 (defsetf x-get-cutbuffer x-store-cutbuffer t) | |
2359 (defsetf x-get-cut-buffer x-store-cut-buffer t) ; groan. | |
2360 (defsetf x-get-secondary-selection x-own-secondary-selection t) | |
2361 (defsetf x-get-selection x-own-selection t) | |
442 | 2362 (defsetf get-selection own-selection t) |
428 | 2363 |
2364 ;;; More complex setf-methods. | |
2365 ;;; These should take &environment arguments, but since full arglists aren't | |
2366 ;;; available while compiling cl-macs, we fake it by referring to the global | |
2367 ;;; variable cl-macro-environment directly. | |
2368 | |
2369 (define-setf-method apply (func arg1 &rest rest) | |
2370 (or (and (memq (car-safe func) '(quote function function*)) | |
2371 (symbolp (car-safe (cdr-safe func)))) | |
2372 (error "First arg to apply in setf is not (function SYM): %s" func)) | |
2373 (let* ((form (cons (nth 1 func) (cons arg1 rest))) | |
2374 (method (get-setf-method form cl-macro-environment))) | |
2375 (list (car method) (nth 1 method) (nth 2 method) | |
2376 (cl-setf-make-apply (nth 3 method) (cadr func) (car method)) | |
2377 (cl-setf-make-apply (nth 4 method) (cadr func) (car method))))) | |
2378 | |
2379 (defun cl-setf-make-apply (form func temps) | |
2380 (if (eq (car form) 'progn) | |
2381 (list* 'progn (cl-setf-make-apply (cadr form) func temps) (cddr form)) | |
2382 (or (equal (last form) (last temps)) | |
2383 (error "%s is not suitable for use with setf-of-apply" func)) | |
2384 (list* 'apply (list 'quote (car form)) (cdr form)))) | |
2385 | |
2386 (define-setf-method nthcdr (n place) | |
2387 (let ((method (get-setf-method place cl-macro-environment)) | |
2388 (n-temp (gensym "--nthcdr-n--")) | |
2389 (store-temp (gensym "--nthcdr-store--"))) | |
2390 (list (cons n-temp (car method)) | |
2391 (cons n (nth 1 method)) | |
2392 (list store-temp) | |
2393 (list 'let (list (list (car (nth 2 method)) | |
2394 (list 'cl-set-nthcdr n-temp (nth 4 method) | |
2395 store-temp))) | |
2396 (nth 3 method) store-temp) | |
2397 (list 'nthcdr n-temp (nth 4 method))))) | |
2398 | |
2399 (define-setf-method getf (place tag &optional def) | |
2400 (let ((method (get-setf-method place cl-macro-environment)) | |
2401 (tag-temp (gensym "--getf-tag--")) | |
2402 (def-temp (gensym "--getf-def--")) | |
2403 (store-temp (gensym "--getf-store--"))) | |
2404 (list (append (car method) (list tag-temp def-temp)) | |
2405 (append (nth 1 method) (list tag def)) | |
2406 (list store-temp) | |
2407 (list 'let (list (list (car (nth 2 method)) | |
2408 (list 'cl-set-getf (nth 4 method) | |
2409 tag-temp store-temp))) | |
2410 (nth 3 method) store-temp) | |
2411 (list 'getf (nth 4 method) tag-temp def-temp)))) | |
2412 | |
2413 (define-setf-method substring (place from &optional to) | |
2414 (let ((method (get-setf-method place cl-macro-environment)) | |
2415 (from-temp (gensym "--substring-from--")) | |
2416 (to-temp (gensym "--substring-to--")) | |
2417 (store-temp (gensym "--substring-store--"))) | |
2418 (list (append (car method) (list from-temp to-temp)) | |
2419 (append (nth 1 method) (list from to)) | |
2420 (list store-temp) | |
2421 (list 'let (list (list (car (nth 2 method)) | |
2422 (list 'cl-set-substring (nth 4 method) | |
2423 from-temp to-temp store-temp))) | |
2424 (nth 3 method) store-temp) | |
2425 (list 'substring (nth 4 method) from-temp to-temp)))) | |
2426 | |
2153 | 2427 ;; XEmacs addition |
428 | 2428 (define-setf-method values (&rest args) |
2429 (let ((methods (mapcar #'(lambda (x) | |
2430 (get-setf-method x cl-macro-environment)) | |
2431 args)) | |
2432 (store-temp (gensym "--values-store--"))) | |
2433 (list (apply 'append (mapcar 'first methods)) | |
2434 (apply 'append (mapcar 'second methods)) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2435 `((,store-temp |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2436 (multiple-value-list-internal 0 ,(if args (length args) 1)))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2437 (cons 'values |
428 | 2438 (mapcar #'(lambda (m) |
2439 (cl-setf-do-store (cons (car (third m)) (fourth m)) | |
2440 (list 'pop store-temp))) | |
2441 methods)) | |
2442 (cons 'list (mapcar 'fifth methods))))) | |
2443 | |
2444 ;;; Getting and optimizing setf-methods. | |
2445 ;;;###autoload | |
2446 (defun get-setf-method (place &optional env) | |
2447 "Return a list of five values describing the setf-method for PLACE. | |
2448 PLACE may be any Lisp form which can appear as the PLACE argument to | |
2449 a macro like `setf' or `incf'." | |
2450 (if (symbolp place) | |
2451 (let ((temp (gensym "--setf--"))) | |
2452 (list nil nil (list temp) (list 'setq place temp) place)) | |
2453 (or (and (symbolp (car place)) | |
2454 (let* ((func (car place)) | |
2455 (name (symbol-name func)) | |
2456 (method (get func 'setf-method)) | |
2457 (case-fold-search nil)) | |
2458 (or (and method | |
2459 (let ((cl-macro-environment env)) | |
2460 (setq method (apply method (cdr place)))) | |
2461 (if (and (consp method) (= (length method) 5)) | |
2462 method | |
2463 (error "Setf-method for %s returns malformed method" | |
2464 func))) | |
2465 (and (save-match-data | |
2466 (string-match "\\`c[ad][ad][ad]?[ad]?r\\'" name)) | |
2467 (get-setf-method (compiler-macroexpand place))) | |
2468 (and (eq func 'edebug-after) | |
2469 (get-setf-method (nth (1- (length place)) place) | |
2470 env))))) | |
2471 (if (eq place (setq place (macroexpand place env))) | |
2472 (if (and (symbolp (car place)) (fboundp (car place)) | |
2473 (symbolp (symbol-function (car place)))) | |
2474 (get-setf-method (cons (symbol-function (car place)) | |
2475 (cdr place)) env) | |
2476 (error "No setf-method known for %s" (car place))) | |
2477 (get-setf-method place env))))) | |
2478 | |
2479 (defun cl-setf-do-modify (place opt-expr) | |
2480 (let* ((method (get-setf-method place cl-macro-environment)) | |
2481 (temps (car method)) (values (nth 1 method)) | |
2482 (lets nil) (subs nil) | |
2483 (optimize (and (not (eq opt-expr 'no-opt)) | |
2484 (or (and (not (eq opt-expr 'unsafe)) | |
2485 (cl-safe-expr-p opt-expr)) | |
2486 (cl-setf-simple-store-p (car (nth 2 method)) | |
2487 (nth 3 method))))) | |
2488 (simple (and optimize (consp place) (cl-simple-exprs-p (cdr place))))) | |
2489 (while values | |
2490 (if (or simple (cl-const-expr-p (car values))) | |
2153 | 2491 (push (cons (pop temps) (pop values)) subs) |
2492 (push (list (pop temps) (pop values)) lets))) | |
428 | 2493 (list (nreverse lets) |
2494 (cons (car (nth 2 method)) (sublis subs (nth 3 method))) | |
2495 (sublis subs (nth 4 method))))) | |
2496 | |
2497 (defun cl-setf-do-store (spec val) | |
2498 (let ((sym (car spec)) | |
2499 (form (cdr spec))) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2500 (if (consp sym) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2501 ;; XEmacs change, only used for implementing #'values at the moment. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2502 (let* ((orig (copy-list sym)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2503 (intermediate (last orig)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2504 (circular-limit 32)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2505 (while (consp (car intermediate)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2506 (when (zerop circular-limit) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2507 (error 'circular-list "Form seems to contain loops")) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2508 (setq intermediate (last (car intermediate)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2509 circular-limit (1- circular-limit))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2510 (setcdr intermediate (list val)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2511 `(let (,orig) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2512 ,form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2513 (if (or (cl-const-expr-p val) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2514 (and (cl-simple-expr-p val) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2515 (eq (cl-expr-contains form sym) 1)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2516 (cl-setf-simple-store-p sym form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2517 (subst val sym form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2518 (list 'let (list (list sym val)) form))))) |
428 | 2519 |
2520 (defun cl-setf-simple-store-p (sym form) | |
2521 (and (consp form) (eq (cl-expr-contains form sym) 1) | |
2522 (eq (nth (1- (length form)) form) sym) | |
2523 (symbolp (car form)) (fboundp (car form)) | |
2524 (not (eq (car-safe (symbol-function (car form))) 'macro)))) | |
2525 | |
2526 ;;; The standard modify macros. | |
2527 ;;;###autoload | |
2528 (defmacro setf (&rest args) | |
2529 "(setf PLACE VAL PLACE VAL ...): set each PLACE to the value of its VAL. | |
2530 This is a generalized version of `setq'; the PLACEs may be symbolic | |
2531 references such as (car x) or (aref x i), as well as plain symbols. | |
2532 For example, (setf (cadar x) y) is equivalent to (setcar (cdar x) y). | |
2533 The return value is the last VAL in the list." | |
2534 (if (cdr (cdr args)) | |
2535 (let ((sets nil)) | |
2153 | 2536 (while args (push (list 'setf (pop args) (pop args)) sets)) |
428 | 2537 (cons 'progn (nreverse sets))) |
2538 (if (symbolp (car args)) | |
2539 (and args (cons 'setq args)) | |
2540 (let* ((method (cl-setf-do-modify (car args) (nth 1 args))) | |
2541 (store (cl-setf-do-store (nth 1 method) (nth 1 args)))) | |
2542 (if (car method) (list 'let* (car method) store) store))))) | |
2543 | |
2544 ;;;###autoload | |
2545 (defmacro psetf (&rest args) | |
2546 "(psetf PLACE VAL PLACE VAL ...): set PLACEs to the values VALs in parallel. | |
2547 This is like `setf', except that all VAL forms are evaluated (in order) | |
2548 before assigning any PLACEs to the corresponding values." | |
2549 (let ((p args) (simple t) (vars nil)) | |
2550 (while p | |
2551 (if (or (not (symbolp (car p))) (cl-expr-depends-p (nth 1 p) vars)) | |
2552 (setq simple nil)) | |
2553 (if (memq (car p) vars) | |
2554 (error "Destination duplicated in psetf: %s" (car p))) | |
2153 | 2555 (push (pop p) vars) |
428 | 2556 (or p (error "Odd number of arguments to psetf")) |
2153 | 2557 (pop p)) |
428 | 2558 (if simple |
2559 (list 'progn (cons 'setf args) nil) | |
2560 (setq args (reverse args)) | |
2561 (let ((expr (list 'setf (cadr args) (car args)))) | |
2562 (while (setq args (cddr args)) | |
2563 (setq expr (list 'setf (cadr args) (list 'prog1 (car args) expr)))) | |
2564 (list 'progn expr nil))))) | |
2565 | |
2566 ;;;###autoload | |
2567 (defun cl-do-pop (place) | |
2568 (if (cl-simple-expr-p place) | |
2569 (list 'prog1 (list 'car place) (list 'setf place (list 'cdr place))) | |
2570 (let* ((method (cl-setf-do-modify place t)) | |
2571 (temp (gensym "--pop--"))) | |
2572 (list 'let* | |
2573 (append (car method) | |
2574 (list (list temp (nth 2 method)))) | |
2575 (list 'prog1 | |
2576 (list 'car temp) | |
2577 (cl-setf-do-store (nth 1 method) (list 'cdr temp))))))) | |
2578 | |
2579 ;;;###autoload | |
2580 (defmacro remf (place tag) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
2581 "Remove TAG from property list PLACE. |
428 | 2582 PLACE may be a symbol, or any generalized variable allowed by `setf'. |
2583 The form returns true if TAG was found and removed, nil otherwise." | |
2584 (let* ((method (cl-setf-do-modify place t)) | |
2585 (tag-temp (and (not (cl-const-expr-p tag)) (gensym "--remf-tag--"))) | |
2586 (val-temp (and (not (cl-simple-expr-p place)) | |
2587 (gensym "--remf-place--"))) | |
2588 (ttag (or tag-temp tag)) | |
2589 (tval (or val-temp (nth 2 method)))) | |
2590 (list 'let* | |
2591 (append (car method) | |
2592 (and val-temp (list (list val-temp (nth 2 method)))) | |
2593 (and tag-temp (list (list tag-temp tag)))) | |
2594 (list 'if (list 'eq ttag (list 'car tval)) | |
2595 (list 'progn | |
2596 (cl-setf-do-store (nth 1 method) (list 'cddr tval)) | |
2597 t) | |
2598 (list 'cl-do-remf tval ttag))))) | |
2599 | |
2600 ;;;###autoload | |
2601 (defmacro shiftf (place &rest args) | |
2602 "(shiftf PLACE PLACE... VAL): shift left among PLACEs. | |
2603 Example: (shiftf A B C) sets A to B, B to C, and returns the old A. | |
2604 Each PLACE may be a symbol, or any generalized variable allowed by `setf'." | |
2153 | 2605 ;; XEmacs change: use iteration instead of recursion |
428 | 2606 (if (not (memq nil (mapcar 'symbolp (butlast (cons place args))))) |
2607 (list* 'prog1 place | |
2608 (let ((sets nil)) | |
2609 (while args | |
2153 | 2610 (push (list 'setq place (car args)) sets) |
2611 (setq place (pop args))) | |
428 | 2612 (nreverse sets))) |
2613 (let* ((places (reverse (cons place args))) | |
2153 | 2614 (form (pop places))) |
428 | 2615 (while places |
2153 | 2616 (let ((method (cl-setf-do-modify (pop places) 'unsafe))) |
428 | 2617 (setq form (list 'let* (car method) |
2618 (list 'prog1 (nth 2 method) | |
2619 (cl-setf-do-store (nth 1 method) form)))))) | |
2620 form))) | |
2621 | |
2622 ;;;###autoload | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2623 (defmacro rotatef (&rest places) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2624 "Rotate left among PLACES. |
428 | 2625 Example: (rotatef A B C) sets A to B, B to C, and C to A. It returns nil. |
2626 Each PLACE may be a symbol, or any generalized variable allowed by `setf'." | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2627 (if (not (memq nil (mapcar 'symbolp places))) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2628 (and (cdr places) |
428 | 2629 (let ((sets nil) |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2630 (first (car places))) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2631 (while (cdr places) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2632 (setq sets (nconc sets (list (pop places) (car places))))) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2633 (nconc (list 'psetf) sets (list (car places) first)))) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2634 (let* ((places (reverse places)) |
428 | 2635 (temp (gensym "--rotatef--")) |
2636 (form temp)) | |
2637 (while (cdr places) | |
2153 | 2638 (let ((method (cl-setf-do-modify (pop places) 'unsafe))) |
428 | 2639 (setq form (list 'let* (car method) |
2640 (list 'prog1 (nth 2 method) | |
2641 (cl-setf-do-store (nth 1 method) form)))))) | |
2642 (let ((method (cl-setf-do-modify (car places) 'unsafe))) | |
2643 (list 'let* (append (car method) (list (list temp (nth 2 method)))) | |
2644 (cl-setf-do-store (nth 1 method) form) nil))))) | |
2645 | |
4742
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2646 ;; This function is not in Common Lisp, and there are gaps in its structure and |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2647 ;; implementation that reflect that it was never well-specified. E.g. with |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2648 ;; setf, the question of whether a PLACE is bound or not and how to make it |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2649 ;; unbound doesn't arise, but we need some way of specifying that for letf to |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2650 ;; be sensible for gethash, symbol-value and so on; currently we just hard-code |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2651 ;; symbol-value, symbol-function and values (the latter is XEmacs work that |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2652 ;; I've just done) in the body of this function, and the following gives the |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2653 ;; wrong behaviour for gethash: |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2654 ;; |
4820
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4810
diff
changeset
|
2655 ;; (setq my-hash-table #s(hash-table :test equal :data ()) |
4742
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2656 ;; print-gensym t) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2657 ;; => t |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2658 ;; (gethash "my-key" my-hash-table (gensym)) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2659 ;; => #:G68010 |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2660 ;; (letf (((gethash "my-key" my-hash-table) 4000)) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2661 ;; (message "key value is %S" (gethash "my-key" my-hash-table))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2662 ;; => "key value is 4000" |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2663 ;; (gethash "my-key" my-hash-table (gensym)) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2664 ;; => nil ;; should be an uninterned symbol. |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2665 ;; |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2666 ;; Aidan Kehoe, Fr Nov 13 16:12:21 GMT 2009 |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2667 |
428 | 2668 ;;;###autoload |
2669 (defmacro letf (bindings &rest body) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2670 "Temporarily bind to PLACEs. |
428 | 2671 This is the analogue of `let', but with generalized variables (in the |
2672 sense of `setf') for the PLACEs. Each PLACE is set to the corresponding | |
2673 VALUE, then the BODY forms are executed. On exit, either normally or | |
2674 because of a `throw' or error, the PLACEs are set back to their original | |
2675 values. Note that this macro is *not* available in Common Lisp. | |
2676 As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)', | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2677 the PLACE is not modified before executing BODY. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2678 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2679 arguments: (((PLACE VALUE) &rest BINDINGS) &body BODY)" |
428 | 2680 (if (and (not (cdr bindings)) (cdar bindings) (symbolp (caar bindings))) |
2681 (list* 'let bindings body) | |
2682 (let ((lets nil) | |
2683 (rev (reverse bindings))) | |
2684 (while rev | |
2685 (let* ((place (if (symbolp (caar rev)) | |
2686 (list 'symbol-value (list 'quote (caar rev))) | |
2687 (caar rev))) | |
2688 (value (cadar rev)) | |
2689 (method (cl-setf-do-modify place 'no-opt)) | |
2690 (save (gensym "--letf-save--")) | |
4742
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2691 (bound (and (memq (car place) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2692 '(symbol-value symbol-function values)) |
428 | 2693 (gensym "--letf-bound--"))) |
2694 (temp (and (not (cl-const-expr-p value)) (cdr bindings) | |
4742
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2695 (gensym "--letf-val--"))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2696 (syms (and (eq 'values (car place)) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2697 (gensym "--letf-syms--"))) |
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4742
diff
changeset
|
2698 (cursor (and syms (gensym "--letf-cursor--")))) |
428 | 2699 (setq lets (nconc (car method) |
4742
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2700 (cond |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2701 (syms |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2702 `((,syms ',(loop |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2703 for sym in (cdr place) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2704 nconc (if (symbolp sym) (list sym)))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2705 (,cursor ,syms) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2706 (,bound nil) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2707 (,save |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2708 (prog2 |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2709 (while (consp ,cursor) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2710 (setq ,bound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2711 (cons (and (boundp (car ,cursor)) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2712 (symbol-value |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2713 (car ,cursor))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2714 ,bound) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2715 ,cursor (cdr ,cursor))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2716 ;; Just using ,bound as a temporary |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2717 ;; variable here, to initialise ,save: |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2718 (nreverse ,bound) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2719 ;; Now, really initialise ,bound: |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2720 (setq ,cursor ,syms |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2721 ,bound nil |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2722 ,bound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2723 (progn (while (consp ,cursor) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2724 (setq ,bound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2725 (cons |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2726 (boundp (car ,cursor)) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2727 ,bound) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2728 ,cursor (cdr ,cursor))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2729 (nreverse ,bound))))))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2730 (bound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2731 (list (list bound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2732 (list (if (eq (car place) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2733 'symbol-value) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2734 'boundp 'fboundp) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2735 (nth 1 (nth 2 method)))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2736 (list save (list 'and bound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2737 (nth 2 method))))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2738 (t |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2739 (list (list save (nth 2 method))))) |
428 | 2740 (and temp (list (list temp value))) |
2741 lets) | |
2742 body (list | |
2743 (list 'unwind-protect | |
2744 (cons 'progn | |
2745 (if (cdr (car rev)) | |
2746 (cons (cl-setf-do-store (nth 1 method) | |
2747 (or temp value)) | |
2748 body) | |
2749 body)) | |
4742
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2750 (cond |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2751 (syms |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2752 `(while (consp ,syms) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2753 (if (car ,bound) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2754 (set (car ,syms) (car ,save)) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2755 (makunbound (car ,syms))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2756 (setq ,syms (cdr ,syms) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2757 ,bound (cdr ,bound) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2758 ,save (cdr ,save)))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2759 (bound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2760 (list 'if bound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2761 (cl-setf-do-store (nth 1 method) save) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2762 (list (if (eq (car place) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2763 'symbol-function) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2764 'fmakunbound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2765 'makunbound) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2766 (nth 1 (nth 2 method))))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2767 (t |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2768 (cl-setf-do-store (nth 1 method) save))))) |
428 | 2769 rev (cdr rev)))) |
2770 (list* 'let* lets body)))) | |
2771 | |
2772 ;;;###autoload | |
2773 (defmacro letf* (bindings &rest body) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2774 "Temporarily bind to PLACES. |
428 | 2775 This is the analogue of `let*', but with generalized variables (in the |
2776 sense of `setf') for the PLACEs. Each PLACE is set to the corresponding | |
2777 VALUE, then the BODY forms are executed. On exit, either normally or | |
2778 because of a `throw' or error, the PLACEs are set back to their original | |
2779 values. Note that this macro is *not* available in Common Lisp. | |
2780 As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)', | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2781 the PLACE is not modified before executing BODY. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2782 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2783 arguments: (((PLACE VALUE) &rest BINDINGS) &body BODY)" |
428 | 2784 (if (null bindings) |
2785 (cons 'progn body) | |
2786 (setq bindings (reverse bindings)) | |
2787 (while bindings | |
2153 | 2788 (setq body (list (list* 'letf (list (pop bindings)) body)))) |
428 | 2789 (car body))) |
2790 | |
2791 ;;;###autoload | |
2792 (defmacro callf (func place &rest args) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
2793 "Set PLACE to (FUNC PLACE ARGS...). |
428 | 2794 FUNC should be an unquoted function name. PLACE may be a symbol, |
2795 or any generalized variable allowed by `setf'." | |
2796 (let* ((method (cl-setf-do-modify place (cons 'list args))) | |
2797 (rargs (cons (nth 2 method) args))) | |
2798 (list 'let* (car method) | |
2799 (cl-setf-do-store (nth 1 method) | |
2800 (if (symbolp func) (cons func rargs) | |
2801 (list* 'funcall (list 'function func) | |
2802 rargs)))))) | |
2803 | |
2804 ;;;###autoload | |
2805 (defmacro callf2 (func arg1 place &rest args) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
2806 "Set PLACE to (FUNC ARG1 PLACE ARGS...). |
428 | 2807 Like `callf', but PLACE is the second argument of FUNC, not the first." |
2808 (if (and (cl-safe-expr-p arg1) (cl-simple-expr-p place) (symbolp func)) | |
2809 (list 'setf place (list* func arg1 place args)) | |
2810 (let* ((method (cl-setf-do-modify place (cons 'list args))) | |
2811 (temp (and (not (cl-const-expr-p arg1)) (gensym "--arg1--"))) | |
2812 (rargs (list* (or temp arg1) (nth 2 method) args))) | |
2813 (list 'let* (append (and temp (list (list temp arg1))) (car method)) | |
2814 (cl-setf-do-store (nth 1 method) | |
2815 (if (symbolp func) (cons func rargs) | |
2816 (list* 'funcall (list 'function func) | |
2817 rargs))))))) | |
2818 | |
2819 ;;;###autoload | |
2820 (defmacro define-modify-macro (name arglist func &optional doc) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
2821 "Define a `setf'-like modify macro. |
428 | 2822 If NAME is called, it combines its PLACE argument with the other arguments |
2823 from ARGLIST using FUNC: (define-modify-macro incf (&optional (n 1)) +)" | |
2824 (if (memq '&key arglist) (error "&key not allowed in define-modify-macro")) | |
2825 (let ((place (gensym "--place--"))) | |
2826 (list 'defmacro* name (cons place arglist) doc | |
2827 (list* (if (memq '&rest arglist) 'list* 'list) | |
2828 '(quote callf) (list 'quote func) place | |
2829 (cl-arglist-args arglist))))) | |
2830 | |
2831 | |
2832 ;;; Structures. | |
2833 | |
2834 ;;;###autoload | |
2835 (defmacro defstruct (struct &rest descs) | |
2836 "(defstruct (NAME OPTIONS...) (SLOT SLOT-OPTS...)...): define a struct type. | |
2837 This macro defines a new Lisp data type called NAME, which contains data | |
2838 stored in SLOTs. This defines a `make-NAME' constructor, a `copy-NAME' | |
2839 copier, a `NAME-p' predicate, and setf-able `NAME-SLOT' accessors." | |
2840 (let* ((name (if (consp struct) (car struct) struct)) | |
2841 (opts (cdr-safe struct)) | |
2842 (slots nil) | |
2843 (defaults nil) | |
2844 (conc-name (concat (symbol-name name) "-")) | |
2845 (constructor (intern (format "make-%s" name))) | |
2846 (constrs nil) | |
2847 (copier (intern (format "copy-%s" name))) | |
2848 (predicate (intern (format "%s-p" name))) | |
2849 (print-func nil) (print-auto nil) | |
2850 (safety (if (cl-compiling-file) cl-optimize-safety 3)) | |
2851 (include nil) | |
2852 (tag (intern (format "cl-struct-%s" name))) | |
2853 (tag-symbol (intern (format "cl-struct-%s-tags" name))) | |
2854 (include-descs nil) | |
2855 (side-eff nil) | |
2856 (type nil) | |
2857 (named nil) | |
2858 (forms nil) | |
2859 pred-form pred-check) | |
2860 (if (stringp (car descs)) | |
2153 | 2861 (push (list 'put (list 'quote name) '(quote structure-documentation) |
2862 (pop descs)) forms)) | |
428 | 2863 (setq descs (cons '(cl-tag-slot) |
2864 (mapcar #'(lambda (x) (if (consp x) x (list x))) | |
2865 descs))) | |
2866 (while opts | |
2867 (let ((opt (if (consp (car opts)) (caar opts) (car opts))) | |
2153 | 2868 (args (cdr-safe (pop opts)))) |
2869 (cond ((eq opt :conc-name) | |
428 | 2870 (if args |
2871 (setq conc-name (if (car args) | |
2872 (symbol-name (car args)) "")))) | |
2153 | 2873 ((eq opt :constructor) |
428 | 2874 (if (cdr args) |
2153 | 2875 (push args constrs) |
428 | 2876 (if args (setq constructor (car args))))) |
2153 | 2877 ((eq opt :copier) |
428 | 2878 (if args (setq copier (car args)))) |
2153 | 2879 ((eq opt :predicate) |
428 | 2880 (if args (setq predicate (car args)))) |
2153 | 2881 ((eq opt :include) |
428 | 2882 (setq include (car args) |
2883 include-descs (mapcar #'(lambda (x) | |
2884 (if (consp x) x (list x))) | |
2885 (cdr args)))) | |
2153 | 2886 ((eq opt :print-function) |
428 | 2887 (setq print-func (car args))) |
2153 | 2888 ((eq opt :type) |
428 | 2889 (setq type (car args))) |
2153 | 2890 ((eq opt :named) |
428 | 2891 (setq named t)) |
2153 | 2892 ((eq opt :initial-offset) |
428 | 2893 (setq descs (nconc (make-list (car args) '(cl-skip-slot)) |
2894 descs))) | |
2895 (t | |
2896 (error "Slot option %s unrecognized" opt))))) | |
2897 (if print-func | |
2898 (setq print-func (list 'progn | |
2899 (list 'funcall (list 'function print-func) | |
2900 'cl-x 'cl-s 'cl-n) t)) | |
2901 (or type (and include (not (get include 'cl-struct-print))) | |
2902 (setq print-auto t | |
2903 print-func (and (or (not (or include type)) (null print-func)) | |
2904 (list 'progn | |
2905 (list 'princ (format "#S(%s" name) | |
2906 'cl-s)))))) | |
2907 (if include | |
2908 (let ((inc-type (get include 'cl-struct-type)) | |
2909 (old-descs (get include 'cl-struct-slots))) | |
2910 (or inc-type (error "%s is not a struct name" include)) | |
2911 (and type (not (eq (car inc-type) type)) | |
2912 (error ":type disagrees with :include for %s" name)) | |
2913 (while include-descs | |
2914 (setcar (memq (or (assq (caar include-descs) old-descs) | |
2915 (error "No slot %s in included struct %s" | |
2916 (caar include-descs) include)) | |
2917 old-descs) | |
2153 | 2918 (pop include-descs))) |
428 | 2919 (setq descs (append old-descs (delq (assq 'cl-tag-slot descs) descs)) |
2920 type (car inc-type) | |
2921 named (assq 'cl-tag-slot descs)) | |
2922 (if (cadr inc-type) (setq tag name named t)) | |
2923 (let ((incl include)) | |
2924 (while incl | |
2153 | 2925 (push (list 'pushnew (list 'quote tag) |
428 | 2926 (intern (format "cl-struct-%s-tags" incl))) |
2927 forms) | |
2928 (setq incl (get incl 'cl-struct-include))))) | |
2929 (if type | |
2930 (progn | |
2931 (or (memq type '(vector list)) | |
2932 (error "Illegal :type specifier: %s" type)) | |
2933 (if named (setq tag name))) | |
2934 (setq type 'vector named 'true))) | |
2935 (or named (setq descs (delq (assq 'cl-tag-slot descs) descs))) | |
2153 | 2936 (push (list 'defvar tag-symbol) forms) |
428 | 2937 (setq pred-form (and named |
2938 (let ((pos (- (length descs) | |
2939 (length (memq (assq 'cl-tag-slot descs) | |
2940 descs))))) | |
2941 (if (eq type 'vector) | |
2942 (list 'and '(vectorp cl-x) | |
2943 (list '>= '(length cl-x) (length descs)) | |
2944 (list 'memq (list 'aref 'cl-x pos) | |
2945 tag-symbol)) | |
2946 (if (= pos 0) | |
2947 (list 'memq '(car-safe cl-x) tag-symbol) | |
2948 (list 'and '(consp cl-x) | |
2949 (list 'memq (list 'nth pos 'cl-x) | |
2950 tag-symbol)))))) | |
2951 pred-check (and pred-form (> safety 0) | |
2952 (if (and (eq (caadr pred-form) 'vectorp) | |
2953 (= safety 1)) | |
2954 (cons 'and (cdddr pred-form)) pred-form))) | |
2955 (let ((pos 0) (descp descs)) | |
2956 (while descp | |
2153 | 2957 (let* ((desc (pop descp)) |
428 | 2958 (slot (car desc))) |
2959 (if (memq slot '(cl-tag-slot cl-skip-slot)) | |
2960 (progn | |
2153 | 2961 (push nil slots) |
2962 (push (and (eq slot 'cl-tag-slot) (list 'quote tag)) | |
428 | 2963 defaults)) |
2964 (if (assq slot descp) | |
2965 (error "Duplicate slots named %s in %s" slot name)) | |
2966 (let ((accessor (intern (format "%s%s" conc-name slot)))) | |
2153 | 2967 (push slot slots) |
2968 (push (nth 1 desc) defaults) | |
2969 (push (list* | |
428 | 2970 'defsubst* accessor '(cl-x) |
2971 (append | |
2972 (and pred-check | |
2973 (list (list 'or pred-check | |
2974 (list 'error | |
2975 (format "%s accessing a non-%s" | |
2976 accessor name) | |
2977 'cl-x)))) | |
2978 (list (if (eq type 'vector) (list 'aref 'cl-x pos) | |
2979 (if (= pos 0) '(car cl-x) | |
2980 (list 'nth pos 'cl-x)))))) forms) | |
2153 | 2981 (push (cons accessor t) side-eff) |
2982 (push (list 'define-setf-method accessor '(cl-x) | |
2983 (if (cadr (memq :read-only (cddr desc))) | |
428 | 2984 (list 'error (format "%s is a read-only slot" |
2985 accessor)) | |
2986 (list 'cl-struct-setf-expander 'cl-x | |
2987 (list 'quote name) (list 'quote accessor) | |
2988 (and pred-check (list 'quote pred-check)) | |
2989 pos))) | |
2990 forms) | |
2991 (if print-auto | |
2992 (nconc print-func | |
2993 (list (list 'princ (format " %s" slot) 'cl-s) | |
2994 (list 'prin1 (list accessor 'cl-x) 'cl-s))))))) | |
2995 (setq pos (1+ pos)))) | |
2996 (setq slots (nreverse slots) | |
2997 defaults (nreverse defaults)) | |
2998 (and predicate pred-form | |
2153 | 2999 (progn (push (list 'defsubst* predicate '(cl-x) |
428 | 3000 (if (eq (car pred-form) 'and) |
3001 (append pred-form '(t)) | |
3002 (list 'and pred-form t))) forms) | |
2153 | 3003 (push (cons predicate 'error-free) side-eff))) |
428 | 3004 (and copier |
2153 | 3005 (progn (push (list 'defun copier '(x) '(copy-sequence x)) forms) |
3006 (push (cons copier t) side-eff))) | |
428 | 3007 (if constructor |
2153 | 3008 (push (list constructor |
428 | 3009 (cons '&key (delq nil (copy-sequence slots)))) |
3010 constrs)) | |
3011 (while constrs | |
3012 (let* ((name (caar constrs)) | |
2153 | 3013 (args (cadr (pop constrs))) |
428 | 3014 (anames (cl-arglist-args args)) |
3015 (make (mapcar* #'(lambda (s d) (if (memq s anames) s d)) | |
3016 slots defaults))) | |
2153 | 3017 (push (list 'defsubst* name |
428 | 3018 (list* '&cl-defs (list 'quote (cons nil descs)) args) |
3019 (cons type make)) forms) | |
3020 (if (cl-safe-expr-p (cons 'progn (mapcar 'second descs))) | |
2153 | 3021 (push (cons name t) side-eff)))) |
428 | 3022 (if print-auto (nconc print-func (list '(princ ")" cl-s) t))) |
3023 (if print-func | |
2153 | 3024 (push (list 'push |
428 | 3025 (list 'function |
3026 (list 'lambda '(cl-x cl-s cl-n) | |
3027 (list 'and pred-form print-func))) | |
3028 'custom-print-functions) forms)) | |
2153 | 3029 (push (list 'setq tag-symbol (list 'list (list 'quote tag))) forms) |
3030 (push (list* 'eval-when '(compile load eval) | |
428 | 3031 (list 'put (list 'quote name) '(quote cl-struct-slots) |
3032 (list 'quote descs)) | |
3033 (list 'put (list 'quote name) '(quote cl-struct-type) | |
3034 (list 'quote (list type (eq named t)))) | |
3035 (list 'put (list 'quote name) '(quote cl-struct-include) | |
3036 (list 'quote include)) | |
3037 (list 'put (list 'quote name) '(quote cl-struct-print) | |
3038 print-auto) | |
3039 (mapcar #'(lambda (x) | |
3040 (list 'put (list 'quote (car x)) | |
3041 '(quote side-effect-free) | |
3042 (list 'quote (cdr x)))) | |
3043 side-eff)) | |
3044 forms) | |
3045 (cons 'progn (nreverse (cons (list 'quote name) forms))))) | |
3046 | |
3047 ;;;###autoload | |
3048 (defun cl-struct-setf-expander (x name accessor pred-form pos) | |
3049 (let* ((temp (gensym "--x--")) (store (gensym "--store--"))) | |
3050 (list (list temp) (list x) (list store) | |
3051 (append '(progn) | |
3052 (and pred-form | |
3053 (list (list 'or (subst temp 'cl-x pred-form) | |
3054 (list 'error | |
3055 (format | |
3056 "%s storing a non-%s" accessor name) | |
3057 temp)))) | |
3058 (list (if (eq (car (get name 'cl-struct-type)) 'vector) | |
3059 (list 'aset temp pos store) | |
3060 (list 'setcar | |
3061 (if (<= pos 5) | |
3062 (let ((xx temp)) | |
3063 (while (>= (setq pos (1- pos)) 0) | |
3064 (setq xx (list 'cdr xx))) | |
3065 xx) | |
3066 (list 'nthcdr pos temp)) | |
3067 store)))) | |
3068 (list accessor temp)))) | |
3069 | |
3070 | |
3071 ;;; Types and assertions. | |
3072 | |
3073 ;;;###autoload | |
2153 | 3074 (defmacro deftype (name arglist &rest body) |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
3075 "Define NAME as a new data type. |
428 | 3076 The type name can then be used in `typecase', `check-type', etc." |
3077 (list 'eval-when '(compile load eval) | |
3078 (cl-transform-function-property | |
2153 | 3079 name 'cl-deftype-handler (cons (list* '&cl-defs ''('*) arglist) body)))) |
428 | 3080 |
3081 (defun cl-make-type-test (val type) | |
3082 (if (symbolp type) | |
3083 (cond ((get type 'cl-deftype-handler) | |
3084 (cl-make-type-test val (funcall (get type 'cl-deftype-handler)))) | |
3085 ((memq type '(nil t)) type) | |
2153 | 3086 ((eq type 'null) `(null ,val)) |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3087 ((eq type 'float) `(floatp ,val)) |
2153 | 3088 ((eq type 'real) `(numberp ,val)) |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3089 ((eq type 'fixnum) `(fixnump ,val)) |
2153 | 3090 ;; XEmacs change: we do not have char-valid-p |
3091 ((memq type '(character string-char)) `(characterp ,val)) | |
428 | 3092 (t |
3093 (let* ((name (symbol-name type)) | |
3094 (namep (intern (concat name "p")))) | |
3095 (if (fboundp namep) (list namep val) | |
3096 (list (intern (concat name "-p")) val))))) | |
3097 (cond ((get (car type) 'cl-deftype-handler) | |
3098 (cl-make-type-test val (apply (get (car type) 'cl-deftype-handler) | |
3099 (cdr type)))) | |
3100 ((memq (car-safe type) '(integer float real number)) | |
3101 (delq t (list 'and (cl-make-type-test val (car type)) | |
3102 (if (memq (cadr type) '(* nil)) t | |
3103 (if (consp (cadr type)) (list '> val (caadr type)) | |
3104 (list '>= val (cadr type)))) | |
3105 (if (memq (caddr type) '(* nil)) t | |
3106 (if (consp (caddr type)) (list '< val (caaddr type)) | |
3107 (list '<= val (caddr type))))))) | |
3108 ((memq (car-safe type) '(and or not)) | |
3109 (cons (car type) | |
3110 (mapcar #'(lambda (x) (cl-make-type-test val x)) | |
3111 (cdr type)))) | |
3112 ((memq (car-safe type) '(member member*)) | |
3113 (list 'and (list 'member* val (list 'quote (cdr type))) t)) | |
3114 ((eq (car-safe type) 'satisfies) (list (cadr type) val)) | |
3115 (t (error "Bad type spec: %s" type))))) | |
3116 | |
3117 ;;;###autoload | |
444 | 3118 (defun typep (object type) ; See compiler macro below. |
428 | 3119 "Check that OBJECT is of type TYPE. |
3120 TYPE is a Common Lisp-style type specifier." | |
444 | 3121 (eval (cl-make-type-test 'object type))) |
428 | 3122 |
3123 ;;;###autoload | |
446 | 3124 (defmacro check-type (place type &optional string) |
3125 "Verify that PLACE is of type TYPE; signal a continuable error if not. | |
428 | 3126 STRING is an optional description of the desired type." |
2153 | 3127 (and (or (not (cl-compiling-file)) |
3128 (< cl-optimize-speed 3) (= cl-optimize-safety 3)) | |
3129 (let* ((temp (if (cl-simple-expr-p place 3) place (gensym))) | |
3130 (test (cl-make-type-test temp type)) | |
3131 (signal-error `(signal 'wrong-type-argument | |
3132 ,(list 'list (or string (list 'quote type)) | |
3133 temp (list 'quote place)))) | |
3134 (body | |
3135 (condition-case nil | |
3136 `(while (not ,test) | |
3137 ,(macroexpand `(setf ,place ,signal-error))) | |
3138 (error | |
3139 `(if ,test (progn ,signal-error nil)))))) | |
3140 (if (eq temp place) `(progn ,body nil) | |
3141 `(let ((,temp ,place)) ,body nil))))) | |
428 | 3142 |
3143 ;;;###autoload | |
3144 (defmacro assert (form &optional show-args string &rest args) | |
3145 "Verify that FORM returns non-nil; signal an error if not. | |
3146 Second arg SHOW-ARGS means to include arguments of FORM in message. | |
3147 Other args STRING and ARGS... are arguments to be passed to `error'. | |
3148 They are not evaluated unless the assertion fails. If STRING is | |
3149 omitted, a default message listing FORM itself is used." | |
3150 (and (or (not (cl-compiling-file)) | |
3151 (< cl-optimize-speed 3) (= cl-optimize-safety 3)) | |
3152 (let ((sargs (and show-args (delq nil (mapcar | |
3153 #'(lambda (x) | |
3154 (and (not (cl-const-expr-p x)) | |
3155 x)) | |
3156 (cdr form)))))) | |
3157 (list 'progn | |
3158 (list 'or form | |
3159 (if string | |
3160 (list* 'error string (append sargs args)) | |
3161 (list 'signal '(quote cl-assertion-failed) | |
3162 (list* 'list (list 'quote form) sargs)))) | |
3163 nil)))) | |
3164 | |
3165 ;;;###autoload | |
3166 (defmacro ignore-errors (&rest body) | |
2153 | 3167 "Execute BODY; if an error occurs, return nil. |
3168 Otherwise, return result of last form in BODY." | |
428 | 3169 `(condition-case nil (progn ,@body) (error nil))) |
3170 | |
2153 | 3171 ;; XEmacs addition |
428 | 3172 ;;;###autoload |
3173 (defmacro ignore-file-errors (&rest body) | |
3174 "Execute FORMS; if an error of type `file-error' occurs, return nil. | |
3175 Otherwise, return result of last FORM." | |
3176 `(condition-case nil (progn ,@body) (file-error nil))) | |
3177 | |
3178 | |
3179 ;;; Compiler macros. | |
3180 | |
3181 ;;;###autoload | |
3182 (defmacro define-compiler-macro (func args &rest body) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
3183 "Define a compiler-only macro. |
428 | 3184 This is like `defmacro', but macro expansion occurs only if the call to |
3185 FUNC is compiled (i.e., not interpreted). Compiler macros should be used | |
3186 for optimizing the way calls to FUNC are compiled; the form returned by | |
3187 BODY should do the same thing as a call to the normal function called | |
3188 FUNC, though possibly more efficiently. Note that, like regular macros, | |
3189 compiler macros are expanded repeatedly until no further expansions are | |
3190 possible. Unlike regular macros, BODY can decide to \"punt\" and leave the | |
3191 original function call alone by declaring an initial `&whole foo' parameter | |
3192 and then returning foo." | |
3193 (let ((p (if (listp args) args (list '&rest args))) (res nil)) | |
2153 | 3194 (while (consp p) (push (pop p) res)) |
3195 (setq args (nconc (nreverse res) (and p (list '&rest p))))) | |
428 | 3196 (list 'eval-when '(compile load eval) |
3197 (cl-transform-function-property | |
3198 func 'cl-compiler-macro | |
3199 (cons (if (memq '&whole args) (delq '&whole args) | |
3200 (cons '--cl-whole-arg-- args)) body)) | |
3201 (list 'or (list 'get (list 'quote func) '(quote byte-compile)) | |
3202 (list 'put (list 'quote func) '(quote byte-compile) | |
3203 '(quote cl-byte-compile-compiler-macro))))) | |
3204 | |
3205 ;;;###autoload | |
3206 (defun compiler-macroexpand (form) | |
3207 (while | |
3208 (let ((func (car-safe form)) (handler nil)) | |
3209 (while (and (symbolp func) | |
3210 (not (setq handler (get func 'cl-compiler-macro))) | |
3211 (fboundp func) | |
3212 (or (not (eq (car-safe (symbol-function func)) 'autoload)) | |
3213 (load (nth 1 (symbol-function func))))) | |
3214 (setq func (symbol-function func))) | |
3215 (and handler | |
3216 (not (eq form (setq form (apply handler form (cdr form)))))))) | |
3217 form) | |
3218 | |
3219 (defun cl-byte-compile-compiler-macro (form) | |
3220 (if (eq form (setq form (compiler-macroexpand form))) | |
3221 (byte-compile-normal-call form) | |
3222 (byte-compile-form form))) | |
3223 | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3224 (defmacro defsubst* (name arglist &optional docstring &rest body) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3225 "Define NAME as a function. |
428 | 3226 Like `defun', except the function is automatically declared `inline', |
3227 ARGLIST allows full Common Lisp conventions, and BODY is implicitly | |
3228 surrounded by (block NAME ...)." | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3229 (let* ((argns (cl-arglist-args arglist)) (p argns) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3230 (exec-body (if (or (stringp docstring) (null docstring)) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3231 body |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3232 (cons docstring body))) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3233 (pbody (cons 'progn exec-body)) |
428 | 3234 (unsafe (not (cl-safe-expr-p pbody)))) |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3235 (while (and p (eq (cl-expr-contains arglist (car p)) 1)) (pop p)) |
428 | 3236 (list 'progn |
3237 (if p nil ; give up if defaults refer to earlier args | |
3238 (list 'define-compiler-macro name | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3239 (if (memq '&key arglist) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3240 (list* '&whole 'cl-whole '&cl-quote arglist) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3241 (cons '&cl-quote arglist)) |
428 | 3242 (list* 'cl-defsubst-expand (list 'quote argns) |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3243 (list 'quote (list* 'block name exec-body)) |
428 | 3244 (not (or unsafe (cl-expr-access-order pbody argns))) |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3245 (and (memq '&key arglist) 'cl-whole) unsafe argns))) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3246 (list* 'defun* name arglist docstring body)))) |
428 | 3247 |
3248 (defun cl-defsubst-expand (argns body simple whole unsafe &rest argvs) | |
3249 (if (and whole (not (cl-safe-expr-p (cons 'progn argvs)))) whole | |
3250 (if (cl-simple-exprs-p argvs) (setq simple t)) | |
3251 (let ((lets (delq nil | |
3252 (mapcar* #'(lambda (argn argv) | |
3253 (if (or simple (cl-const-expr-p argv)) | |
3254 (progn (setq body (subst argv argn body)) | |
3255 (and unsafe (list argn argv))) | |
3256 (list argn argv))) | |
3257 argns argvs)))) | |
3258 (if lets (list 'let lets body) body)))) | |
3259 | |
3260 | |
3261 ;;; Compile-time optimizations for some functions defined in this package. | |
3262 ;;; Note that cl.el arranges to force cl-macs to be loaded at compile-time, | |
3263 ;;; mainly to make sure these macros will be present. | |
3264 | |
3265 (put 'eql 'byte-compile nil) | |
3266 (define-compiler-macro eql (&whole form a b) | |
3267 (cond ((eq (cl-const-expr-p a) t) | |
3268 (let ((val (cl-const-expr-val a))) | |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3269 (if (and (numberp val) (not (fixnump val))) |
428 | 3270 (list 'equal a b) |
3271 (list 'eq a b)))) | |
3272 ((eq (cl-const-expr-p b) t) | |
3273 (let ((val (cl-const-expr-val b))) | |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3274 (if (and (numberp val) (not (fixnump val))) |
428 | 3275 (list 'equal a b) |
3276 (list 'eq a b)))) | |
3277 ((cl-simple-expr-p a 5) | |
3278 (list 'if (list 'numberp a) | |
3279 (list 'equal a b) | |
3280 (list 'eq a b))) | |
3281 ((and (cl-safe-expr-p a) | |
3282 (cl-simple-expr-p b 5)) | |
3283 (list 'if (list 'numberp b) | |
3284 (list 'equal a b) | |
3285 (list 'eq a b))) | |
3286 (t form))) | |
3287 | |
3288 (define-compiler-macro member* (&whole form a list &rest keys) | |
2153 | 3289 (let ((test (and (= (length keys) 2) (eq (car keys) :test) |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3290 (cl-const-expr-val (nth 1 keys)))) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3291 a-val) |
428 | 3292 (cond ((eq test 'eq) (list 'memq a list)) |
3293 ((eq test 'equal) (list 'member a list)) | |
3294 ((or (null keys) (eq test 'eql)) | |
3295 (if (eq (cl-const-expr-p a) t) | |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3296 (list (if (and (numberp (setq a-val (cl-const-expr-val a))) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3297 (not (fixnump a-val))) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3298 'member |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3299 'memq) |
428 | 3300 a list) |
3301 (if (eq (cl-const-expr-p list) t) | |
3302 (let ((p (cl-const-expr-val list)) (mb nil) (mq nil)) | |
3303 (if (not (cdr p)) | |
3304 (and p (list 'eql a (list 'quote (car p)))) | |
3305 (while p | |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3306 (if (and (numberp (car p)) (not (fixnump (car p)))) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3307 (setq mb t) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3308 (or (fixnump (car p)) (symbolp (car p)) (setq mq t))) |
428 | 3309 (setq p (cdr p))) |
3310 (if (not mb) (list 'memq a list) | |
3311 (if (not mq) (list 'member a list) form)))) | |
3312 form))) | |
3313 (t form)))) | |
3314 | |
3315 (define-compiler-macro assoc* (&whole form a list &rest keys) | |
2153 | 3316 (let ((test (and (= (length keys) 2) (eq (car keys) :test) |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3317 (cl-const-expr-val (nth 1 keys)))) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3318 a-val) |
428 | 3319 (cond ((eq test 'eq) (list 'assq a list)) |
3320 ((eq test 'equal) (list 'assoc a list)) | |
3321 ((and (eq (cl-const-expr-p a) t) (or (null keys) (eq test 'eql))) | |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3322 (if (and (numberp (setq a-val (cl-const-expr-val a))) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3323 (not (fixnump a-val))) |
428 | 3324 (list 'assoc a list) (list 'assq a list))) |
3325 (t form)))) | |
3326 | |
3327 (define-compiler-macro adjoin (&whole form a list &rest keys) | |
3328 (if (and (cl-simple-expr-p a) (cl-simple-expr-p list) | |
2153 | 3329 (not (memq :key keys))) |
428 | 3330 (list 'if (list* 'member* a list keys) list (list 'cons a list)) |
3331 form)) | |
3332 | |
3333 (define-compiler-macro list* (arg &rest others) | |
3334 (let* ((args (reverse (cons arg others))) | |
3335 (form (car args))) | |
3336 (while (setq args (cdr args)) | |
3337 (setq form (list 'cons (car args) form))) | |
3338 form)) | |
3339 | |
2153 | 3340 ;; XEmacs change: our builtin get takes the default argument |
440 | 3341 (define-compiler-macro get* (sym prop &optional default) |
3342 (list 'get sym prop default)) | |
428 | 3343 |
442 | 3344 (define-compiler-macro getf (sym prop &optional default) |
3345 (list 'plist-get sym prop default)) | |
3346 | |
428 | 3347 (define-compiler-macro typep (&whole form val type) |
3348 (if (cl-const-expr-p type) | |
3349 (let ((res (cl-make-type-test val (cl-const-expr-val type)))) | |
3350 (if (or (memq (cl-expr-contains res val) '(nil 1)) | |
3351 (cl-simple-expr-p val)) res | |
3352 (let ((temp (gensym))) | |
3353 (list 'let (list (list temp val)) (subst temp val res))))) | |
3354 form)) | |
3355 | |
5085
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3356 (define-compiler-macro delete-dups (list) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3357 `(delete-duplicates (the list ,list) :test #'equal :from-end t)) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3358 |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3359 ;; XEmacs; inline delete-duplicates if it's called with one of the |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3360 ;; common compile-time constant tests and an optional :from-end |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3361 ;; argument, we want the speed in font-lock.el. |
4607
517f6887fbc0
Remove duplicate functions, chiefly #'delete-duplicates reimplementations.
Aidan Kehoe <kehoea@parhasard.net>
parents:
2297
diff
changeset
|
3362 (define-compiler-macro delete-duplicates (&whole form cl-seq &rest cl-keys) |
4707
5bb0735f56e0
Handle non-list sequences better, delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4702
diff
changeset
|
3363 (let ((listp-check |
5085
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3364 (cond |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3365 ((memq (car-safe cl-seq) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3366 ;; No need to check for a list at runtime with these. We |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3367 ;; could expand the list, but these are all the functions |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3368 ;; in the relevant context at the moment. |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3369 '(nreverse append nconc mapcan mapcar string-to-list)) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3370 t) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3371 ((and (listp cl-seq) (eq (first cl-seq) 'the) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3372 (eq (second cl-seq) 'list)) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3373 ;; Allow users to force this, if they really want to. |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3374 t) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3375 (t |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3376 '(listp begin))))) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3377 (cond ((loop |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3378 for relevant-key-values |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3379 in '((:test 'eq) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3380 (:test #'eq) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3381 (:test 'eq :from-end nil) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3382 (:test #'eq :from-end nil)) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3383 ;; One of the above corresponds exactly to CL-KEYS: |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3384 thereis (not (set-difference cl-keys relevant-key-values |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3385 :test #'equal))) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3386 `(let* ((begin ,cl-seq) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3387 cl-seq) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3388 (if ,listp-check |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3389 (progn |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3390 (while (memq (car begin) (cdr begin)) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3391 (setq begin (cdr begin))) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3392 (setq cl-seq begin) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3393 (while (cddr cl-seq) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3394 (if (memq (cadr cl-seq) (cddr cl-seq)) |
5099
a24f2ab0093b
Avoid the query-coding-tests.el hang, by fixing a logic bug.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5085
diff
changeset
|
3395 (setcdr (cdr cl-seq) (cddr cl-seq))) |
a24f2ab0093b
Avoid the query-coding-tests.el hang, by fixing a logic bug.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5085
diff
changeset
|
3396 (setq cl-seq (cdr cl-seq))) |
5085
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3397 begin) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3398 ;; Call cl-delete-duplicates explicitly, to avoid the form |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3399 ;; getting compiler-macroexpanded again: |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3400 (cl-delete-duplicates begin ',cl-keys nil)))) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3401 ((loop |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3402 for relevant-key-values |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3403 in '((:test 'eq :from-end t) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3404 (:test #'eq :from-end t)) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3405 ;; One of the above corresponds exactly to CL-KEYS: |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3406 thereis (not (set-difference cl-keys relevant-key-values |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3407 :test #'equal))) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3408 `(let* ((begin ,cl-seq) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3409 (cl-seq begin)) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3410 (if ,listp-check |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3411 (progn |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3412 (while cl-seq |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3413 (setq cl-seq (setcdr cl-seq |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3414 (delq (car cl-seq) (cdr cl-seq))))) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3415 begin) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3416 ;; Call cl-delete-duplicates explicitly, to avoid the form |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3417 ;; getting compiler-macroexpanded again: |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3418 (cl-delete-duplicates begin ',cl-keys nil)))) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3419 |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3420 ((loop |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3421 for relevant-key-values |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3422 in '((:test 'equal) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3423 (:test #'equal) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3424 (:test 'equal :from-end nil) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3425 (:test #'equal :from-end nil)) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3426 ;; One of the above corresponds exactly to CL-KEYS: |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3427 thereis (not (set-difference cl-keys relevant-key-values |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3428 :test #'equal))) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3429 `(let* ((begin ,cl-seq) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3430 cl-seq) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3431 (if ,listp-check |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3432 (progn |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3433 (while (member (car begin) (cdr begin)) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3434 (setq begin (cdr begin))) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3435 (setq cl-seq begin) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3436 (while (cddr cl-seq) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3437 (if (member (cadr cl-seq) (cddr cl-seq)) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3438 (setcdr (cdr cl-seq) (cddr cl-seq))) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3439 (setq cl-seq (cdr cl-seq))) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3440 begin) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3441 ;; Call cl-delete-duplicates explicitly, to avoid the form |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3442 ;; getting compiler-macroexpanded again: |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3443 (cl-delete-duplicates begin ',cl-keys nil)))) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3444 ((loop |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3445 for relevant-key-values |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3446 in '((:test 'equal :from-end t) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3447 (:test #'equal :from-end t)) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3448 ;; One of the above corresponds exactly to CL-KEYS: |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3449 thereis (not (set-difference cl-keys relevant-key-values |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3450 :test #'equal))) |
4707
5bb0735f56e0
Handle non-list sequences better, delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4702
diff
changeset
|
3451 `(let* ((begin ,cl-seq) |
5bb0735f56e0
Handle non-list sequences better, delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4702
diff
changeset
|
3452 (cl-seq begin)) |
5bb0735f56e0
Handle non-list sequences better, delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4702
diff
changeset
|
3453 (if ,listp-check |
5bb0735f56e0
Handle non-list sequences better, delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4702
diff
changeset
|
3454 (progn |
5bb0735f56e0
Handle non-list sequences better, delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4702
diff
changeset
|
3455 (while cl-seq |
5085
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3456 (setq cl-seq |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3457 (setcdr cl-seq (delete (car cl-seq) (cdr cl-seq))))) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3458 begin) |
4707
5bb0735f56e0
Handle non-list sequences better, delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4702
diff
changeset
|
3459 ;; Call cl-delete-duplicates explicitly, to avoid the form |
5bb0735f56e0
Handle non-list sequences better, delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4702
diff
changeset
|
3460 ;; getting compiler-macroexpanded again: |
4714
84f870bbd17b
Fix another bug in the delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4707
diff
changeset
|
3461 (cl-delete-duplicates begin ',cl-keys nil)))) |
5085
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3462 (t form)))) |
428 | 3463 |
4723
ebca981a0012
If STRING is constant, call regexp-quote at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3464 ;; XEmacs; it's perfectly reasonable, and often much clearer to those |
ebca981a0012
If STRING is constant, call regexp-quote at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3465 ;; reading the code, to call regexp-quote on a constant string, which is |
ebca981a0012
If STRING is constant, call regexp-quote at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3466 ;; something we can optimise here easily. |
ebca981a0012
If STRING is constant, call regexp-quote at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3467 (define-compiler-macro regexp-quote (&whole form string) |
ebca981a0012
If STRING is constant, call regexp-quote at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3468 (if (stringp string) |
ebca981a0012
If STRING is constant, call regexp-quote at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3469 (regexp-quote string) |
ebca981a0012
If STRING is constant, call regexp-quote at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3470 form)) |
ebca981a0012
If STRING is constant, call regexp-quote at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3471 |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3472 ;; NOTE: `equalp' is now a primitive, although as of yet it still doesn't |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3473 ;; have a byte-compiler opcode for it. The compiler-macro for `equalp' used |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3474 ;; to try and remove as much as possible of the logic of the Lisp `equalp' as |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3475 ;; possible whenever one of the arguments is a constant, boiling things down |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3476 ;; to a few if-statements and some calls to various no-longer-defined |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3477 ;; helper functions. Besides the fact that the helper functions aren't |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3478 ;; defined, there's little point in doing any of that expansion, since it will |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3479 ;; end up executing in Lisp what would otherwise be done in C by a direct |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3480 ;; call to `equalp'. The only exception is when the reduction is quite |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3481 ;; simple and is to functions that do have op-codes; that may gain something. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3482 ;; However, if `equalp' becomes an opcode itself, consider removing everything |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3483 ;; here except maybe when the call can directly be reduced to `equal' or `eq'. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3484 ;; |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3485 ;; --ben |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3486 |
4792
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3487 (define-compiler-macro equalp (&whole form x y) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3488 "Expand calls to `equalp' where X or Y is a constant expression. |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3489 |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3490 Much of the processing that `equalp' does is dependent on the types of both |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3491 of its arguments, and with type information for one of them, we can |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3492 eliminate much of the body of the function at compile time. |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3493 |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3494 Where both X and Y are constant expressions, `equalp' is evaluated at |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3495 compile time by byte-optimize.el--this compiler macro passes FORM through to |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3496 the byte optimizer in those cases." |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3497 ;; Cases where both arguments are constant are handled in |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3498 ;; byte-optimize.el, we only need to handle those cases where one is |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3499 ;; constant here. |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3500 (let* ((equalp-sym (eval-when-compile (gensym))) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3501 (let-form '(progn)) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3502 (original-y y) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3503 equalp-temp checked) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3504 (macrolet |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3505 ((unordered-check (check) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3506 `(prog1 |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3507 (setq checked |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3508 (or ,check |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3509 (prog1 ,(sublis '((x . y) (y . x)) check :test #'eq) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3510 (setq equalp-temp x x y y equalp-temp)))) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3511 (when checked |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3512 (unless (symbolp y) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3513 (setq let-form `(let ((,equalp-sym ,y))) y equalp-sym)))))) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3514 ;; In the bodies of the below clauses, x is always a constant expression |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3515 ;; of the type we're interested in, and y is always a symbol that refers |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3516 ;; to the result non-constant side of the comparison. |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3517 (cond ((unordered-check (and (arrayp x) (not (cl-const-expr-p y)))) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3518 ;; Strings and other arrays. A vector containing the same |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3519 ;; character elements as a given string is equalp to that string; |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3520 ;; a bit-vector can only be equalp to a string if both are |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3521 ;; zero-length. |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3522 (cond |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3523 ((member x '("" #* [])) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3524 ;; No need to protect against multiple evaluation here: |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3525 `(and (member ,original-y '("" #* [])) t)) |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3526 (t form))) |
4792
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3527 ((unordered-check (and (numberp x) (not (cl-const-expr-p y)))) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3528 `(,@let-form |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3529 (and (numberp ,y) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3530 (= ,x ,y)))) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3531 ((unordered-check (and (hash-table-p x) (not (cl-const-expr-p y)))) |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3532 form) |
4792
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3533 ((unordered-check |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3534 ;; Symbols; eq. |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3535 (and (not (cl-const-expr-p y)) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3536 (or (memq x '(nil t)) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3537 (and (eq (car-safe x) 'quote) (symbolp (second x)))))) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3538 (cons 'eq (cdr form))) |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3539 |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3540 ;; This clause is wrong -- e.g. when comparing a constant char-table |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3541 ;; against a non-constant expression that evaluates to a char-table, |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3542 ;; or some for range tables or certain other types, `equalp' is |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3543 ;; not the same as `equal'. We could insert the known list of |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3544 ;; types with special `equalp' property, but it's fragile and may |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3545 ;; not be much of an optimization, esp. since these types don't |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3546 ;; occur that often are often big. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3547 ;;((unordered-check |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3548 ;; ;; Compare conses at runtime, there's no real upside to |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3549 ;; ;; unrolling the function -> they fall through to the next |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3550 ;; ;; clause in this function. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3551 ;; (and (cl-const-expr-p x) (not (consp x)) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3552 ;; (not (cl-const-expr-p y)))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3553 ;; ;; All other types; use equal. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3554 ;; (cons 'equal (cdr form))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3555 |
4792
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3556 ;; Neither side is a constant expression, do all our evaluation at |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3557 ;; runtime (or both are, and equalp will be called from |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3558 ;; byte-optimize.el). |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3559 (t form))))) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3560 |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3561 ;;(define-compiler-macro equalp (&whole form x y) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3562 ;; "Expand calls to `equalp' where X or Y is a constant expression. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3563 ;; |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3564 ;;Much of the processing that `equalp' does is dependent on the types of both |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3565 ;;of its arguments, and with type information for one of them, we can |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3566 ;;eliminate much of the body of the function at compile time. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3567 ;; |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3568 ;;Where both X and Y are constant expressions, `equalp' is evaluated at |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3569 ;;compile time by byte-optimize.el--this compiler macro passes FORM through to |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3570 ;;the byte optimizer in those cases." |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3571 ;; ;; Cases where both arguments are constant are handled in |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3572 ;; ;; byte-optimize.el, we only need to handle those cases where one is |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3573 ;; ;; constant here. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3574 ;; (let* ((equalp-sym (eval-when-compile (gensym))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3575 ;; (let-form '(progn)) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3576 ;; (check-bit-vector t) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3577 ;; (check-string t) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3578 ;; (original-y y) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3579 ;; equalp-temp checked) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3580 ;; (macrolet |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3581 ;; ((unordered-check (check) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3582 ;; `(prog1 |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3583 ;; (setq checked |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3584 ;; (or ,check |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3585 ;; (prog1 ,(sublis '((x . y) (y . x)) check :test #'eq) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3586 ;; (setq equalp-temp x x y y equalp-temp)))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3587 ;; (when checked |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3588 ;; (unless (symbolp y) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3589 ;; (setq let-form `(let ((,equalp-sym ,y))) y equalp-sym)))))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3590 ;; ;; In the bodies of the below clauses, x is always a constant expression |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3591 ;; ;; of the type we're interested in, and y is always a symbol that refers |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3592 ;; ;; to the result non-constant side of the comparison. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3593 ;; (cond ((unordered-check (and (arrayp x) (not (cl-const-expr-p y)))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3594 ;; ;; Strings and other arrays. A vector containing the same |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3595 ;; ;; character elements as a given string is equalp to that string; |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3596 ;; ;; a bit-vector can only be equalp to a string if both are |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3597 ;; ;; zero-length. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3598 ;; (cond |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3599 ;; ((member x '("" #* [])) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3600 ;; ;; No need to protect against multiple evaluation here: |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3601 ;; `(and (member ,original-y '("" #* [])) t)) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3602 ;; ((stringp x) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3603 ;; `(,@let-form |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3604 ;; (if (stringp ,y) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3605 ;; (eq t (compare-strings ,x nil nil |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3606 ;; ,y nil nil t)) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3607 ;; (if (vectorp ,y) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3608 ;; (cl-string-vector-equalp ,x ,y))))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3609 ;; ((bit-vector-p x) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3610 ;; `(,@let-form |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3611 ;; (if (bit-vector-p ,y) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3612 ;; ;; No need to call equalp on each element here: |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3613 ;; (equal ,x ,y) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3614 ;; (if (vectorp ,y) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3615 ;; (cl-bit-vector-vector-equalp ,x ,y))))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3616 ;; (t |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3617 ;; (loop |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3618 ;; for elt across x |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3619 ;; ;; We may not need to check the other argument if it's a |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3620 ;; ;; string or bit vector, depending on the contents of x: |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3621 ;; always (progn |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3622 ;; (unless (characterp elt) (setq check-string nil)) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3623 ;; (unless (and (numberp elt) (or (= elt 0) (= elt 1))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3624 ;; (setq check-bit-vector nil)) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3625 ;; (or check-string check-bit-vector))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3626 ;; `(,@let-form |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3627 ;; (cond |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3628 ;; ,@(if check-string |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3629 ;; `(((stringp ,y) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3630 ;; (cl-string-vector-equalp ,y ,x)))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3631 ;; ,@(if check-bit-vector |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3632 ;; `(((bit-vector-p ,y) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3633 ;; (cl-bit-vector-vector-equalp ,y ,x)))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3634 ;; ((vectorp ,y) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3635 ;; (cl-vector-array-equalp ,x ,y))))))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3636 ;; ((unordered-check (and (characterp x) (not (cl-const-expr-p y)))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3637 ;; `(,@let-form |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3638 ;; (or (eq ,x ,y) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3639 ;; ;; eq has a bytecode, char-equal doesn't. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3640 ;; (and (characterp ,y) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3641 ;; (eq (downcase ,x) (downcase ,y)))))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3642 ;; ((unordered-check (and (numberp x) (not (cl-const-expr-p y)))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3643 ;; `(,@let-form |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3644 ;; (and (numberp ,y) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3645 ;; (= ,x ,y)))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3646 ;; ((unordered-check (and (hash-table-p x) (not (cl-const-expr-p y)))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3647 ;; ;; Hash tables; follow the CL spec. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3648 ;; `(,@let-form |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3649 ;; (and (hash-table-p ,y) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3650 ;; (eq ',(hash-table-test x) (hash-table-test ,y)) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3651 ;; (= ,(hash-table-count x) (hash-table-count ,y)) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3652 ;; (cl-hash-table-contents-equalp ,x ,y)))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3653 ;; ((unordered-check |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3654 ;; ;; Symbols; eq. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3655 ;; (and (not (cl-const-expr-p y)) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3656 ;; (or (memq x '(nil t)) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3657 ;; (and (eq (car-safe x) 'quote) (symbolp (second x)))))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3658 ;; (cons 'eq (cdr form))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3659 ;; ((unordered-check |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3660 ;; ;; Compare conses at runtime, there's no real upside to |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3661 ;; ;; unrolling the function -> they fall through to the next |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3662 ;; ;; clause in this function. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3663 ;; (and (cl-const-expr-p x) (not (consp x)) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3664 ;; (not (cl-const-expr-p y)))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3665 ;; ;; All other types; use equal. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3666 ;; (cons 'equal (cdr form))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3667 ;; ;; Neither side is a constant expression, do all our evaluation at |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3668 ;; ;; runtime (or both are, and equalp will be called from |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3669 ;; ;; byte-optimize.el). |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3670 ;; (t form))))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3671 |
4997
8800b5350a13
Move #'some, #'every to C, implementing them with mapcarX.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3672 (define-compiler-macro notany (&whole form &rest cl-rest) |
5153
f552caabf58b
Correct the notany, notevery compiler macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5099
diff
changeset
|
3673 `(not (some ,@(cdr form)))) |
4997
8800b5350a13
Move #'some, #'every to C, implementing them with mapcarX.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3674 |
8800b5350a13
Move #'some, #'every to C, implementing them with mapcarX.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3675 (define-compiler-macro notevery (&whole form &rest cl-rest) |
5153
f552caabf58b
Correct the notany, notevery compiler macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5099
diff
changeset
|
3676 `(not (every ,@(cdr form)))) |
4997
8800b5350a13
Move #'some, #'every to C, implementing them with mapcarX.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3677 |
5056
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3678 (define-compiler-macro constantly (&whole form value &rest more-values) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3679 (cond |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3680 ((< (length form) 2) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3681 ;; Error at runtime: |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3682 form) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3683 ((cl-const-exprs-p (cdr form)) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3684 `#'(lambda (&rest ignore) (values ,@(cdr form)))) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3685 (t |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3686 (let* ((num-values (length (cdr form))) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3687 (placeholders-counts (make-vector num-values -1)) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3688 (placeholders (loop |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3689 for i from 0 below num-values |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3690 collect (make-symbol (format "%d" i)))) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3691 (compiled |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3692 (byte-compile-sexp |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3693 `#'(lambda (&rest ignore) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3694 ;; Compiles to a references into the compiled function |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3695 ;; constants vector: |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3696 (values ,@(mapcar #'quote-maybe placeholders))))) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3697 position) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3698 `(make-byte-code '(&rest ignore) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3699 ,(compiled-function-instructions compiled) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3700 (vector ,@(loop |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3701 for constant across (compiled-function-constants compiled) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3702 collect (if (setq position |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3703 (position constant placeholders)) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3704 (prog2 |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3705 (incf (aref placeholders-counts position)) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3706 (nth position (cdr form))) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3707 (quote-maybe constant)) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3708 finally |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3709 (assert (every #'zerop placeholders-counts) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3710 t "Placeholders should each have been used once"))) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3711 ,(compiled-function-stack-depth compiled)))))) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3712 |
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5153
diff
changeset
|
3713 (define-compiler-macro stable-sort (&whole form &rest cl-rest) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5153
diff
changeset
|
3714 (cons 'sort* (cdr form))) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5153
diff
changeset
|
3715 |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3716 (define-compiler-macro svref (&whole form) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3717 (cons 'aref (cdr form))) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3718 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3719 (define-compiler-macro acons (a b c) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3720 `(cons (cons ,a ,b) ,c)) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3721 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3722 (define-compiler-macro pairlis (a b &optional c) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3723 `(nconc (mapcar* #'cons ,a ,b) ,c)) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3724 |
5226
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3725 (define-compiler-macro complement (&whole form fn) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3726 (if (or (eq (car-safe fn) 'function) (eq (car-safe fn) 'quote)) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3727 (cond |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3728 ((and (symbolp (second fn)) (get (second fn) 'byte-compile-negated-op)) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3729 (list 'function (get (second fn) 'byte-compile-negated-op))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3730 ((and (symbolp (second fn)) (fboundp (second fn)) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3731 (compiled-function-p (indirect-function (second fn)))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3732 (let* ((cf (indirect-function (second fn))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3733 (cfa (compiled-function-arglist cf)) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3734 (do-apply (memq '&rest cfa))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3735 `#'(lambda ,cfa |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3736 (not (,@(if do-apply `(apply ',(second fn)) (list (second fn))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3737 ,@(remq '&optional |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3738 (remq '&rest cfa))))))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3739 (t |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3740 `#'(lambda (&rest arguments) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3741 (not (apply ,fn arguments))))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3742 ;; Determine the function to call at runtime. |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3743 (destructuring-bind |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3744 (arglist instructions constants stack-depth) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3745 (let ((compiled-lambda |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3746 (byte-compile-sexp |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3747 #'(lambda (&rest arguments) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3748 (not (apply 'placeholder arguments)))))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3749 (list |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3750 (compiled-function-arglist compiled-lambda) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3751 (compiled-function-instructions compiled-lambda) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3752 (append (compiled-function-constants compiled-lambda) nil) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3753 (compiled-function-stack-depth compiled-lambda))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3754 `(make-byte-code |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3755 ',arglist ,instructions (vector |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3756 ,@(nsublis |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3757 (list (cons (quote-maybe |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3758 'placeholder) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3759 fn)) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3760 (mapcar #'quote-maybe constants) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3761 :test #'equal)) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3762 ,stack-depth)))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3763 |
5242
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3764 (define-compiler-macro concatenate (&whole form type &rest seqs) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3765 (if (and (cl-const-expr-p type) (memq (cl-const-expr-val type) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3766 '(vector bit-vector list string))) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3767 (case (cl-const-expr-val type) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3768 (list (append (list 'append) (cddr form) '(nil))) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3769 (vector (cons 'vconcat (cddr form))) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3770 (bit-vector (cons 'bvconcat (cddr form))) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3771 (string (cons 'concat (cddr form)))) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3772 form)) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3773 |
5266
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3774 (map nil |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3775 #'(lambda (function) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3776 ;; There are byte codes for the two-argument versions of these |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3777 ;; functions; if the form has more arguments and those arguments |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3778 ;; have no side effects, transform to a series of two-argument |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3779 ;; calls. |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3780 (put function 'cl-compiler-macro |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3781 #'(lambda (form &rest arguments) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3782 (if (or (null (nthcdr 3 form)) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3783 (notevery #'cl-safe-expr-p (cdr form))) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3784 form |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3785 (cons 'and (mapcon |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3786 #'(lambda (rest) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3787 (and (cdr rest) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3788 `((,(car form) ,(pop rest) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3789 ,(car rest))))) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3790 (cdr form))))))) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3791 '(= < > <= >=)) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3792 |
428 | 3793 (mapc |
3794 #'(lambda (y) | |
3795 (put (car y) 'side-effect-free t) | |
3796 (put (car y) 'byte-compile 'cl-byte-compile-compiler-macro) | |
3797 (put (car y) 'cl-compiler-macro | |
3798 (list 'lambda '(w x) | |
3799 (if (symbolp (cadr y)) | |
3800 (list 'list (list 'quote (cadr y)) | |
3801 (list 'list (list 'quote (caddr y)) 'x)) | |
3802 (cons 'list (cdr y)))))) | |
3803 '((first 'car x) (second 'cadr x) (third 'caddr x) (fourth 'cadddr x) | |
3804 (fifth 'nth 4 x) (sixth 'nth 5 x) (seventh 'nth 6 x) | |
3805 (eighth 'nth 7 x) (ninth 'nth 8 x) (tenth 'nth 9 x) | |
3806 (rest 'cdr x) (endp 'null x) (plusp '> x 0) (minusp '< x 0) | |
446 | 3807 (oddp 'eq (list 'logand x 1) 1) |
3808 (evenp 'eq (list 'logand x 1) 0) | |
428 | 3809 (caar car car) (cadr car cdr) (cdar cdr car) (cddr cdr cdr) |
3810 (caaar car caar) (caadr car cadr) (cadar car cdar) | |
3811 (caddr car cddr) (cdaar cdr caar) (cdadr cdr cadr) | |
3812 (cddar cdr cdar) (cdddr cdr cddr) (caaaar car caaar) | |
3813 (caaadr car caadr) (caadar car cadar) (caaddr car caddr) | |
3814 (cadaar car cdaar) (cadadr car cdadr) (caddar car cddar) | |
3815 (cadddr car cdddr) (cdaaar cdr caaar) (cdaadr cdr caadr) | |
3816 (cdadar cdr cadar) (cdaddr cdr caddr) (cddaar cdr cdaar) | |
3817 (cddadr cdr cdadr) (cdddar cdr cddar) (cddddr cdr cdddr))) | |
3818 | |
3819 ;;; Things that are inline. | |
4997
8800b5350a13
Move #'some, #'every to C, implementing them with mapcarX.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3820 (proclaim '(inline acons map concatenate |
2153 | 3821 ;; XEmacs omission: gethash is builtin |
3822 cl-set-elt revappend nreconc)) | |
428 | 3823 |
3824 ;;; Things that are side-effect-free. Moved to byte-optimize.el | |
2153 | 3825 ;(mapcar (function (lambda (x) (put x 'side-effect-free t))) |
3826 ; '(oddp evenp signum last butlast ldiff pairlis gcd lcm | |
3827 ; isqrt floor* ceiling* truncate* round* mod* rem* subseq | |
3828 ; list-length get* getf)) | |
428 | 3829 |
3830 ;;; Things that are side-effect-and-error-free. Moved to byte-optimize.el | |
2153 | 3831 ;(mapcar (function (lambda (x) (put x 'side-effect-free 'error-free))) |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3832 ; '(eql list* subst acons equalp random-state-p |
2153 | 3833 ; copy-tree sublis)) |
428 | 3834 |
3835 | |
3836 (run-hooks 'cl-macs-load-hook) | |
3837 | |
2153 | 3838 ;;; arch-tag: afd947a6-b553-4df1-bba5-000be6388f46 |
428 | 3839 ;;; cl-macs.el ends here |