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