* test/automated/Makefile.in (all): Fix typo.
[emacs.git] / lisp / emacs-lisp / cl-macs.el
blobf58fc70053fcafcb23496ef987634d5e231a0d54
1 ;;; cl-macs.el --- Common Lisp macros
3 ;; Copyright (C) 1993, 2001-2012 Free Software Foundation, Inc.
5 ;; Author: Dave Gillespie <daveg@synaptics.com>
6 ;; Version: 2.02
7 ;; Keywords: extensions
8 ;; Package: emacs
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; These are extensions to Emacs Lisp that provide a degree of
28 ;; Common Lisp compatibility, beyond what is already built-in
29 ;; in Emacs Lisp.
31 ;; This package was written by Dave Gillespie; it is a complete
32 ;; rewrite of Cesar Quiroz's original cl.el package of December 1986.
34 ;; Bug reports, comments, and suggestions are welcome!
36 ;; This file contains the portions of the Common Lisp extensions
37 ;; package which should be autoloaded, but need only be present
38 ;; if the compiler or interpreter is used---this file is not
39 ;; necessary for executing compiled code.
41 ;; See cl.el for Change Log.
44 ;;; Code:
46 (require 'cl)
48 (defmacro cl-pop2 (place)
49 (list 'prog1 (list 'car (list 'cdr place))
50 (list 'setq place (list 'cdr (list 'cdr place)))))
51 (put 'cl-pop2 'edebug-form-spec 'edebug-sexps)
53 (defvar cl-optimize-safety)
54 (defvar cl-optimize-speed)
57 ;; This kludge allows macros which use cl-transform-function-property
58 ;; to be called at compile-time.
60 (require
61 (progn
62 (or (fboundp 'cl-transform-function-property)
63 (defalias 'cl-transform-function-property
64 (function (lambda (n p f)
65 (list 'put (list 'quote n) (list 'quote p)
66 (list 'function (cons 'lambda f)))))))
67 (car (or features (setq features (list 'cl-kludge))))))
70 ;;; Initialization.
72 (defvar cl-old-bc-file-form nil)
74 ;;; Some predicates for analyzing Lisp forms. These are used by various
75 ;;; macro expanders to optimize the results in certain common cases.
77 (defconst cl-simple-funcs '(car cdr nth aref elt if and or + - 1+ 1- min max
78 car-safe cdr-safe progn prog1 prog2))
79 (defconst cl-safe-funcs '(* / % length memq list vector vectorp
80 < > <= >= = error))
82 ;;; Check if no side effects, and executes quickly.
83 (defun cl-simple-expr-p (x &optional size)
84 (or size (setq size 10))
85 (if (and (consp x) (not (memq (car x) '(quote function function*))))
86 (and (symbolp (car x))
87 (or (memq (car x) cl-simple-funcs)
88 (get (car x) 'side-effect-free))
89 (progn
90 (setq size (1- size))
91 (while (and (setq x (cdr x))
92 (setq size (cl-simple-expr-p (car x) size))))
93 (and (null x) (>= size 0) size)))
94 (and (> size 0) (1- size))))
96 (defun cl-simple-exprs-p (xs)
97 (while (and xs (cl-simple-expr-p (car xs)))
98 (setq xs (cdr xs)))
99 (not xs))
101 ;;; Check if no side effects.
102 (defun cl-safe-expr-p (x)
103 (or (not (and (consp x) (not (memq (car x) '(quote function function*)))))
104 (and (symbolp (car x))
105 (or (memq (car x) cl-simple-funcs)
106 (memq (car x) cl-safe-funcs)
107 (get (car x) 'side-effect-free))
108 (progn
109 (while (and (setq x (cdr x)) (cl-safe-expr-p (car x))))
110 (null x)))))
112 ;;; Check if constant (i.e., no side effects or dependencies).
113 (defun cl-const-expr-p (x)
114 (cond ((consp x)
115 (or (eq (car x) 'quote)
116 (and (memq (car x) '(function function*))
117 (or (symbolp (nth 1 x))
118 (and (eq (car-safe (nth 1 x)) 'lambda) 'func)))))
119 ((symbolp x) (and (memq x '(nil t)) t))
120 (t t)))
122 (defun cl-const-exprs-p (xs)
123 (while (and xs (cl-const-expr-p (car xs)))
124 (setq xs (cdr xs)))
125 (not xs))
127 (defun cl-const-expr-val (x)
128 (and (eq (cl-const-expr-p x) t) (if (consp x) (nth 1 x) x)))
130 (defun cl-expr-access-order (x v)
131 ;; This apparently tries to return nil iff the expression X evaluates
132 ;; the variables V in the same order as they appear in V (so as to
133 ;; be able to replace those vars with the expressions they're bound
134 ;; to).
135 ;; FIXME: This is very naive, it doesn't even check to see if those
136 ;; variables appear more than once.
137 (if (cl-const-expr-p x) v
138 (if (consp x)
139 (progn
140 (while (setq x (cdr x)) (setq v (cl-expr-access-order (car x) v)))
142 (if (eq x (car v)) (cdr v) '(t)))))
144 ;;; Count number of times X refers to Y. Return nil for 0 times.
145 (defun cl-expr-contains (x y)
146 (cond ((equal y x) 1)
147 ((and (consp x) (not (memq (car-safe x) '(quote function function*))))
148 (let ((sum 0))
149 (while x
150 (setq sum (+ sum (or (cl-expr-contains (pop x) y) 0))))
151 (and (> sum 0) sum)))
152 (t nil)))
154 (defun cl-expr-contains-any (x y)
155 (while (and y (not (cl-expr-contains x (car y)))) (pop y))
158 ;;; Check whether X may depend on any of the symbols in Y.
159 (defun cl-expr-depends-p (x y)
160 (and (not (cl-const-expr-p x))
161 (or (not (cl-safe-expr-p x)) (cl-expr-contains-any x y))))
163 ;;; Symbols.
165 (defvar *gensym-counter*)
166 ;;;###autoload
167 (defun gensym (&optional prefix)
168 "Generate a new uninterned symbol.
169 The name is made by appending a number to PREFIX, default \"G\"."
170 (let ((pfix (if (stringp prefix) prefix "G"))
171 (num (if (integerp prefix) prefix
172 (prog1 *gensym-counter*
173 (setq *gensym-counter* (1+ *gensym-counter*))))))
174 (make-symbol (format "%s%d" pfix num))))
176 ;;;###autoload
177 (defun gentemp (&optional prefix)
178 "Generate a new interned symbol with a unique name.
179 The name is made by appending a number to PREFIX, default \"G\"."
180 (let ((pfix (if (stringp prefix) prefix "G"))
181 name)
182 (while (intern-soft (setq name (format "%s%d" pfix *gensym-counter*)))
183 (setq *gensym-counter* (1+ *gensym-counter*)))
184 (intern name)))
187 ;;; Program structure.
189 ;;;###autoload
190 (defmacro defun* (name args &rest body)
191 "Define NAME as a function.
192 Like normal `defun', except ARGLIST allows full Common Lisp conventions,
193 and BODY is implicitly surrounded by (block NAME ...).
195 \(fn NAME ARGLIST [DOCSTRING] BODY...)"
196 (let* ((res (cl-transform-lambda (cons args body) name))
197 (form (list* 'defun name (cdr res))))
198 (if (car res) (list 'progn (car res) form) form)))
200 ;;;###autoload
201 (defmacro defmacro* (name args &rest body)
202 "Define NAME as a macro.
203 Like normal `defmacro', except ARGLIST allows full Common Lisp conventions,
204 and BODY is implicitly surrounded by (block NAME ...).
206 \(fn NAME ARGLIST [DOCSTRING] BODY...)"
207 (let* ((res (cl-transform-lambda (cons args body) name))
208 (form (list* 'defmacro name (cdr res))))
209 (if (car res) (list 'progn (car res) form) form)))
211 ;;;###autoload
212 (defmacro function* (func)
213 "Introduce a function.
214 Like normal `function', except that if argument is a lambda form,
215 its argument list allows full Common Lisp conventions."
216 (if (eq (car-safe func) 'lambda)
217 (let* ((res (cl-transform-lambda (cdr func) 'cl-none))
218 (form (list 'function (cons 'lambda (cdr res)))))
219 (if (car res) (list 'progn (car res) form) form))
220 (list 'function func)))
222 (defun cl-transform-function-property (func prop form)
223 (let ((res (cl-transform-lambda form func)))
224 (append '(progn) (cdr (cdr (car res)))
225 (list (list 'put (list 'quote func) (list 'quote prop)
226 (list 'function (cons 'lambda (cdr res))))))))
228 (defconst lambda-list-keywords
229 '(&optional &rest &key &allow-other-keys &aux &whole &body &environment))
231 (defvar cl-macro-environment nil
232 "Keep the list of currently active macros.
233 It is a list of elements of the form either:
234 - (SYMBOL . FUNCTION) where FUNCTION is the macro expansion function.
235 - (SYMBOL-NAME . EXPANSION) where SYMBOL-NAME is the name of a symbol macro.")
236 (defvar bind-block) (defvar bind-defs) (defvar bind-enquote)
237 (defvar bind-inits) (defvar bind-lets) (defvar bind-forms)
239 (declare-function help-add-fundoc-usage "help-fns" (docstring arglist))
241 (defun cl--make-usage-var (x)
242 "X can be a var or a (destructuring) lambda-list."
243 (cond
244 ((symbolp x) (make-symbol (upcase (symbol-name x))))
245 ((consp x) (cl--make-usage-args x))
246 (t x)))
248 (defun cl--make-usage-args (arglist)
249 ;; `orig-args' can contain &cl-defs (an internal
250 ;; CL thingy I don't understand), so remove it.
251 (let ((x (memq '&cl-defs arglist)))
252 (when x (setq arglist (delq (car x) (remq (cadr x) arglist)))))
253 (let ((state nil))
254 (mapcar (lambda (x)
255 (cond
256 ((symbolp x)
257 (if (eq ?\& (aref (symbol-name x) 0))
258 (setq state x)
259 (make-symbol (upcase (symbol-name x)))))
260 ((not (consp x)) x)
261 ((memq state '(nil &rest)) (cl--make-usage-args x))
262 (t ;(VAR INITFORM SVAR) or ((KEYWORD VAR) INITFORM SVAR).
263 (list*
264 (if (and (consp (car x)) (eq state '&key))
265 (list (caar x) (cl--make-usage-var (nth 1 (car x))))
266 (cl--make-usage-var (car x)))
267 (nth 1 x) ;INITFORM.
268 (cl--make-usage-args (nthcdr 2 x)) ;SVAR.
269 ))))
270 arglist)))
272 (defun cl-transform-lambda (form bind-block)
273 (let* ((args (car form)) (body (cdr form)) (orig-args args)
274 (bind-defs nil) (bind-enquote nil)
275 (bind-inits nil) (bind-lets nil) (bind-forms nil)
276 (header nil) (simple-args nil))
277 (while (or (stringp (car body))
278 (memq (car-safe (car body)) '(interactive declare)))
279 (push (pop body) header))
280 (setq args (if (listp args) (copy-list args) (list '&rest args)))
281 (let ((p (last args))) (if (cdr p) (setcdr p (list '&rest (cdr p)))))
282 (if (setq bind-defs (cadr (memq '&cl-defs args)))
283 (setq args (delq '&cl-defs (delq bind-defs args))
284 bind-defs (cadr bind-defs)))
285 (if (setq bind-enquote (memq '&cl-quote args))
286 (setq args (delq '&cl-quote args)))
287 (if (memq '&whole args) (error "&whole not currently implemented"))
288 (let* ((p (memq '&environment args)) (v (cadr p)))
289 (if p (setq args (nconc (delq (car p) (delq v args))
290 (list '&aux (list v 'cl-macro-environment))))))
291 (while (and args (symbolp (car args))
292 (not (memq (car args) '(nil &rest &body &key &aux)))
293 (not (and (eq (car args) '&optional)
294 (or bind-defs (consp (cadr args))))))
295 (push (pop args) simple-args))
296 (or (eq bind-block 'cl-none)
297 (setq body (list (list* 'block bind-block body))))
298 (if (null args)
299 (list* nil (nreverse simple-args) (nconc (nreverse header) body))
300 (if (memq '&optional simple-args) (push '&optional args))
301 (cl-do-arglist args nil (- (length simple-args)
302 (if (memq '&optional simple-args) 1 0)))
303 (setq bind-lets (nreverse bind-lets))
304 (list* (and bind-inits (list* 'eval-when '(compile load eval)
305 (nreverse bind-inits)))
306 (nconc (nreverse simple-args)
307 (list '&rest (car (pop bind-lets))))
308 (nconc (let ((hdr (nreverse header)))
309 ;; Macro expansion can take place in the middle of
310 ;; apparently harmless computation, so it should not
311 ;; touch the match-data.
312 (save-match-data
313 (require 'help-fns)
314 (cons (help-add-fundoc-usage
315 (if (stringp (car hdr)) (pop hdr))
316 (format "%S"
317 (cons 'fn
318 (cl--make-usage-args orig-args))))
319 hdr)))
320 (list (nconc (list 'let* bind-lets)
321 (nreverse bind-forms) body)))))))
323 (defun cl-do-arglist (args expr &optional num) ; uses bind-*
324 (if (nlistp args)
325 (if (or (memq args lambda-list-keywords) (not (symbolp args)))
326 (error "Invalid argument name: %s" args)
327 (push (list args expr) bind-lets))
328 (setq args (copy-list args))
329 (let ((p (last args))) (if (cdr p) (setcdr p (list '&rest (cdr p)))))
330 (let ((p (memq '&body args))) (if p (setcar p '&rest)))
331 (if (memq '&environment args) (error "&environment used incorrectly"))
332 (let ((save-args args)
333 (restarg (memq '&rest args))
334 (safety (if (cl-compiling-file) cl-optimize-safety 3))
335 (keys nil)
336 (laterarg nil) (exactarg nil) minarg)
337 (or num (setq num 0))
338 (if (listp (cadr restarg))
339 (setq restarg (make-symbol "--cl-rest--"))
340 (setq restarg (cadr restarg)))
341 (push (list restarg expr) bind-lets)
342 (if (eq (car args) '&whole)
343 (push (list (cl-pop2 args) restarg) bind-lets))
344 (let ((p args))
345 (setq minarg restarg)
346 (while (and p (not (memq (car p) lambda-list-keywords)))
347 (or (eq p args) (setq minarg (list 'cdr minarg)))
348 (setq p (cdr p)))
349 (if (memq (car p) '(nil &aux))
350 (setq minarg (list '= (list 'length restarg)
351 (length (ldiff args p)))
352 exactarg (not (eq args p)))))
353 (while (and args (not (memq (car args) lambda-list-keywords)))
354 (let ((poparg (list (if (or (cdr args) (not exactarg)) 'pop 'car)
355 restarg)))
356 (cl-do-arglist
357 (pop args)
358 (if (or laterarg (= safety 0)) poparg
359 (list 'if minarg poparg
360 (list 'signal '(quote wrong-number-of-arguments)
361 (list 'list (and (not (eq bind-block 'cl-none))
362 (list 'quote bind-block))
363 (list 'length restarg)))))))
364 (setq num (1+ num) laterarg t))
365 (while (and (eq (car args) '&optional) (pop args))
366 (while (and args (not (memq (car args) lambda-list-keywords)))
367 (let ((arg (pop args)))
368 (or (consp arg) (setq arg (list arg)))
369 (if (cddr arg) (cl-do-arglist (nth 2 arg) (list 'and restarg t)))
370 (let ((def (if (cdr arg) (nth 1 arg)
371 (or (car bind-defs)
372 (nth 1 (assq (car arg) bind-defs)))))
373 (poparg (list 'pop restarg)))
374 (and def bind-enquote (setq def (list 'quote def)))
375 (cl-do-arglist (car arg)
376 (if def (list 'if restarg poparg def) poparg))
377 (setq num (1+ num))))))
378 (if (eq (car args) '&rest)
379 (let ((arg (cl-pop2 args)))
380 (if (consp arg) (cl-do-arglist arg restarg)))
381 (or (eq (car args) '&key) (= safety 0) exactarg
382 (push (list 'if restarg
383 (list 'signal '(quote wrong-number-of-arguments)
384 (list 'list
385 (and (not (eq bind-block 'cl-none))
386 (list 'quote bind-block))
387 (list '+ num (list 'length restarg)))))
388 bind-forms)))
389 (while (and (eq (car args) '&key) (pop args))
390 (while (and args (not (memq (car args) lambda-list-keywords)))
391 (let ((arg (pop args)))
392 (or (consp arg) (setq arg (list arg)))
393 (let* ((karg (if (consp (car arg)) (caar arg)
394 (intern (format ":%s" (car arg)))))
395 (varg (if (consp (car arg)) (cadar arg) (car arg)))
396 (def (if (cdr arg) (cadr arg)
397 (or (car bind-defs) (cadr (assq varg bind-defs)))))
398 (look (list 'memq (list 'quote karg) restarg)))
399 (and def bind-enquote (setq def (list 'quote def)))
400 (if (cddr arg)
401 (let* ((temp (or (nth 2 arg) (make-symbol "--cl-var--")))
402 (val (list 'car (list 'cdr temp))))
403 (cl-do-arglist temp look)
404 (cl-do-arglist varg
405 (list 'if temp
406 (list 'prog1 val (list 'setq temp t))
407 def)))
408 (cl-do-arglist
409 varg
410 (list 'car
411 (list 'cdr
412 (if (null def)
413 look
414 (list 'or look
415 (if (eq (cl-const-expr-p def) t)
416 (list
417 'quote
418 (list nil (cl-const-expr-val def)))
419 (list 'list nil def))))))))
420 (push karg keys)))))
421 (setq keys (nreverse keys))
422 (or (and (eq (car args) '&allow-other-keys) (pop args))
423 (null keys) (= safety 0)
424 (let* ((var (make-symbol "--cl-keys--"))
425 (allow '(:allow-other-keys))
426 (check (list
427 'while var
428 (list
429 'cond
430 (list (list 'memq (list 'car var)
431 (list 'quote (append keys allow)))
432 (list 'setq var (list 'cdr (list 'cdr var))))
433 (list (list 'car
434 (list 'cdr
435 (list 'memq (cons 'quote allow)
436 restarg)))
437 (list 'setq var nil))
438 (list t
439 (list
440 'error
441 (format "Keyword argument %%s not one of %s"
442 keys)
443 (list 'car var)))))))
444 (push (list 'let (list (list var restarg)) check) bind-forms)))
445 (while (and (eq (car args) '&aux) (pop args))
446 (while (and args (not (memq (car args) lambda-list-keywords)))
447 (if (consp (car args))
448 (if (and bind-enquote (cadar args))
449 (cl-do-arglist (caar args)
450 (list 'quote (cadr (pop args))))
451 (cl-do-arglist (caar args) (cadr (pop args))))
452 (cl-do-arglist (pop args) nil))))
453 (if args (error "Malformed argument list %s" save-args)))))
455 (defun cl-arglist-args (args)
456 (if (nlistp args) (list args)
457 (let ((res nil) (kind nil) arg)
458 (while (consp args)
459 (setq arg (pop args))
460 (if (memq arg lambda-list-keywords) (setq kind arg)
461 (if (eq arg '&cl-defs) (pop args)
462 (and (consp arg) kind (setq arg (car arg)))
463 (and (consp arg) (cdr arg) (eq kind '&key) (setq arg (cadr arg)))
464 (setq res (nconc res (cl-arglist-args arg))))))
465 (nconc res (and args (list args))))))
467 ;;;###autoload
468 (defmacro destructuring-bind (args expr &rest body)
469 (let* ((bind-lets nil) (bind-forms nil) (bind-inits nil)
470 (bind-defs nil) (bind-block 'cl-none) (bind-enquote nil))
471 (cl-do-arglist (or args '(&aux)) expr)
472 (append '(progn) bind-inits
473 (list (nconc (list 'let* (nreverse bind-lets))
474 (nreverse bind-forms) body)))))
477 ;;; The `eval-when' form.
479 (defvar cl-not-toplevel nil)
481 ;;;###autoload
482 (defmacro eval-when (when &rest body)
483 "Control when BODY is evaluated.
484 If `compile' is in WHEN, BODY is evaluated when compiled at top-level.
485 If `load' is in WHEN, BODY is evaluated when loaded after top-level compile.
486 If `eval' is in WHEN, BODY is evaluated when interpreted or at non-top-level.
488 \(fn (WHEN...) BODY...)"
489 (if (and (fboundp 'cl-compiling-file) (cl-compiling-file)
490 (not cl-not-toplevel) (not (boundp 'for-effect))) ; horrible kludge
491 (let ((comp (or (memq 'compile when) (memq :compile-toplevel when)))
492 (cl-not-toplevel t))
493 (if (or (memq 'load when) (memq :load-toplevel when))
494 (if comp (cons 'progn (mapcar 'cl-compile-time-too body))
495 (list* 'if nil nil body))
496 (progn (if comp (eval (cons 'progn body))) nil)))
497 (and (or (memq 'eval when) (memq :execute when))
498 (cons 'progn body))))
500 (defun cl-compile-time-too (form)
501 (or (and (symbolp (car-safe form)) (get (car-safe form) 'byte-hunk-handler))
502 (setq form (macroexpand
503 form (cons '(eval-when) byte-compile-macro-environment))))
504 (cond ((eq (car-safe form) 'progn)
505 (cons 'progn (mapcar 'cl-compile-time-too (cdr form))))
506 ((eq (car-safe form) 'eval-when)
507 (let ((when (nth 1 form)))
508 (if (or (memq 'eval when) (memq :execute when))
509 (list* 'eval-when (cons 'compile when) (cddr form))
510 form)))
511 (t (eval form) form)))
513 ;;;###autoload
514 (defmacro load-time-value (form &optional read-only)
515 "Like `progn', but evaluates the body at load time.
516 The result of the body appears to the compiler as a quoted constant."
517 (if (cl-compiling-file)
518 (let* ((temp (gentemp "--cl-load-time--"))
519 (set (list 'set (list 'quote temp) form)))
520 (if (and (fboundp 'byte-compile-file-form-defmumble)
521 (boundp 'this-kind) (boundp 'that-one))
522 (fset 'byte-compile-file-form
523 (list 'lambda '(form)
524 (list 'fset '(quote byte-compile-file-form)
525 (list 'quote
526 (symbol-function 'byte-compile-file-form)))
527 (list 'byte-compile-file-form (list 'quote set))
528 '(byte-compile-file-form form)))
529 (print set (symbol-value 'byte-compile--outbuffer)))
530 (list 'symbol-value (list 'quote temp)))
531 (list 'quote (eval form))))
534 ;;; Conditional control structures.
536 ;;;###autoload
537 (defmacro case (expr &rest clauses)
538 "Eval EXPR and choose among clauses on that value.
539 Each clause looks like (KEYLIST BODY...). EXPR is evaluated and compared
540 against each key in each KEYLIST; the corresponding BODY is evaluated.
541 If no clause succeeds, case returns nil. A single atom may be used in
542 place of a KEYLIST of one atom. A KEYLIST of t or `otherwise' is
543 allowed only in the final clause, and matches if no other keys match.
544 Key values are compared by `eql'.
545 \n(fn EXPR (KEYLIST BODY...)...)"
546 (let* ((temp (if (cl-simple-expr-p expr 3) expr (make-symbol "--cl-var--")))
547 (head-list nil)
548 (body (cons
549 'cond
550 (mapcar
551 (function
552 (lambda (c)
553 (cons (cond ((memq (car c) '(t otherwise)) t)
554 ((eq (car c) 'ecase-error-flag)
555 (list 'error "ecase failed: %s, %s"
556 temp (list 'quote (reverse head-list))))
557 ((listp (car c))
558 (setq head-list (append (car c) head-list))
559 (list 'member* temp (list 'quote (car c))))
561 (if (memq (car c) head-list)
562 (error "Duplicate key in case: %s"
563 (car c)))
564 (push (car c) head-list)
565 (list 'eql temp (list 'quote (car c)))))
566 (or (cdr c) '(nil)))))
567 clauses))))
568 (if (eq temp expr) body
569 (list 'let (list (list temp expr)) body))))
571 ;;;###autoload
572 (defmacro ecase (expr &rest clauses)
573 "Like `case', but error if no case fits.
574 `otherwise'-clauses are not allowed.
575 \n(fn EXPR (KEYLIST BODY...)...)"
576 (list* 'case expr (append clauses '((ecase-error-flag)))))
578 ;;;###autoload
579 (defmacro typecase (expr &rest clauses)
580 "Evals EXPR, chooses among clauses on that value.
581 Each clause looks like (TYPE BODY...). EXPR is evaluated and, if it
582 satisfies TYPE, the corresponding BODY is evaluated. If no clause succeeds,
583 typecase returns nil. A TYPE of t or `otherwise' is allowed only in the
584 final clause, and matches if no other keys match.
585 \n(fn EXPR (TYPE BODY...)...)"
586 (let* ((temp (if (cl-simple-expr-p expr 3) expr (make-symbol "--cl-var--")))
587 (type-list nil)
588 (body (cons
589 'cond
590 (mapcar
591 (function
592 (lambda (c)
593 (cons (cond ((eq (car c) 'otherwise) t)
594 ((eq (car c) 'ecase-error-flag)
595 (list 'error "etypecase failed: %s, %s"
596 temp (list 'quote (reverse type-list))))
598 (push (car c) type-list)
599 (cl-make-type-test temp (car c))))
600 (or (cdr c) '(nil)))))
601 clauses))))
602 (if (eq temp expr) body
603 (list 'let (list (list temp expr)) body))))
605 ;;;###autoload
606 (defmacro etypecase (expr &rest clauses)
607 "Like `typecase', but error if no case fits.
608 `otherwise'-clauses are not allowed.
609 \n(fn EXPR (TYPE BODY...)...)"
610 (list* 'typecase expr (append clauses '((ecase-error-flag)))))
613 ;;; Blocks and exits.
615 ;;;###autoload
616 (defmacro block (name &rest body)
617 "Define a lexically-scoped block named NAME.
618 NAME may be any symbol. Code inside the BODY forms can call `return-from'
619 to jump prematurely out of the block. This differs from `catch' and `throw'
620 in two respects: First, the NAME is an unevaluated symbol rather than a
621 quoted symbol or other form; and second, NAME is lexically rather than
622 dynamically scoped: Only references to it within BODY will work. These
623 references may appear inside macro expansions, but not inside functions
624 called from BODY."
625 (if (cl-safe-expr-p (cons 'progn body)) (cons 'progn body)
626 (list 'cl-block-wrapper
627 (list* 'catch (list 'quote (intern (format "--cl-block-%s--" name)))
628 body))))
630 ;;;###autoload
631 (defmacro return (&optional result)
632 "Return from the block named nil.
633 This is equivalent to `(return-from nil RESULT)'."
634 (list 'return-from nil result))
636 ;;;###autoload
637 (defmacro return-from (name &optional result)
638 "Return from the block named NAME.
639 This jumps out to the innermost enclosing `(block NAME ...)' form,
640 returning RESULT from that form (or nil if RESULT is omitted).
641 This is compatible with Common Lisp, but note that `defun' and
642 `defmacro' do not create implicit blocks as they do in Common Lisp."
643 (let ((name2 (intern (format "--cl-block-%s--" name))))
644 (list 'cl-block-throw (list 'quote name2) result)))
647 ;;; The "loop" macro.
649 (defvar loop-args) (defvar loop-accum-var) (defvar loop-accum-vars)
650 (defvar loop-bindings) (defvar loop-body) (defvar loop-destr-temps)
651 (defvar loop-finally) (defvar loop-finish-flag) (defvar loop-first-flag)
652 (defvar loop-initially) (defvar loop-map-form) (defvar loop-name)
653 (defvar loop-result) (defvar loop-result-explicit)
654 (defvar loop-result-var) (defvar loop-steps) (defvar loop-symbol-macs)
656 ;;;###autoload
657 (defmacro loop (&rest loop-args)
658 "The Common Lisp `loop' macro.
659 Valid clauses are:
660 for VAR from/upfrom/downfrom NUM to/upto/downto/above/below NUM by NUM,
661 for VAR in LIST by FUNC, for VAR on LIST by FUNC, for VAR = INIT then EXPR,
662 for VAR across ARRAY, repeat NUM, with VAR = INIT, while COND, until COND,
663 always COND, never COND, thereis COND, collect EXPR into VAR,
664 append EXPR into VAR, nconc EXPR into VAR, sum EXPR into VAR,
665 count EXPR into VAR, maximize EXPR into VAR, minimize EXPR into VAR,
666 if COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...],
667 unless COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...],
668 do EXPRS..., initially EXPRS..., finally EXPRS..., return EXPR,
669 finally return EXPR, named NAME.
671 \(fn CLAUSE...)"
672 (if (not (memq t (mapcar 'symbolp (delq nil (delq t (copy-list loop-args))))))
673 (list 'block nil (list* 'while t loop-args))
674 (let ((loop-name nil) (loop-bindings nil)
675 (loop-body nil) (loop-steps nil)
676 (loop-result nil) (loop-result-explicit nil)
677 (loop-result-var nil) (loop-finish-flag nil)
678 (loop-accum-var nil) (loop-accum-vars nil)
679 (loop-initially nil) (loop-finally nil)
680 (loop-map-form nil) (loop-first-flag nil)
681 (loop-destr-temps nil) (loop-symbol-macs nil))
682 (setq loop-args (append loop-args '(cl-end-loop)))
683 (while (not (eq (car loop-args) 'cl-end-loop)) (cl-parse-loop-clause))
684 (if loop-finish-flag
685 (push `((,loop-finish-flag t)) loop-bindings))
686 (if loop-first-flag
687 (progn (push `((,loop-first-flag t)) loop-bindings)
688 (push `(setq ,loop-first-flag nil) loop-steps)))
689 (let* ((epilogue (nconc (nreverse loop-finally)
690 (list (or loop-result-explicit loop-result))))
691 (ands (cl-loop-build-ands (nreverse loop-body)))
692 (while-body (nconc (cadr ands) (nreverse loop-steps)))
693 (body (append
694 (nreverse loop-initially)
695 (list (if loop-map-form
696 (list 'block '--cl-finish--
697 (subst
698 (if (eq (car ands) t) while-body
699 (cons `(or ,(car ands)
700 (return-from --cl-finish--
701 nil))
702 while-body))
703 '--cl-map loop-map-form))
704 (list* 'while (car ands) while-body)))
705 (if loop-finish-flag
706 (if (equal epilogue '(nil)) (list loop-result-var)
707 `((if ,loop-finish-flag
708 (progn ,@epilogue) ,loop-result-var)))
709 epilogue))))
710 (if loop-result-var (push (list loop-result-var) loop-bindings))
711 (while loop-bindings
712 (if (cdar loop-bindings)
713 (setq body (list (cl-loop-let (pop loop-bindings) body t)))
714 (let ((lets nil))
715 (while (and loop-bindings
716 (not (cdar loop-bindings)))
717 (push (car (pop loop-bindings)) lets))
718 (setq body (list (cl-loop-let lets body nil))))))
719 (if loop-symbol-macs
720 (setq body (list (list* 'symbol-macrolet loop-symbol-macs body))))
721 (list* 'block loop-name body)))))
723 (defun cl-parse-loop-clause () ; uses loop-*
724 (let ((word (pop loop-args))
725 (hash-types '(hash-key hash-keys hash-value hash-values))
726 (key-types '(key-code key-codes key-seq key-seqs
727 key-binding key-bindings)))
728 (cond
730 ((null loop-args)
731 (error "Malformed `loop' macro"))
733 ((eq word 'named)
734 (setq loop-name (pop loop-args)))
736 ((eq word 'initially)
737 (if (memq (car loop-args) '(do doing)) (pop loop-args))
738 (or (consp (car loop-args)) (error "Syntax error on `initially' clause"))
739 (while (consp (car loop-args))
740 (push (pop loop-args) loop-initially)))
742 ((eq word 'finally)
743 (if (eq (car loop-args) 'return)
744 (setq loop-result-explicit (or (cl-pop2 loop-args) '(quote nil)))
745 (if (memq (car loop-args) '(do doing)) (pop loop-args))
746 (or (consp (car loop-args)) (error "Syntax error on `finally' clause"))
747 (if (and (eq (caar loop-args) 'return) (null loop-name))
748 (setq loop-result-explicit (or (nth 1 (pop loop-args)) '(quote nil)))
749 (while (consp (car loop-args))
750 (push (pop loop-args) loop-finally)))))
752 ((memq word '(for as))
753 (let ((loop-for-bindings nil) (loop-for-sets nil) (loop-for-steps nil)
754 (ands nil))
755 (while
756 ;; Use `gensym' rather than `make-symbol'. It's important that
757 ;; (not (eq (symbol-name var1) (symbol-name var2))) because
758 ;; these vars get added to the cl-macro-environment.
759 (let ((var (or (pop loop-args) (gensym "--cl-var--"))))
760 (setq word (pop loop-args))
761 (if (eq word 'being) (setq word (pop loop-args)))
762 (if (memq word '(the each)) (setq word (pop loop-args)))
763 (if (memq word '(buffer buffers))
764 (setq word 'in loop-args (cons '(buffer-list) loop-args)))
765 (cond
767 ((memq word '(from downfrom upfrom to downto upto
768 above below by))
769 (push word loop-args)
770 (if (memq (car loop-args) '(downto above))
771 (error "Must specify `from' value for downward loop"))
772 (let* ((down (or (eq (car loop-args) 'downfrom)
773 (memq (caddr loop-args) '(downto above))))
774 (excl (or (memq (car loop-args) '(above below))
775 (memq (caddr loop-args) '(above below))))
776 (start (and (memq (car loop-args) '(from upfrom downfrom))
777 (cl-pop2 loop-args)))
778 (end (and (memq (car loop-args)
779 '(to upto downto above below))
780 (cl-pop2 loop-args)))
781 (step (and (eq (car loop-args) 'by) (cl-pop2 loop-args)))
782 (end-var (and (not (cl-const-expr-p end))
783 (make-symbol "--cl-var--")))
784 (step-var (and (not (cl-const-expr-p step))
785 (make-symbol "--cl-var--"))))
786 (and step (numberp step) (<= step 0)
787 (error "Loop `by' value is not positive: %s" step))
788 (push (list var (or start 0)) loop-for-bindings)
789 (if end-var (push (list end-var end) loop-for-bindings))
790 (if step-var (push (list step-var step)
791 loop-for-bindings))
792 (if end
793 (push (list
794 (if down (if excl '> '>=) (if excl '< '<=))
795 var (or end-var end)) loop-body))
796 (push (list var (list (if down '- '+) var
797 (or step-var step 1)))
798 loop-for-steps)))
800 ((memq word '(in in-ref on))
801 (let* ((on (eq word 'on))
802 (temp (if (and on (symbolp var))
803 var (make-symbol "--cl-var--"))))
804 (push (list temp (pop loop-args)) loop-for-bindings)
805 (push (list 'consp temp) loop-body)
806 (if (eq word 'in-ref)
807 (push (list var (list 'car temp)) loop-symbol-macs)
808 (or (eq temp var)
809 (progn
810 (push (list var nil) loop-for-bindings)
811 (push (list var (if on temp (list 'car temp)))
812 loop-for-sets))))
813 (push (list temp
814 (if (eq (car loop-args) 'by)
815 (let ((step (cl-pop2 loop-args)))
816 (if (and (memq (car-safe step)
817 '(quote function
818 function*))
819 (symbolp (nth 1 step)))
820 (list (nth 1 step) temp)
821 (list 'funcall step temp)))
822 (list 'cdr temp)))
823 loop-for-steps)))
825 ((eq word '=)
826 (let* ((start (pop loop-args))
827 (then (if (eq (car loop-args) 'then) (cl-pop2 loop-args) start)))
828 (push (list var nil) loop-for-bindings)
829 (if (or ands (eq (car loop-args) 'and))
830 (progn
831 (push `(,var
832 (if ,(or loop-first-flag
833 (setq loop-first-flag
834 (make-symbol "--cl-var--")))
835 ,start ,var))
836 loop-for-sets)
837 (push (list var then) loop-for-steps))
838 (push (list var
839 (if (eq start then) start
840 `(if ,(or loop-first-flag
841 (setq loop-first-flag
842 (make-symbol "--cl-var--")))
843 ,start ,then)))
844 loop-for-sets))))
846 ((memq word '(across across-ref))
847 (let ((temp-vec (make-symbol "--cl-vec--"))
848 (temp-idx (make-symbol "--cl-idx--")))
849 (push (list temp-vec (pop loop-args)) loop-for-bindings)
850 (push (list temp-idx -1) loop-for-bindings)
851 (push (list '< (list 'setq temp-idx (list '1+ temp-idx))
852 (list 'length temp-vec)) loop-body)
853 (if (eq word 'across-ref)
854 (push (list var (list 'aref temp-vec temp-idx))
855 loop-symbol-macs)
856 (push (list var nil) loop-for-bindings)
857 (push (list var (list 'aref temp-vec temp-idx))
858 loop-for-sets))))
860 ((memq word '(element elements))
861 (let ((ref (or (memq (car loop-args) '(in-ref of-ref))
862 (and (not (memq (car loop-args) '(in of)))
863 (error "Expected `of'"))))
864 (seq (cl-pop2 loop-args))
865 (temp-seq (make-symbol "--cl-seq--"))
866 (temp-idx (if (eq (car loop-args) 'using)
867 (if (and (= (length (cadr loop-args)) 2)
868 (eq (caadr loop-args) 'index))
869 (cadr (cl-pop2 loop-args))
870 (error "Bad `using' clause"))
871 (make-symbol "--cl-idx--"))))
872 (push (list temp-seq seq) loop-for-bindings)
873 (push (list temp-idx 0) loop-for-bindings)
874 (if ref
875 (let ((temp-len (make-symbol "--cl-len--")))
876 (push (list temp-len (list 'length temp-seq))
877 loop-for-bindings)
878 (push (list var (list 'elt temp-seq temp-idx))
879 loop-symbol-macs)
880 (push (list '< temp-idx temp-len) loop-body))
881 (push (list var nil) loop-for-bindings)
882 (push (list 'and temp-seq
883 (list 'or (list 'consp temp-seq)
884 (list '< temp-idx
885 (list 'length temp-seq))))
886 loop-body)
887 (push (list var (list 'if (list 'consp temp-seq)
888 (list 'pop temp-seq)
889 (list 'aref temp-seq temp-idx)))
890 loop-for-sets))
891 (push (list temp-idx (list '1+ temp-idx))
892 loop-for-steps)))
894 ((memq word hash-types)
895 (or (memq (car loop-args) '(in of)) (error "Expected `of'"))
896 (let* ((table (cl-pop2 loop-args))
897 (other (if (eq (car loop-args) 'using)
898 (if (and (= (length (cadr loop-args)) 2)
899 (memq (caadr loop-args) hash-types)
900 (not (eq (caadr loop-args) word)))
901 (cadr (cl-pop2 loop-args))
902 (error "Bad `using' clause"))
903 (make-symbol "--cl-var--"))))
904 (if (memq word '(hash-value hash-values))
905 (setq var (prog1 other (setq other var))))
906 (setq loop-map-form
907 `(maphash (lambda (,var ,other) . --cl-map) ,table))))
909 ((memq word '(symbol present-symbol external-symbol
910 symbols present-symbols external-symbols))
911 (let ((ob (and (memq (car loop-args) '(in of)) (cl-pop2 loop-args))))
912 (setq loop-map-form
913 `(mapatoms (lambda (,var) . --cl-map) ,ob))))
915 ((memq word '(overlay overlays extent extents))
916 (let ((buf nil) (from nil) (to nil))
917 (while (memq (car loop-args) '(in of from to))
918 (cond ((eq (car loop-args) 'from) (setq from (cl-pop2 loop-args)))
919 ((eq (car loop-args) 'to) (setq to (cl-pop2 loop-args)))
920 (t (setq buf (cl-pop2 loop-args)))))
921 (setq loop-map-form
922 `(cl-map-extents
923 (lambda (,var ,(make-symbol "--cl-var--"))
924 (progn . --cl-map) nil)
925 ,buf ,from ,to))))
927 ((memq word '(interval intervals))
928 (let ((buf nil) (prop nil) (from nil) (to nil)
929 (var1 (make-symbol "--cl-var1--"))
930 (var2 (make-symbol "--cl-var2--")))
931 (while (memq (car loop-args) '(in of property from to))
932 (cond ((eq (car loop-args) 'from) (setq from (cl-pop2 loop-args)))
933 ((eq (car loop-args) 'to) (setq to (cl-pop2 loop-args)))
934 ((eq (car loop-args) 'property)
935 (setq prop (cl-pop2 loop-args)))
936 (t (setq buf (cl-pop2 loop-args)))))
937 (if (and (consp var) (symbolp (car var)) (symbolp (cdr var)))
938 (setq var1 (car var) var2 (cdr var))
939 (push (list var (list 'cons var1 var2)) loop-for-sets))
940 (setq loop-map-form
941 `(cl-map-intervals
942 (lambda (,var1 ,var2) . --cl-map)
943 ,buf ,prop ,from ,to))))
945 ((memq word key-types)
946 (or (memq (car loop-args) '(in of)) (error "Expected `of'"))
947 (let ((map (cl-pop2 loop-args))
948 (other (if (eq (car loop-args) 'using)
949 (if (and (= (length (cadr loop-args)) 2)
950 (memq (caadr loop-args) key-types)
951 (not (eq (caadr loop-args) word)))
952 (cadr (cl-pop2 loop-args))
953 (error "Bad `using' clause"))
954 (make-symbol "--cl-var--"))))
955 (if (memq word '(key-binding key-bindings))
956 (setq var (prog1 other (setq other var))))
957 (setq loop-map-form
958 `(,(if (memq word '(key-seq key-seqs))
959 'cl-map-keymap-recursively 'map-keymap)
960 (lambda (,var ,other) . --cl-map) ,map))))
962 ((memq word '(frame frames screen screens))
963 (let ((temp (make-symbol "--cl-var--")))
964 (push (list var '(selected-frame))
965 loop-for-bindings)
966 (push (list temp nil) loop-for-bindings)
967 (push (list 'prog1 (list 'not (list 'eq var temp))
968 (list 'or temp (list 'setq temp var)))
969 loop-body)
970 (push (list var (list 'next-frame var))
971 loop-for-steps)))
973 ((memq word '(window windows))
974 (let ((scr (and (memq (car loop-args) '(in of)) (cl-pop2 loop-args)))
975 (temp (make-symbol "--cl-var--"))
976 (minip (make-symbol "--cl-minip--")))
977 (push (list var (if scr
978 (list 'frame-selected-window scr)
979 '(selected-window)))
980 loop-for-bindings)
981 ;; If we started in the minibuffer, we need to
982 ;; ensure that next-window will bring us back there
983 ;; at some point. (Bug#7492).
984 ;; (Consider using walk-windows instead of loop if
985 ;; you care about such things.)
986 (push (list minip `(minibufferp (window-buffer ,var)))
987 loop-for-bindings)
988 (push (list temp nil) loop-for-bindings)
989 (push (list 'prog1 (list 'not (list 'eq var temp))
990 (list 'or temp (list 'setq temp var)))
991 loop-body)
992 (push (list var (list 'next-window var minip))
993 loop-for-steps)))
996 (let ((handler (and (symbolp word)
997 (get word 'cl-loop-for-handler))))
998 (if handler
999 (funcall handler var)
1000 (error "Expected a `for' preposition, found %s" word)))))
1001 (eq (car loop-args) 'and))
1002 (setq ands t)
1003 (pop loop-args))
1004 (if (and ands loop-for-bindings)
1005 (push (nreverse loop-for-bindings) loop-bindings)
1006 (setq loop-bindings (nconc (mapcar 'list loop-for-bindings)
1007 loop-bindings)))
1008 (if loop-for-sets
1009 (push (list 'progn
1010 (cl-loop-let (nreverse loop-for-sets) 'setq ands)
1011 t) loop-body))
1012 (if loop-for-steps
1013 (push (cons (if ands 'psetq 'setq)
1014 (apply 'append (nreverse loop-for-steps)))
1015 loop-steps))))
1017 ((eq word 'repeat)
1018 (let ((temp (make-symbol "--cl-var--")))
1019 (push (list (list temp (pop loop-args))) loop-bindings)
1020 (push (list '>= (list 'setq temp (list '1- temp)) 0) loop-body)))
1022 ((memq word '(collect collecting))
1023 (let ((what (pop loop-args))
1024 (var (cl-loop-handle-accum nil 'nreverse)))
1025 (if (eq var loop-accum-var)
1026 (push (list 'progn (list 'push what var) t) loop-body)
1027 (push (list 'progn
1028 (list 'setq var (list 'nconc var (list 'list what)))
1029 t) loop-body))))
1031 ((memq word '(nconc nconcing append appending))
1032 (let ((what (pop loop-args))
1033 (var (cl-loop-handle-accum nil 'nreverse)))
1034 (push (list 'progn
1035 (list 'setq var
1036 (if (eq var loop-accum-var)
1037 (list 'nconc
1038 (list (if (memq word '(nconc nconcing))
1039 'nreverse 'reverse)
1040 what)
1041 var)
1042 (list (if (memq word '(nconc nconcing))
1043 'nconc 'append)
1044 var what))) t) loop-body)))
1046 ((memq word '(concat concating))
1047 (let ((what (pop loop-args))
1048 (var (cl-loop-handle-accum "")))
1049 (push (list 'progn (list 'callf 'concat var what) t) loop-body)))
1051 ((memq word '(vconcat vconcating))
1052 (let ((what (pop loop-args))
1053 (var (cl-loop-handle-accum [])))
1054 (push (list 'progn (list 'callf 'vconcat var what) t) loop-body)))
1056 ((memq word '(sum summing))
1057 (let ((what (pop loop-args))
1058 (var (cl-loop-handle-accum 0)))
1059 (push (list 'progn (list 'incf var what) t) loop-body)))
1061 ((memq word '(count counting))
1062 (let ((what (pop loop-args))
1063 (var (cl-loop-handle-accum 0)))
1064 (push (list 'progn (list 'if what (list 'incf var)) t) loop-body)))
1066 ((memq word '(minimize minimizing maximize maximizing))
1067 (let* ((what (pop loop-args))
1068 (temp (if (cl-simple-expr-p what) what (make-symbol "--cl-var--")))
1069 (var (cl-loop-handle-accum nil))
1070 (func (intern (substring (symbol-name word) 0 3)))
1071 (set (list 'setq var (list 'if var (list func var temp) temp))))
1072 (push (list 'progn (if (eq temp what) set
1073 (list 'let (list (list temp what)) set))
1074 t) loop-body)))
1076 ((eq word 'with)
1077 (let ((bindings nil))
1078 (while (progn (push (list (pop loop-args)
1079 (and (eq (car loop-args) '=) (cl-pop2 loop-args)))
1080 bindings)
1081 (eq (car loop-args) 'and))
1082 (pop loop-args))
1083 (push (nreverse bindings) loop-bindings)))
1085 ((eq word 'while)
1086 (push (pop loop-args) loop-body))
1088 ((eq word 'until)
1089 (push (list 'not (pop loop-args)) loop-body))
1091 ((eq word 'always)
1092 (or loop-finish-flag (setq loop-finish-flag (make-symbol "--cl-flag--")))
1093 (push (list 'setq loop-finish-flag (pop loop-args)) loop-body)
1094 (setq loop-result t))
1096 ((eq word 'never)
1097 (or loop-finish-flag (setq loop-finish-flag (make-symbol "--cl-flag--")))
1098 (push (list 'setq loop-finish-flag (list 'not (pop loop-args)))
1099 loop-body)
1100 (setq loop-result t))
1102 ((eq word 'thereis)
1103 (or loop-finish-flag (setq loop-finish-flag (make-symbol "--cl-flag--")))
1104 (or loop-result-var (setq loop-result-var (make-symbol "--cl-var--")))
1105 (push (list 'setq loop-finish-flag
1106 (list 'not (list 'setq loop-result-var (pop loop-args))))
1107 loop-body))
1109 ((memq word '(if when unless))
1110 (let* ((cond (pop loop-args))
1111 (then (let ((loop-body nil))
1112 (cl-parse-loop-clause)
1113 (cl-loop-build-ands (nreverse loop-body))))
1114 (else (let ((loop-body nil))
1115 (if (eq (car loop-args) 'else)
1116 (progn (pop loop-args) (cl-parse-loop-clause)))
1117 (cl-loop-build-ands (nreverse loop-body))))
1118 (simple (and (eq (car then) t) (eq (car else) t))))
1119 (if (eq (car loop-args) 'end) (pop loop-args))
1120 (if (eq word 'unless) (setq then (prog1 else (setq else then))))
1121 (let ((form (cons (if simple (cons 'progn (nth 1 then)) (nth 2 then))
1122 (if simple (nth 1 else) (list (nth 2 else))))))
1123 (if (cl-expr-contains form 'it)
1124 (let ((temp (make-symbol "--cl-var--")))
1125 (push (list temp) loop-bindings)
1126 (setq form (list* 'if (list 'setq temp cond)
1127 (subst temp 'it form))))
1128 (setq form (list* 'if cond form)))
1129 (push (if simple (list 'progn form t) form) loop-body))))
1131 ((memq word '(do doing))
1132 (let ((body nil))
1133 (or (consp (car loop-args)) (error "Syntax error on `do' clause"))
1134 (while (consp (car loop-args)) (push (pop loop-args) body))
1135 (push (cons 'progn (nreverse (cons t body))) loop-body)))
1137 ((eq word 'return)
1138 (or loop-finish-flag (setq loop-finish-flag (make-symbol "--cl-var--")))
1139 (or loop-result-var (setq loop-result-var (make-symbol "--cl-var--")))
1140 (push (list 'setq loop-result-var (pop loop-args)
1141 loop-finish-flag nil) loop-body))
1144 (let ((handler (and (symbolp word) (get word 'cl-loop-handler))))
1145 (or handler (error "Expected a loop keyword, found %s" word))
1146 (funcall handler))))
1147 (if (eq (car loop-args) 'and)
1148 (progn (pop loop-args) (cl-parse-loop-clause)))))
1150 (defun cl-loop-let (specs body par) ; uses loop-*
1151 (let ((p specs) (temps nil) (new nil))
1152 (while (and p (or (symbolp (car-safe (car p))) (null (cadar p))))
1153 (setq p (cdr p)))
1154 (and par p
1155 (progn
1156 (setq par nil p specs)
1157 (while p
1158 (or (cl-const-expr-p (cadar p))
1159 (let ((temp (make-symbol "--cl-var--")))
1160 (push (list temp (cadar p)) temps)
1161 (setcar (cdar p) temp)))
1162 (setq p (cdr p)))))
1163 (while specs
1164 (if (and (consp (car specs)) (listp (caar specs)))
1165 (let* ((spec (caar specs)) (nspecs nil)
1166 (expr (cadr (pop specs)))
1167 (temp (cdr (or (assq spec loop-destr-temps)
1168 (car (push (cons spec (or (last spec 0)
1169 (make-symbol "--cl-var--")))
1170 loop-destr-temps))))))
1171 (push (list temp expr) new)
1172 (while (consp spec)
1173 (push (list (pop spec)
1174 (and expr (list (if spec 'pop 'car) temp)))
1175 nspecs))
1176 (setq specs (nconc (nreverse nspecs) specs)))
1177 (push (pop specs) new)))
1178 (if (eq body 'setq)
1179 (let ((set (cons (if par 'psetq 'setq) (apply 'nconc (nreverse new)))))
1180 (if temps (list 'let* (nreverse temps) set) set))
1181 (list* (if par 'let 'let*)
1182 (nconc (nreverse temps) (nreverse new)) body))))
1184 (defun cl-loop-handle-accum (def &optional func) ; uses loop-*
1185 (if (eq (car loop-args) 'into)
1186 (let ((var (cl-pop2 loop-args)))
1187 (or (memq var loop-accum-vars)
1188 (progn (push (list (list var def)) loop-bindings)
1189 (push var loop-accum-vars)))
1190 var)
1191 (or loop-accum-var
1192 (progn
1193 (push (list (list (setq loop-accum-var (make-symbol "--cl-var--")) def))
1194 loop-bindings)
1195 (setq loop-result (if func (list func loop-accum-var)
1196 loop-accum-var))
1197 loop-accum-var))))
1199 (defun cl-loop-build-ands (clauses)
1200 (let ((ands nil)
1201 (body nil))
1202 (while clauses
1203 (if (and (eq (car-safe (car clauses)) 'progn)
1204 (eq (car (last (car clauses))) t))
1205 (if (cdr clauses)
1206 (setq clauses (cons (nconc (butlast (car clauses))
1207 (if (eq (car-safe (cadr clauses))
1208 'progn)
1209 (cdadr clauses)
1210 (list (cadr clauses))))
1211 (cddr clauses)))
1212 (setq body (cdr (butlast (pop clauses)))))
1213 (push (pop clauses) ands)))
1214 (setq ands (or (nreverse ands) (list t)))
1215 (list (if (cdr ands) (cons 'and ands) (car ands))
1216 body
1217 (let ((full (if body
1218 (append ands (list (cons 'progn (append body '(t)))))
1219 ands)))
1220 (if (cdr full) (cons 'and full) (car full))))))
1223 ;;; Other iteration control structures.
1225 ;;;###autoload
1226 (defmacro do (steps endtest &rest body)
1227 "The Common Lisp `do' loop.
1229 \(fn ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)"
1230 (cl-expand-do-loop steps endtest body nil))
1232 ;;;###autoload
1233 (defmacro do* (steps endtest &rest body)
1234 "The Common Lisp `do*' loop.
1236 \(fn ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)"
1237 (cl-expand-do-loop steps endtest body t))
1239 (defun cl-expand-do-loop (steps endtest body star)
1240 (list 'block nil
1241 (list* (if star 'let* 'let)
1242 (mapcar (function (lambda (c)
1243 (if (consp c) (list (car c) (nth 1 c)) c)))
1244 steps)
1245 (list* 'while (list 'not (car endtest))
1246 (append body
1247 (let ((sets (mapcar
1248 (function
1249 (lambda (c)
1250 (and (consp c) (cdr (cdr c))
1251 (list (car c) (nth 2 c)))))
1252 steps)))
1253 (setq sets (delq nil sets))
1254 (and sets
1255 (list (cons (if (or star (not (cdr sets)))
1256 'setq 'psetq)
1257 (apply 'append sets)))))))
1258 (or (cdr endtest) '(nil)))))
1260 ;;;###autoload
1261 (defmacro dolist (spec &rest body)
1262 "Loop over a list.
1263 Evaluate BODY with VAR bound to each `car' from LIST, in turn.
1264 Then evaluate RESULT to get return value, default nil.
1265 An implicit nil block is established around the loop.
1267 \(fn (VAR LIST [RESULT]) BODY...)"
1268 (let ((temp (make-symbol "--cl-dolist-temp--")))
1269 ;; FIXME: Copy&pasted from subr.el.
1270 `(block nil
1271 ;; This is not a reliable test, but it does not matter because both
1272 ;; semantics are acceptable, tho one is slightly faster with dynamic
1273 ;; scoping and the other is slightly faster (and has cleaner semantics)
1274 ;; with lexical scoping.
1275 ,(if lexical-binding
1276 `(let ((,temp ,(nth 1 spec)))
1277 (while ,temp
1278 (let ((,(car spec) (car ,temp)))
1279 ,@body
1280 (setq ,temp (cdr ,temp))))
1281 ,@(if (cdr (cdr spec))
1282 ;; FIXME: This let often leads to "unused var" warnings.
1283 `((let ((,(car spec) nil)) ,@(cdr (cdr spec))))))
1284 `(let ((,temp ,(nth 1 spec))
1285 ,(car spec))
1286 (while ,temp
1287 (setq ,(car spec) (car ,temp))
1288 ,@body
1289 (setq ,temp (cdr ,temp)))
1290 ,@(if (cdr (cdr spec))
1291 `((setq ,(car spec) nil) ,@(cddr spec))))))))
1293 ;;;###autoload
1294 (defmacro dotimes (spec &rest body)
1295 "Loop a certain number of times.
1296 Evaluate BODY with VAR bound to successive integers from 0, inclusive,
1297 to COUNT, exclusive. Then evaluate RESULT to get return value, default
1298 nil.
1300 \(fn (VAR COUNT [RESULT]) BODY...)"
1301 (let ((temp (make-symbol "--cl-dotimes-temp--"))
1302 (end (nth 1 spec)))
1303 ;; FIXME: Copy&pasted from subr.el.
1304 `(block nil
1305 ;; This is not a reliable test, but it does not matter because both
1306 ;; semantics are acceptable, tho one is slightly faster with dynamic
1307 ;; scoping and the other has cleaner semantics.
1308 ,(if lexical-binding
1309 (let ((counter '--dotimes-counter--))
1310 `(let ((,temp ,end)
1311 (,counter 0))
1312 (while (< ,counter ,temp)
1313 (let ((,(car spec) ,counter))
1314 ,@body)
1315 (setq ,counter (1+ ,counter)))
1316 ,@(if (cddr spec)
1317 ;; FIXME: This let often leads to "unused var" warnings.
1318 `((let ((,(car spec) ,counter)) ,@(cddr spec))))))
1319 `(let ((,temp ,end)
1320 (,(car spec) 0))
1321 (while (< ,(car spec) ,temp)
1322 ,@body
1323 (incf ,(car spec)))
1324 ,@(cdr (cdr spec)))))))
1326 ;;;###autoload
1327 (defmacro do-symbols (spec &rest body)
1328 "Loop over all symbols.
1329 Evaluate BODY with VAR bound to each interned symbol, or to each symbol
1330 from OBARRAY.
1332 \(fn (VAR [OBARRAY [RESULT]]) BODY...)"
1333 ;; Apparently this doesn't have an implicit block.
1334 (list 'block nil
1335 (list 'let (list (car spec))
1336 (list* 'mapatoms
1337 (list 'function (list* 'lambda (list (car spec)) body))
1338 (and (cadr spec) (list (cadr spec))))
1339 (caddr spec))))
1341 ;;;###autoload
1342 (defmacro do-all-symbols (spec &rest body)
1343 (list* 'do-symbols (list (car spec) nil (cadr spec)) body))
1346 ;;; Assignments.
1348 ;;;###autoload
1349 (defmacro psetq (&rest args)
1350 "Set SYMs to the values VALs in parallel.
1351 This is like `setq', except that all VAL forms are evaluated (in order)
1352 before assigning any symbols SYM to the corresponding values.
1354 \(fn SYM VAL SYM VAL ...)"
1355 (cons 'psetf args))
1358 ;;; Binding control structures.
1360 ;;;###autoload
1361 (defmacro progv (symbols values &rest body)
1362 "Bind SYMBOLS to VALUES dynamically in BODY.
1363 The forms SYMBOLS and VALUES are evaluated, and must evaluate to lists.
1364 Each symbol in the first list is bound to the corresponding value in the
1365 second list (or made unbound if VALUES is shorter than SYMBOLS); then the
1366 BODY forms are executed and their result is returned. This is much like
1367 a `let' form, except that the list of symbols can be computed at run-time."
1368 (list 'let '((cl-progv-save nil))
1369 (list 'unwind-protect
1370 (list* 'progn (list 'cl-progv-before symbols values) body)
1371 '(cl-progv-after))))
1373 ;;; This should really have some way to shadow 'byte-compile properties, etc.
1374 ;;;###autoload
1375 (defmacro flet (bindings &rest body)
1376 "Make temporary function definitions.
1377 This is an analogue of `let' that operates on the function cell of FUNC
1378 rather than its value cell. The FORMs are evaluated with the specified
1379 function definitions in place, then the definitions are undone (the FUNCs
1380 go back to their previous definitions, or lack thereof).
1382 \(fn ((FUNC ARGLIST BODY...) ...) FORM...)"
1383 (list* 'letf*
1384 (mapcar
1385 (function
1386 (lambda (x)
1387 (if (or (and (fboundp (car x))
1388 (eq (car-safe (symbol-function (car x))) 'macro))
1389 (cdr (assq (car x) cl-macro-environment)))
1390 (error "Use `labels', not `flet', to rebind macro names"))
1391 (let ((func (list 'function*
1392 (list 'lambda (cadr x)
1393 (list* 'block (car x) (cddr x))))))
1394 (when (cl-compiling-file)
1395 ;; Bug#411. It would be nice to fix this.
1396 (and (get (car x) 'byte-compile)
1397 (error "Byte-compiling a redefinition of `%s' \
1398 will not work - use `labels' instead" (symbol-name (car x))))
1399 ;; FIXME This affects the rest of the file, when it
1400 ;; should be restricted to the flet body.
1401 (and (boundp 'byte-compile-function-environment)
1402 (push (cons (car x) (eval func))
1403 byte-compile-function-environment)))
1404 (list (list 'symbol-function (list 'quote (car x))) func))))
1405 bindings)
1406 body))
1408 ;;;###autoload
1409 (defmacro labels (bindings &rest body)
1410 "Make temporary function bindings.
1411 This is like `flet', except the bindings are lexical instead of dynamic.
1412 Unlike `flet', this macro is fully compliant with the Common Lisp standard.
1414 \(fn ((FUNC ARGLIST BODY...) ...) FORM...)"
1415 (let ((vars nil) (sets nil) (cl-macro-environment cl-macro-environment))
1416 (while bindings
1417 ;; Use `gensym' rather than `make-symbol'. It's important that
1418 ;; (not (eq (symbol-name var1) (symbol-name var2))) because these
1419 ;; vars get added to the cl-macro-environment.
1420 (let ((var (gensym "--cl-var--")))
1421 (push var vars)
1422 (push (list 'function* (cons 'lambda (cdar bindings))) sets)
1423 (push var sets)
1424 (push (list (car (pop bindings)) 'lambda '(&rest cl-labels-args)
1425 (list 'list* '(quote funcall) (list 'quote var)
1426 'cl-labels-args))
1427 cl-macro-environment)))
1428 (cl-macroexpand-all (list* 'lexical-let vars (cons (cons 'setq sets) body))
1429 cl-macro-environment)))
1431 ;; The following ought to have a better definition for use with newer
1432 ;; byte compilers.
1433 ;;;###autoload
1434 (defmacro macrolet (bindings &rest body)
1435 "Make temporary macro definitions.
1436 This is like `flet', but for macros instead of functions.
1438 \(fn ((NAME ARGLIST BODY...) ...) FORM...)"
1439 (if (cdr bindings)
1440 (list 'macrolet
1441 (list (car bindings)) (list* 'macrolet (cdr bindings) body))
1442 (if (null bindings) (cons 'progn body)
1443 (let* ((name (caar bindings))
1444 (res (cl-transform-lambda (cdar bindings) name)))
1445 (eval (car res))
1446 (cl-macroexpand-all (cons 'progn body)
1447 (cons (list* name 'lambda (cdr res))
1448 cl-macro-environment))))))
1450 ;;;###autoload
1451 (defmacro symbol-macrolet (bindings &rest body)
1452 "Make symbol macro definitions.
1453 Within the body FORMs, references to the variable NAME will be replaced
1454 by EXPANSION, and (setq NAME ...) will act like (setf EXPANSION ...).
1456 \(fn ((NAME EXPANSION) ...) FORM...)"
1457 (if (cdr bindings)
1458 (list 'symbol-macrolet
1459 (list (car bindings)) (list* 'symbol-macrolet (cdr bindings) body))
1460 (if (null bindings) (cons 'progn body)
1461 (cl-macroexpand-all (cons 'progn body)
1462 (cons (list (symbol-name (caar bindings))
1463 (cadar bindings))
1464 cl-macro-environment)))))
1466 (defvar cl-closure-vars nil)
1467 ;;;###autoload
1468 (defmacro lexical-let (bindings &rest body)
1469 "Like `let', but lexically scoped.
1470 The main visible difference is that lambdas inside BODY will create
1471 lexical closures as in Common Lisp.
1472 \n(fn BINDINGS BODY)"
1473 (let* ((cl-closure-vars cl-closure-vars)
1474 (vars (mapcar (function
1475 (lambda (x)
1476 (or (consp x) (setq x (list x)))
1477 (push (make-symbol (format "--cl-%s--" (car x)))
1478 cl-closure-vars)
1479 (set (car cl-closure-vars) [bad-lexical-ref])
1480 (list (car x) (cadr x) (car cl-closure-vars))))
1481 bindings))
1482 (ebody
1483 (cl-macroexpand-all
1484 (cons 'progn body)
1485 (nconc (mapcar (function (lambda (x)
1486 (list (symbol-name (car x))
1487 (list 'symbol-value (caddr x))
1488 t))) vars)
1489 (list '(defun . cl-defun-expander))
1490 cl-macro-environment))))
1491 (if (not (get (car (last cl-closure-vars)) 'used))
1492 (list 'let (mapcar (function (lambda (x)
1493 (list (caddr x) (cadr x)))) vars)
1494 (sublis (mapcar (function (lambda (x)
1495 (cons (caddr x)
1496 (list 'quote (caddr x)))))
1497 vars)
1498 ebody))
1499 (list 'let (mapcar (function (lambda (x)
1500 (list (caddr x)
1501 (list 'make-symbol
1502 (format "--%s--" (car x))))))
1503 vars)
1504 (apply 'append '(setf)
1505 (mapcar (function
1506 (lambda (x)
1507 (list (list 'symbol-value (caddr x)) (cadr x))))
1508 vars))
1509 ebody))))
1511 ;;;###autoload
1512 (defmacro lexical-let* (bindings &rest body)
1513 "Like `let*', but lexically scoped.
1514 The main visible difference is that lambdas inside BODY, and in
1515 successive bindings within BINDINGS, will create lexical closures
1516 as in Common Lisp. This is similar to the behavior of `let*' in
1517 Common Lisp.
1518 \n(fn BINDINGS BODY)"
1519 (if (null bindings) (cons 'progn body)
1520 (setq bindings (reverse bindings))
1521 (while bindings
1522 (setq body (list (list* 'lexical-let (list (pop bindings)) body))))
1523 (car body)))
1525 (defun cl-defun-expander (func &rest rest)
1526 (list 'progn
1527 (list 'defalias (list 'quote func)
1528 (list 'function (cons 'lambda rest)))
1529 (list 'quote func)))
1532 ;;; Multiple values.
1534 ;;;###autoload
1535 (defmacro multiple-value-bind (vars form &rest body)
1536 "Collect multiple return values.
1537 FORM must return a list; the BODY is then executed with the first N elements
1538 of this list bound (`let'-style) to each of the symbols SYM in turn. This
1539 is analogous to the Common Lisp `multiple-value-bind' macro, using lists to
1540 simulate true multiple return values. For compatibility, (values A B C) is
1541 a synonym for (list A B C).
1543 \(fn (SYM...) FORM BODY)"
1544 (let ((temp (make-symbol "--cl-var--")) (n -1))
1545 (list* 'let* (cons (list temp form)
1546 (mapcar (function
1547 (lambda (v)
1548 (list v (list 'nth (setq n (1+ n)) temp))))
1549 vars))
1550 body)))
1552 ;;;###autoload
1553 (defmacro multiple-value-setq (vars form)
1554 "Collect multiple return values.
1555 FORM must return a list; the first N elements of this list are stored in
1556 each of the symbols SYM in turn. This is analogous to the Common Lisp
1557 `multiple-value-setq' macro, using lists to simulate true multiple return
1558 values. For compatibility, (values A B C) is a synonym for (list A B C).
1560 \(fn (SYM...) FORM)"
1561 (cond ((null vars) (list 'progn form nil))
1562 ((null (cdr vars)) (list 'setq (car vars) (list 'car form)))
1564 (let* ((temp (make-symbol "--cl-var--")) (n 0))
1565 (list 'let (list (list temp form))
1566 (list 'prog1 (list 'setq (pop vars) (list 'car temp))
1567 (cons 'setq (apply 'nconc
1568 (mapcar (function
1569 (lambda (v)
1570 (list v (list
1571 'nth
1572 (setq n (1+ n))
1573 temp))))
1574 vars)))))))))
1577 ;;; Declarations.
1579 ;;;###autoload
1580 (defmacro locally (&rest body) (cons 'progn body))
1581 ;;;###autoload
1582 (defmacro the (type form) form)
1584 (defvar cl-proclaim-history t) ; for future compilers
1585 (defvar cl-declare-stack t) ; for future compilers
1587 (defun cl-do-proclaim (spec hist)
1588 (and hist (listp cl-proclaim-history) (push spec cl-proclaim-history))
1589 (cond ((eq (car-safe spec) 'special)
1590 (if (boundp 'byte-compile-bound-variables)
1591 (setq byte-compile-bound-variables
1592 (append (cdr spec) byte-compile-bound-variables))))
1594 ((eq (car-safe spec) 'inline)
1595 (while (setq spec (cdr spec))
1596 (or (memq (get (car spec) 'byte-optimizer)
1597 '(nil byte-compile-inline-expand))
1598 (error "%s already has a byte-optimizer, can't make it inline"
1599 (car spec)))
1600 (put (car spec) 'byte-optimizer 'byte-compile-inline-expand)))
1602 ((eq (car-safe spec) 'notinline)
1603 (while (setq spec (cdr spec))
1604 (if (eq (get (car spec) 'byte-optimizer)
1605 'byte-compile-inline-expand)
1606 (put (car spec) 'byte-optimizer nil))))
1608 ((eq (car-safe spec) 'optimize)
1609 (let ((speed (assq (nth 1 (assq 'speed (cdr spec)))
1610 '((0 nil) (1 t) (2 t) (3 t))))
1611 (safety (assq (nth 1 (assq 'safety (cdr spec)))
1612 '((0 t) (1 t) (2 t) (3 nil)))))
1613 (if speed (setq cl-optimize-speed (car speed)
1614 byte-optimize (nth 1 speed)))
1615 (if safety (setq cl-optimize-safety (car safety)
1616 byte-compile-delete-errors (nth 1 safety)))))
1618 ((and (eq (car-safe spec) 'warn) (boundp 'byte-compile-warnings))
1619 (while (setq spec (cdr spec))
1620 (if (consp (car spec))
1621 (if (eq (cadar spec) 0)
1622 (byte-compile-disable-warning (caar spec))
1623 (byte-compile-enable-warning (caar spec)))))))
1624 nil)
1626 ;;; Process any proclamations made before cl-macs was loaded.
1627 (defvar cl-proclaims-deferred)
1628 (let ((p (reverse cl-proclaims-deferred)))
1629 (while p (cl-do-proclaim (pop p) t))
1630 (setq cl-proclaims-deferred nil))
1632 ;;;###autoload
1633 (defmacro declare (&rest specs)
1634 "Declare SPECS about the current function while compiling.
1635 For instance
1637 \(declare (warn 0))
1639 will turn off byte-compile warnings in the function.
1640 See Info node `(cl)Declarations' for details."
1641 (if (cl-compiling-file)
1642 (while specs
1643 (if (listp cl-declare-stack) (push (car specs) cl-declare-stack))
1644 (cl-do-proclaim (pop specs) nil)))
1645 nil)
1649 ;;; Generalized variables.
1651 ;;;###autoload
1652 (defmacro define-setf-method (func args &rest body)
1653 "Define a `setf' method.
1654 This method shows how to handle `setf's to places of the form (NAME ARGS...).
1655 The argument forms ARGS are bound according to ARGLIST, as if NAME were
1656 going to be expanded as a macro, then the BODY forms are executed and must
1657 return a list of five elements: a temporary-variables list, a value-forms
1658 list, a store-variables list (of length one), a store-form, and an access-
1659 form. See `defsetf' for a simpler way to define most setf-methods.
1661 \(fn NAME ARGLIST BODY...)"
1662 (append '(eval-when (compile load eval))
1663 (if (stringp (car body))
1664 (list (list 'put (list 'quote func) '(quote setf-documentation)
1665 (pop body))))
1666 (list (cl-transform-function-property
1667 func 'setf-method (cons args body)))))
1668 (defalias 'define-setf-expander 'define-setf-method)
1670 ;;;###autoload
1671 (defmacro defsetf (func arg1 &rest args)
1672 "Define a `setf' method.
1673 This macro is an easy-to-use substitute for `define-setf-method' that works
1674 well for simple place forms. In the simple `defsetf' form, `setf's of
1675 the form (setf (NAME ARGS...) VAL) are transformed to function or macro
1676 calls of the form (FUNC ARGS... VAL). Example:
1678 (defsetf aref aset)
1680 Alternate form: (defsetf NAME ARGLIST (STORE) BODY...).
1681 Here, the above `setf' call is expanded by binding the argument forms ARGS
1682 according to ARGLIST, binding the value form VAL to STORE, then executing
1683 BODY, which must return a Lisp form that does the necessary `setf' operation.
1684 Actually, ARGLIST and STORE may be bound to temporary variables which are
1685 introduced automatically to preserve proper execution order of the arguments.
1686 Example:
1688 (defsetf nth (n x) (v) (list 'setcar (list 'nthcdr n x) v))
1690 \(fn NAME [FUNC | ARGLIST (STORE) BODY...])"
1691 (if (and (listp arg1) (consp args))
1692 (let* ((largs nil) (largsr nil)
1693 (temps nil) (tempsr nil)
1694 (restarg nil) (rest-temps nil)
1695 (store-var (car (prog1 (car args) (setq args (cdr args)))))
1696 (store-temp (intern (format "--%s--temp--" store-var)))
1697 (lets1 nil) (lets2 nil)
1698 (docstr nil) (p arg1))
1699 (if (stringp (car args))
1700 (setq docstr (prog1 (car args) (setq args (cdr args)))))
1701 (while (and p (not (eq (car p) '&aux)))
1702 (if (eq (car p) '&rest)
1703 (setq p (cdr p) restarg (car p))
1704 (or (memq (car p) '(&optional &key &allow-other-keys))
1705 (setq largs (cons (if (consp (car p)) (car (car p)) (car p))
1706 largs)
1707 temps (cons (intern (format "--%s--temp--" (car largs)))
1708 temps))))
1709 (setq p (cdr p)))
1710 (setq largs (nreverse largs) temps (nreverse temps))
1711 (if restarg
1712 (setq largsr (append largs (list restarg))
1713 rest-temps (intern (format "--%s--temp--" restarg))
1714 tempsr (append temps (list rest-temps)))
1715 (setq largsr largs tempsr temps))
1716 (let ((p1 largs) (p2 temps))
1717 (while p1
1718 (setq lets1 (cons `(,(car p2)
1719 (make-symbol ,(format "--cl-%s--" (car p1))))
1720 lets1)
1721 lets2 (cons (list (car p1) (car p2)) lets2)
1722 p1 (cdr p1) p2 (cdr p2))))
1723 (if restarg (setq lets2 (cons (list restarg rest-temps) lets2)))
1724 `(define-setf-method ,func ,arg1
1725 ,@(and docstr (list docstr))
1726 (let*
1727 ,(nreverse
1728 (cons `(,store-temp
1729 (make-symbol ,(format "--cl-%s--" store-var)))
1730 (if restarg
1731 `((,rest-temps
1732 (mapcar (lambda (_) (make-symbol "--cl-var--"))
1733 ,restarg))
1734 ,@lets1)
1735 lets1)))
1736 (list ; 'values
1737 (,(if restarg 'list* 'list) ,@tempsr)
1738 (,(if restarg 'list* 'list) ,@largsr)
1739 (list ,store-temp)
1740 (let*
1741 ,(nreverse
1742 (cons (list store-var store-temp)
1743 lets2))
1744 ,@args)
1745 (,(if restarg 'list* 'list)
1746 ,@(cons (list 'quote func) tempsr))))))
1747 `(defsetf ,func (&rest args) (store)
1748 ,(let ((call `(cons ',arg1
1749 (append args (list store)))))
1750 (if (car args)
1751 `(list 'progn ,call store)
1752 call)))))
1754 ;;; Some standard place types from Common Lisp.
1755 (defsetf aref aset)
1756 (defsetf car setcar)
1757 (defsetf cdr setcdr)
1758 (defsetf caar (x) (val) (list 'setcar (list 'car x) val))
1759 (defsetf cadr (x) (val) (list 'setcar (list 'cdr x) val))
1760 (defsetf cdar (x) (val) (list 'setcdr (list 'car x) val))
1761 (defsetf cddr (x) (val) (list 'setcdr (list 'cdr x) val))
1762 (defsetf elt (seq n) (store)
1763 (list 'if (list 'listp seq) (list 'setcar (list 'nthcdr n seq) store)
1764 (list 'aset seq n store)))
1765 (defsetf get put)
1766 (defsetf get* (x y &optional d) (store) (list 'put x y store))
1767 (defsetf gethash (x h &optional d) (store) (list 'puthash x store h))
1768 (defsetf nth (n x) (store) (list 'setcar (list 'nthcdr n x) store))
1769 (defsetf subseq (seq start &optional end) (new)
1770 (list 'progn (list 'replace seq new :start1 start :end1 end) new))
1771 (defsetf symbol-function fset)
1772 (defsetf symbol-plist setplist)
1773 (defsetf symbol-value set)
1775 ;;; Various car/cdr aliases. Note that `cadr' is handled specially.
1776 (defsetf first setcar)
1777 (defsetf second (x) (store) (list 'setcar (list 'cdr x) store))
1778 (defsetf third (x) (store) (list 'setcar (list 'cddr x) store))
1779 (defsetf fourth (x) (store) (list 'setcar (list 'cdddr x) store))
1780 (defsetf fifth (x) (store) (list 'setcar (list 'nthcdr 4 x) store))
1781 (defsetf sixth (x) (store) (list 'setcar (list 'nthcdr 5 x) store))
1782 (defsetf seventh (x) (store) (list 'setcar (list 'nthcdr 6 x) store))
1783 (defsetf eighth (x) (store) (list 'setcar (list 'nthcdr 7 x) store))
1784 (defsetf ninth (x) (store) (list 'setcar (list 'nthcdr 8 x) store))
1785 (defsetf tenth (x) (store) (list 'setcar (list 'nthcdr 9 x) store))
1786 (defsetf rest setcdr)
1788 ;;; Some more Emacs-related place types.
1789 (defsetf buffer-file-name set-visited-file-name t)
1790 (defsetf buffer-modified-p (&optional buf) (flag)
1791 (list 'with-current-buffer buf
1792 (list 'set-buffer-modified-p flag)))
1793 (defsetf buffer-name rename-buffer t)
1794 (defsetf buffer-string () (store)
1795 (list 'progn '(erase-buffer) (list 'insert store)))
1796 (defsetf buffer-substring cl-set-buffer-substring)
1797 (defsetf current-buffer set-buffer)
1798 (defsetf current-case-table set-case-table)
1799 (defsetf current-column move-to-column t)
1800 (defsetf current-global-map use-global-map t)
1801 (defsetf current-input-mode () (store)
1802 (list 'progn (list 'apply 'set-input-mode store) store))
1803 (defsetf current-local-map use-local-map t)
1804 (defsetf current-window-configuration set-window-configuration t)
1805 (defsetf default-file-modes set-default-file-modes t)
1806 (defsetf default-value set-default)
1807 (defsetf documentation-property put)
1808 (defsetf face-background (f &optional s) (x) (list 'set-face-background f x s))
1809 (defsetf face-background-pixmap (f &optional s) (x)
1810 (list 'set-face-background-pixmap f x s))
1811 (defsetf face-font (f &optional s) (x) (list 'set-face-font f x s))
1812 (defsetf face-foreground (f &optional s) (x) (list 'set-face-foreground f x s))
1813 (defsetf face-underline-p (f &optional s) (x)
1814 (list 'set-face-underline-p f x s))
1815 (defsetf file-modes set-file-modes t)
1816 (defsetf frame-height set-screen-height t)
1817 (defsetf frame-parameters modify-frame-parameters t)
1818 (defsetf frame-visible-p cl-set-frame-visible-p)
1819 (defsetf frame-width set-screen-width t)
1820 (defsetf frame-parameter set-frame-parameter t)
1821 (defsetf terminal-parameter set-terminal-parameter)
1822 (defsetf getenv setenv t)
1823 (defsetf get-register set-register)
1824 (defsetf global-key-binding global-set-key)
1825 (defsetf keymap-parent set-keymap-parent)
1826 (defsetf local-key-binding local-set-key)
1827 (defsetf mark set-mark t)
1828 (defsetf mark-marker set-mark t)
1829 (defsetf marker-position set-marker t)
1830 (defsetf match-data set-match-data t)
1831 (defsetf mouse-position (scr) (store)
1832 (list 'set-mouse-position scr (list 'car store) (list 'cadr store)
1833 (list 'cddr store)))
1834 (defsetf overlay-get overlay-put)
1835 (defsetf overlay-start (ov) (store)
1836 (list 'progn (list 'move-overlay ov store (list 'overlay-end ov)) store))
1837 (defsetf overlay-end (ov) (store)
1838 (list 'progn (list 'move-overlay ov (list 'overlay-start ov) store) store))
1839 (defsetf point goto-char)
1840 (defsetf point-marker goto-char t)
1841 (defsetf point-max () (store)
1842 (list 'progn (list 'narrow-to-region '(point-min) store) store))
1843 (defsetf point-min () (store)
1844 (list 'progn (list 'narrow-to-region store '(point-max)) store))
1845 (defsetf process-buffer set-process-buffer)
1846 (defsetf process-filter set-process-filter)
1847 (defsetf process-sentinel set-process-sentinel)
1848 (defsetf process-get process-put)
1849 (defsetf read-mouse-position (scr) (store)
1850 (list 'set-mouse-position scr (list 'car store) (list 'cdr store)))
1851 (defsetf screen-height set-screen-height t)
1852 (defsetf screen-width set-screen-width t)
1853 (defsetf selected-window select-window)
1854 (defsetf selected-screen select-screen)
1855 (defsetf selected-frame select-frame)
1856 (defsetf standard-case-table set-standard-case-table)
1857 (defsetf syntax-table set-syntax-table)
1858 (defsetf visited-file-modtime set-visited-file-modtime t)
1859 (defsetf window-buffer set-window-buffer t)
1860 (defsetf window-display-table set-window-display-table t)
1861 (defsetf window-dedicated-p set-window-dedicated-p t)
1862 (defsetf window-height () (store)
1863 (list 'progn (list 'enlarge-window (list '- store '(window-height))) store))
1864 (defsetf window-hscroll set-window-hscroll)
1865 (defsetf window-parameter set-window-parameter)
1866 (defsetf window-point set-window-point)
1867 (defsetf window-start set-window-start)
1868 (defsetf window-width () (store)
1869 (list 'progn (list 'enlarge-window (list '- store '(window-width)) t) store))
1870 (defsetf x-get-secondary-selection x-own-secondary-selection t)
1871 (defsetf x-get-selection x-own-selection t)
1873 ;; This is a hack that allows (setf (eq a 7) B) to mean either
1874 ;; (setq a 7) or (setq a nil) depending on whether B is nil or not.
1875 ;; This is useful when you have control over the PLACE but not over
1876 ;; the VALUE, as is the case in define-minor-mode's :variable.
1877 (define-setf-method eq (place val)
1878 (let ((method (get-setf-method place cl-macro-environment))
1879 (val-temp (make-symbol "--eq-val--"))
1880 (store-temp (make-symbol "--eq-store--")))
1881 (list (append (nth 0 method) (list val-temp))
1882 (append (nth 1 method) (list val))
1883 (list store-temp)
1884 `(let ((,(car (nth 2 method))
1885 (if ,store-temp ,val-temp (not ,val-temp))))
1886 ,(nth 3 method) ,store-temp)
1887 `(eq ,(nth 4 method) ,val-temp))))
1889 ;;; More complex setf-methods.
1890 ;; These should take &environment arguments, but since full arglists aren't
1891 ;; available while compiling cl-macs, we fake it by referring to the global
1892 ;; variable cl-macro-environment directly.
1894 (define-setf-method apply (func arg1 &rest rest)
1895 (or (and (memq (car-safe func) '(quote function function*))
1896 (symbolp (car-safe (cdr-safe func))))
1897 (error "First arg to apply in setf is not (function SYM): %s" func))
1898 (let* ((form (cons (nth 1 func) (cons arg1 rest)))
1899 (method (get-setf-method form cl-macro-environment)))
1900 (list (car method) (nth 1 method) (nth 2 method)
1901 (cl-setf-make-apply (nth 3 method) (cadr func) (car method))
1902 (cl-setf-make-apply (nth 4 method) (cadr func) (car method)))))
1904 (defun cl-setf-make-apply (form func temps)
1905 (if (eq (car form) 'progn)
1906 (list* 'progn (cl-setf-make-apply (cadr form) func temps) (cddr form))
1907 (or (equal (last form) (last temps))
1908 (error "%s is not suitable for use with setf-of-apply" func))
1909 (list* 'apply (list 'quote (car form)) (cdr form))))
1911 (define-setf-method nthcdr (n place)
1912 (let ((method (get-setf-method place cl-macro-environment))
1913 (n-temp (make-symbol "--cl-nthcdr-n--"))
1914 (store-temp (make-symbol "--cl-nthcdr-store--")))
1915 (list (cons n-temp (car method))
1916 (cons n (nth 1 method))
1917 (list store-temp)
1918 (list 'let (list (list (car (nth 2 method))
1919 (list 'cl-set-nthcdr n-temp (nth 4 method)
1920 store-temp)))
1921 (nth 3 method) store-temp)
1922 (list 'nthcdr n-temp (nth 4 method)))))
1924 (define-setf-method getf (place tag &optional def)
1925 (let ((method (get-setf-method place cl-macro-environment))
1926 (tag-temp (make-symbol "--cl-getf-tag--"))
1927 (def-temp (make-symbol "--cl-getf-def--"))
1928 (store-temp (make-symbol "--cl-getf-store--")))
1929 (list (append (car method) (list tag-temp def-temp))
1930 (append (nth 1 method) (list tag def))
1931 (list store-temp)
1932 (list 'let (list (list (car (nth 2 method))
1933 (list 'cl-set-getf (nth 4 method)
1934 tag-temp store-temp)))
1935 (nth 3 method) store-temp)
1936 (list 'getf (nth 4 method) tag-temp def-temp))))
1938 (define-setf-method substring (place from &optional to)
1939 (let ((method (get-setf-method place cl-macro-environment))
1940 (from-temp (make-symbol "--cl-substring-from--"))
1941 (to-temp (make-symbol "--cl-substring-to--"))
1942 (store-temp (make-symbol "--cl-substring-store--")))
1943 (list (append (car method) (list from-temp to-temp))
1944 (append (nth 1 method) (list from to))
1945 (list store-temp)
1946 (list 'let (list (list (car (nth 2 method))
1947 (list 'cl-set-substring (nth 4 method)
1948 from-temp to-temp store-temp)))
1949 (nth 3 method) store-temp)
1950 (list 'substring (nth 4 method) from-temp to-temp))))
1952 ;;; Getting and optimizing setf-methods.
1953 ;;;###autoload
1954 (defun get-setf-method (place &optional env)
1955 "Return a list of five values describing the setf-method for PLACE.
1956 PLACE may be any Lisp form which can appear as the PLACE argument to
1957 a macro like `setf' or `incf'."
1958 (if (symbolp place)
1959 (let ((temp (make-symbol "--cl-setf--")))
1960 (list nil nil (list temp) (list 'setq place temp) place))
1961 (or (and (symbolp (car place))
1962 (let* ((func (car place))
1963 (name (symbol-name func))
1964 (method (get func 'setf-method))
1965 (case-fold-search nil))
1966 (or (and method
1967 (let ((cl-macro-environment env))
1968 (setq method (apply method (cdr place))))
1969 (if (and (consp method) (= (length method) 5))
1970 method
1971 (error "Setf-method for %s returns malformed method"
1972 func)))
1973 (and (string-match-p "\\`c[ad][ad][ad]?[ad]?r\\'" name)
1974 (get-setf-method (compiler-macroexpand place)))
1975 (and (eq func 'edebug-after)
1976 (get-setf-method (nth (1- (length place)) place)
1977 env)))))
1978 (if (eq place (setq place (macroexpand place env)))
1979 (if (and (symbolp (car place)) (fboundp (car place))
1980 (symbolp (symbol-function (car place))))
1981 (get-setf-method (cons (symbol-function (car place))
1982 (cdr place)) env)
1983 (error "No setf-method known for %s" (car place)))
1984 (get-setf-method place env)))))
1986 (defun cl-setf-do-modify (place opt-expr)
1987 (let* ((method (get-setf-method place cl-macro-environment))
1988 (temps (car method)) (values (nth 1 method))
1989 (lets nil) (subs nil)
1990 (optimize (and (not (eq opt-expr 'no-opt))
1991 (or (and (not (eq opt-expr 'unsafe))
1992 (cl-safe-expr-p opt-expr))
1993 (cl-setf-simple-store-p (car (nth 2 method))
1994 (nth 3 method)))))
1995 (simple (and optimize (consp place) (cl-simple-exprs-p (cdr place)))))
1996 (while values
1997 (if (or simple (cl-const-expr-p (car values)))
1998 (push (cons (pop temps) (pop values)) subs)
1999 (push (list (pop temps) (pop values)) lets)))
2000 (list (nreverse lets)
2001 (cons (car (nth 2 method)) (sublis subs (nth 3 method)))
2002 (sublis subs (nth 4 method)))))
2004 (defun cl-setf-do-store (spec val)
2005 (let ((sym (car spec))
2006 (form (cdr spec)))
2007 (if (or (cl-const-expr-p val)
2008 (and (cl-simple-expr-p val) (eq (cl-expr-contains form sym) 1))
2009 (cl-setf-simple-store-p sym form))
2010 (subst val sym form)
2011 (list 'let (list (list sym val)) form))))
2013 (defun cl-setf-simple-store-p (sym form)
2014 (and (consp form) (eq (cl-expr-contains form sym) 1)
2015 (eq (nth (1- (length form)) form) sym)
2016 (symbolp (car form)) (fboundp (car form))
2017 (not (eq (car-safe (symbol-function (car form))) 'macro))))
2019 ;;; The standard modify macros.
2020 ;;;###autoload
2021 (defmacro setf (&rest args)
2022 "Set each PLACE to the value of its VAL.
2023 This is a generalized version of `setq'; the PLACEs may be symbolic
2024 references such as (car x) or (aref x i), as well as plain symbols.
2025 For example, (setf (cadar x) y) is equivalent to (setcar (cdar x) y).
2026 The return value is the last VAL in the list.
2028 \(fn PLACE VAL PLACE VAL ...)"
2029 (if (cdr (cdr args))
2030 (let ((sets nil))
2031 (while args (push (list 'setf (pop args) (pop args)) sets))
2032 (cons 'progn (nreverse sets)))
2033 (if (symbolp (car args))
2034 (and args (cons 'setq args))
2035 (let* ((method (cl-setf-do-modify (car args) (nth 1 args)))
2036 (store (cl-setf-do-store (nth 1 method) (nth 1 args))))
2037 (if (car method) (list 'let* (car method) store) store)))))
2039 ;;;###autoload
2040 (defmacro psetf (&rest args)
2041 "Set PLACEs to the values VALs in parallel.
2042 This is like `setf', except that all VAL forms are evaluated (in order)
2043 before assigning any PLACEs to the corresponding values.
2045 \(fn PLACE VAL PLACE VAL ...)"
2046 (let ((p args) (simple t) (vars nil))
2047 (while p
2048 (if (or (not (symbolp (car p))) (cl-expr-depends-p (nth 1 p) vars))
2049 (setq simple nil))
2050 (if (memq (car p) vars)
2051 (error "Destination duplicated in psetf: %s" (car p)))
2052 (push (pop p) vars)
2053 (or p (error "Odd number of arguments to psetf"))
2054 (pop p))
2055 (if simple
2056 (list 'progn (cons 'setf args) nil)
2057 (setq args (reverse args))
2058 (let ((expr (list 'setf (cadr args) (car args))))
2059 (while (setq args (cddr args))
2060 (setq expr (list 'setf (cadr args) (list 'prog1 (car args) expr))))
2061 (list 'progn expr nil)))))
2063 ;;;###autoload
2064 (defun cl-do-pop (place)
2065 (if (cl-simple-expr-p place)
2066 (list 'prog1 (list 'car place) (list 'setf place (list 'cdr place)))
2067 (let* ((method (cl-setf-do-modify place t))
2068 (temp (make-symbol "--cl-pop--")))
2069 (list 'let*
2070 (append (car method)
2071 (list (list temp (nth 2 method))))
2072 (list 'prog1
2073 (list 'car temp)
2074 (cl-setf-do-store (nth 1 method) (list 'cdr temp)))))))
2076 ;;;###autoload
2077 (defmacro remf (place tag)
2078 "Remove TAG from property list PLACE.
2079 PLACE may be a symbol, or any generalized variable allowed by `setf'.
2080 The form returns true if TAG was found and removed, nil otherwise."
2081 (let* ((method (cl-setf-do-modify place t))
2082 (tag-temp (and (not (cl-const-expr-p tag)) (make-symbol "--cl-remf-tag--")))
2083 (val-temp (and (not (cl-simple-expr-p place))
2084 (make-symbol "--cl-remf-place--")))
2085 (ttag (or tag-temp tag))
2086 (tval (or val-temp (nth 2 method))))
2087 (list 'let*
2088 (append (car method)
2089 (and val-temp (list (list val-temp (nth 2 method))))
2090 (and tag-temp (list (list tag-temp tag))))
2091 (list 'if (list 'eq ttag (list 'car tval))
2092 (list 'progn
2093 (cl-setf-do-store (nth 1 method) (list 'cddr tval))
2095 (list 'cl-do-remf tval ttag)))))
2097 ;;;###autoload
2098 (defmacro shiftf (place &rest args)
2099 "Shift left among PLACEs.
2100 Example: (shiftf A B C) sets A to B, B to C, and returns the old A.
2101 Each PLACE may be a symbol, or any generalized variable allowed by `setf'.
2103 \(fn PLACE... VAL)"
2104 (cond
2105 ((null args) place)
2106 ((symbolp place) `(prog1 ,place (setq ,place (shiftf ,@args))))
2108 (let ((method (cl-setf-do-modify place 'unsafe)))
2109 `(let* ,(car method)
2110 (prog1 ,(nth 2 method)
2111 ,(cl-setf-do-store (nth 1 method) `(shiftf ,@args))))))))
2113 ;;;###autoload
2114 (defmacro rotatef (&rest args)
2115 "Rotate left among PLACEs.
2116 Example: (rotatef A B C) sets A to B, B to C, and C to A. It returns nil.
2117 Each PLACE may be a symbol, or any generalized variable allowed by `setf'.
2119 \(fn PLACE...)"
2120 (if (not (memq nil (mapcar 'symbolp args)))
2121 (and (cdr args)
2122 (let ((sets nil)
2123 (first (car args)))
2124 (while (cdr args)
2125 (setq sets (nconc sets (list (pop args) (car args)))))
2126 (nconc (list 'psetf) sets (list (car args) first))))
2127 (let* ((places (reverse args))
2128 (temp (make-symbol "--cl-rotatef--"))
2129 (form temp))
2130 (while (cdr places)
2131 (let ((method (cl-setf-do-modify (pop places) 'unsafe)))
2132 (setq form (list 'let* (car method)
2133 (list 'prog1 (nth 2 method)
2134 (cl-setf-do-store (nth 1 method) form))))))
2135 (let ((method (cl-setf-do-modify (car places) 'unsafe)))
2136 (list 'let* (append (car method) (list (list temp (nth 2 method))))
2137 (cl-setf-do-store (nth 1 method) form) nil)))))
2139 ;;;###autoload
2140 (defmacro letf (bindings &rest body)
2141 "Temporarily bind to PLACEs.
2142 This is the analogue of `let', but with generalized variables (in the
2143 sense of `setf') for the PLACEs. Each PLACE is set to the corresponding
2144 VALUE, then the BODY forms are executed. On exit, either normally or
2145 because of a `throw' or error, the PLACEs are set back to their original
2146 values. Note that this macro is *not* available in Common Lisp.
2147 As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)',
2148 the PLACE is not modified before executing BODY.
2150 \(fn ((PLACE VALUE) ...) BODY...)"
2151 (if (and (not (cdr bindings)) (cdar bindings) (symbolp (caar bindings)))
2152 (list* 'let bindings body)
2153 (let ((lets nil) (sets nil)
2154 (unsets nil) (rev (reverse bindings)))
2155 (while rev
2156 (let* ((place (if (symbolp (caar rev))
2157 (list 'symbol-value (list 'quote (caar rev)))
2158 (caar rev)))
2159 (value (cadar rev))
2160 (method (cl-setf-do-modify place 'no-opt))
2161 (save (make-symbol "--cl-letf-save--"))
2162 (bound (and (memq (car place) '(symbol-value symbol-function))
2163 (make-symbol "--cl-letf-bound--")))
2164 (temp (and (not (cl-const-expr-p value)) (cdr bindings)
2165 (make-symbol "--cl-letf-val--"))))
2166 (setq lets (nconc (car method)
2167 (if bound
2168 (list (list bound
2169 (list (if (eq (car place)
2170 'symbol-value)
2171 'boundp 'fboundp)
2172 (nth 1 (nth 2 method))))
2173 (list save (list 'and bound
2174 (nth 2 method))))
2175 (list (list save (nth 2 method))))
2176 (and temp (list (list temp value)))
2177 lets)
2178 body (list
2179 (list 'unwind-protect
2180 (cons 'progn
2181 (if (cdr (car rev))
2182 (cons (cl-setf-do-store (nth 1 method)
2183 (or temp value))
2184 body)
2185 body))
2186 (if bound
2187 (list 'if bound
2188 (cl-setf-do-store (nth 1 method) save)
2189 (list (if (eq (car place) 'symbol-value)
2190 'makunbound 'fmakunbound)
2191 (nth 1 (nth 2 method))))
2192 (cl-setf-do-store (nth 1 method) save))))
2193 rev (cdr rev))))
2194 (list* 'let* lets body))))
2196 ;;;###autoload
2197 (defmacro letf* (bindings &rest body)
2198 "Temporarily bind to PLACEs.
2199 This is the analogue of `let*', but with generalized variables (in the
2200 sense of `setf') for the PLACEs. Each PLACE is set to the corresponding
2201 VALUE, then the BODY forms are executed. On exit, either normally or
2202 because of a `throw' or error, the PLACEs are set back to their original
2203 values. Note that this macro is *not* available in Common Lisp.
2204 As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)',
2205 the PLACE is not modified before executing BODY.
2207 \(fn ((PLACE VALUE) ...) BODY...)"
2208 (if (null bindings)
2209 (cons 'progn body)
2210 (setq bindings (reverse bindings))
2211 (while bindings
2212 (setq body (list (list* 'letf (list (pop bindings)) body))))
2213 (car body)))
2215 ;;;###autoload
2216 (defmacro callf (func place &rest args)
2217 "Set PLACE to (FUNC PLACE ARGS...).
2218 FUNC should be an unquoted function name. PLACE may be a symbol,
2219 or any generalized variable allowed by `setf'.
2221 \(fn FUNC PLACE ARGS...)"
2222 (let* ((method (cl-setf-do-modify place (cons 'list args)))
2223 (rargs (cons (nth 2 method) args)))
2224 (list 'let* (car method)
2225 (cl-setf-do-store (nth 1 method)
2226 (if (symbolp func) (cons func rargs)
2227 (list* 'funcall (list 'function func)
2228 rargs))))))
2230 ;;;###autoload
2231 (defmacro callf2 (func arg1 place &rest args)
2232 "Set PLACE to (FUNC ARG1 PLACE ARGS...).
2233 Like `callf', but PLACE is the second argument of FUNC, not the first.
2235 \(fn FUNC ARG1 PLACE ARGS...)"
2236 (if (and (cl-safe-expr-p arg1) (cl-simple-expr-p place) (symbolp func))
2237 (list 'setf place (list* func arg1 place args))
2238 (let* ((method (cl-setf-do-modify place (cons 'list args)))
2239 (temp (and (not (cl-const-expr-p arg1)) (make-symbol "--cl-arg1--")))
2240 (rargs (list* (or temp arg1) (nth 2 method) args)))
2241 (list 'let* (append (and temp (list (list temp arg1))) (car method))
2242 (cl-setf-do-store (nth 1 method)
2243 (if (symbolp func) (cons func rargs)
2244 (list* 'funcall (list 'function func)
2245 rargs)))))))
2247 ;;;###autoload
2248 (defmacro define-modify-macro (name arglist func &optional doc)
2249 "Define a `setf'-like modify macro.
2250 If NAME is called, it combines its PLACE argument with the other arguments
2251 from ARGLIST using FUNC: (define-modify-macro incf (&optional (n 1)) +)"
2252 (if (memq '&key arglist) (error "&key not allowed in define-modify-macro"))
2253 (let ((place (make-symbol "--cl-place--")))
2254 (list 'defmacro* name (cons place arglist) doc
2255 (list* (if (memq '&rest arglist) 'list* 'list)
2256 '(quote callf) (list 'quote func) place
2257 (cl-arglist-args arglist)))))
2260 ;;; Structures.
2262 ;;;###autoload
2263 (defmacro defstruct (struct &rest descs)
2264 "Define a struct type.
2265 This macro defines a new data type called NAME that stores data
2266 in SLOTs. It defines a `make-NAME' constructor, a `copy-NAME'
2267 copier, a `NAME-p' predicate, and slot accessors named `NAME-SLOT'.
2268 You can use the accessors to set the corresponding slots, via `setf'.
2270 NAME may instead take the form (NAME OPTIONS...), where each
2271 OPTION is either a single keyword or (KEYWORD VALUE).
2272 See Info node `(cl)Structures' for a list of valid keywords.
2274 Each SLOT may instead take the form (SLOT SLOT-OPTS...), where
2275 SLOT-OPTS are keyword-value pairs for that slot. Currently, only
2276 one keyword is supported, `:read-only'. If this has a non-nil
2277 value, that slot cannot be set via `setf'.
2279 \(fn NAME SLOTS...)"
2280 (let* ((name (if (consp struct) (car struct) struct))
2281 (opts (cdr-safe struct))
2282 (slots nil)
2283 (defaults nil)
2284 (conc-name (concat (symbol-name name) "-"))
2285 (constructor (intern (format "make-%s" name)))
2286 (constrs nil)
2287 (copier (intern (format "copy-%s" name)))
2288 (predicate (intern (format "%s-p" name)))
2289 (print-func nil) (print-auto nil)
2290 (safety (if (cl-compiling-file) cl-optimize-safety 3))
2291 (include nil)
2292 (tag (intern (format "cl-struct-%s" name)))
2293 (tag-symbol (intern (format "cl-struct-%s-tags" name)))
2294 (include-descs nil)
2295 (side-eff nil)
2296 (type nil)
2297 (named nil)
2298 (forms nil)
2299 pred-form pred-check)
2300 (if (stringp (car descs))
2301 (push (list 'put (list 'quote name) '(quote structure-documentation)
2302 (pop descs)) forms))
2303 (setq descs (cons '(cl-tag-slot)
2304 (mapcar (function (lambda (x) (if (consp x) x (list x))))
2305 descs)))
2306 (while opts
2307 (let ((opt (if (consp (car opts)) (caar opts) (car opts)))
2308 (args (cdr-safe (pop opts))))
2309 (cond ((eq opt :conc-name)
2310 (if args
2311 (setq conc-name (if (car args)
2312 (symbol-name (car args)) ""))))
2313 ((eq opt :constructor)
2314 (if (cdr args)
2315 (progn
2316 ;; If this defines a constructor of the same name as
2317 ;; the default one, don't define the default.
2318 (if (eq (car args) constructor)
2319 (setq constructor nil))
2320 (push args constrs))
2321 (if args (setq constructor (car args)))))
2322 ((eq opt :copier)
2323 (if args (setq copier (car args))))
2324 ((eq opt :predicate)
2325 (if args (setq predicate (car args))))
2326 ((eq opt :include)
2327 (setq include (car args)
2328 include-descs (mapcar (function
2329 (lambda (x)
2330 (if (consp x) x (list x))))
2331 (cdr args))))
2332 ((eq opt :print-function)
2333 (setq print-func (car args)))
2334 ((eq opt :type)
2335 (setq type (car args)))
2336 ((eq opt :named)
2337 (setq named t))
2338 ((eq opt :initial-offset)
2339 (setq descs (nconc (make-list (car args) '(cl-skip-slot))
2340 descs)))
2342 (error "Slot option %s unrecognized" opt)))))
2343 (if print-func
2344 (setq print-func (list 'progn
2345 (list 'funcall (list 'function print-func)
2346 'cl-x 'cl-s 'cl-n) t))
2347 (or type (and include (not (get include 'cl-struct-print)))
2348 (setq print-auto t
2349 print-func (and (or (not (or include type)) (null print-func))
2350 (list 'progn
2351 (list 'princ (format "#S(%s" name)
2352 'cl-s))))))
2353 (if include
2354 (let ((inc-type (get include 'cl-struct-type))
2355 (old-descs (get include 'cl-struct-slots)))
2356 (or inc-type (error "%s is not a struct name" include))
2357 (and type (not (eq (car inc-type) type))
2358 (error ":type disagrees with :include for %s" name))
2359 (while include-descs
2360 (setcar (memq (or (assq (caar include-descs) old-descs)
2361 (error "No slot %s in included struct %s"
2362 (caar include-descs) include))
2363 old-descs)
2364 (pop include-descs)))
2365 (setq descs (append old-descs (delq (assq 'cl-tag-slot descs) descs))
2366 type (car inc-type)
2367 named (assq 'cl-tag-slot descs))
2368 (if (cadr inc-type) (setq tag name named t))
2369 (let ((incl include))
2370 (while incl
2371 (push (list 'pushnew (list 'quote tag)
2372 (intern (format "cl-struct-%s-tags" incl)))
2373 forms)
2374 (setq incl (get incl 'cl-struct-include)))))
2375 (if type
2376 (progn
2377 (or (memq type '(vector list))
2378 (error "Invalid :type specifier: %s" type))
2379 (if named (setq tag name)))
2380 (setq type 'vector named 'true)))
2381 (or named (setq descs (delq (assq 'cl-tag-slot descs) descs)))
2382 (push (list 'defvar tag-symbol) forms)
2383 (setq pred-form (and named
2384 (let ((pos (- (length descs)
2385 (length (memq (assq 'cl-tag-slot descs)
2386 descs)))))
2387 (if (eq type 'vector)
2388 (list 'and '(vectorp cl-x)
2389 (list '>= '(length cl-x) (length descs))
2390 (list 'memq (list 'aref 'cl-x pos)
2391 tag-symbol))
2392 (if (= pos 0)
2393 (list 'memq '(car-safe cl-x) tag-symbol)
2394 (list 'and '(consp cl-x)
2395 (list 'memq (list 'nth pos 'cl-x)
2396 tag-symbol))))))
2397 pred-check (and pred-form (> safety 0)
2398 (if (and (eq (caadr pred-form) 'vectorp)
2399 (= safety 1))
2400 (cons 'and (cdddr pred-form)) pred-form)))
2401 (let ((pos 0) (descp descs))
2402 (while descp
2403 (let* ((desc (pop descp))
2404 (slot (car desc)))
2405 (if (memq slot '(cl-tag-slot cl-skip-slot))
2406 (progn
2407 (push nil slots)
2408 (push (and (eq slot 'cl-tag-slot) (list 'quote tag))
2409 defaults))
2410 (if (assq slot descp)
2411 (error "Duplicate slots named %s in %s" slot name))
2412 (let ((accessor (intern (format "%s%s" conc-name slot))))
2413 (push slot slots)
2414 (push (nth 1 desc) defaults)
2415 (push (list*
2416 'defsubst* accessor '(cl-x)
2417 (append
2418 (and pred-check
2419 (list (list 'or pred-check
2420 `(error "%s accessing a non-%s"
2421 ',accessor ',name))))
2422 (list (if (eq type 'vector) (list 'aref 'cl-x pos)
2423 (if (= pos 0) '(car cl-x)
2424 (list 'nth pos 'cl-x)))))) forms)
2425 (push (cons accessor t) side-eff)
2426 (push (list 'define-setf-method accessor '(cl-x)
2427 (if (cadr (memq :read-only (cddr desc)))
2428 (list 'progn '(ignore cl-x)
2429 `(error "%s is a read-only slot"
2430 ',accessor))
2431 ;; If cl is loaded only for compilation,
2432 ;; the call to cl-struct-setf-expander would
2433 ;; cause a warning because it may not be
2434 ;; defined at run time. Suppress that warning.
2435 (list 'with-no-warnings
2436 (list 'cl-struct-setf-expander 'cl-x
2437 (list 'quote name) (list 'quote accessor)
2438 (and pred-check (list 'quote pred-check))
2439 pos))))
2440 forms)
2441 (if print-auto
2442 (nconc print-func
2443 (list (list 'princ (format " %s" slot) 'cl-s)
2444 (list 'prin1 (list accessor 'cl-x) 'cl-s)))))))
2445 (setq pos (1+ pos))))
2446 (setq slots (nreverse slots)
2447 defaults (nreverse defaults))
2448 (and predicate pred-form
2449 (progn (push (list 'defsubst* predicate '(cl-x)
2450 (if (eq (car pred-form) 'and)
2451 (append pred-form '(t))
2452 (list 'and pred-form t))) forms)
2453 (push (cons predicate 'error-free) side-eff)))
2454 (and copier
2455 (progn (push (list 'defun copier '(x) '(copy-sequence x)) forms)
2456 (push (cons copier t) side-eff)))
2457 (if constructor
2458 (push (list constructor
2459 (cons '&key (delq nil (copy-sequence slots))))
2460 constrs))
2461 (while constrs
2462 (let* ((name (caar constrs))
2463 (args (cadr (pop constrs)))
2464 (anames (cl-arglist-args args))
2465 (make (mapcar* (function (lambda (s d) (if (memq s anames) s d)))
2466 slots defaults)))
2467 (push (list 'defsubst* name
2468 (list* '&cl-defs (list 'quote (cons nil descs)) args)
2469 (cons type make)) forms)
2470 (if (cl-safe-expr-p (cons 'progn (mapcar 'second descs)))
2471 (push (cons name t) side-eff))))
2472 (if print-auto (nconc print-func (list '(princ ")" cl-s) t)))
2473 (if print-func
2474 (push `(push
2475 ;; The auto-generated function does not pay attention to
2476 ;; the depth argument cl-n.
2477 (lambda (cl-x cl-s ,(if print-auto '_cl-n 'cl-n))
2478 (and ,pred-form ,print-func))
2479 custom-print-functions)
2480 forms))
2481 (push (list 'setq tag-symbol (list 'list (list 'quote tag))) forms)
2482 (push (list* 'eval-when '(compile load eval)
2483 (list 'put (list 'quote name) '(quote cl-struct-slots)
2484 (list 'quote descs))
2485 (list 'put (list 'quote name) '(quote cl-struct-type)
2486 (list 'quote (list type (eq named t))))
2487 (list 'put (list 'quote name) '(quote cl-struct-include)
2488 (list 'quote include))
2489 (list 'put (list 'quote name) '(quote cl-struct-print)
2490 print-auto)
2491 (mapcar (function (lambda (x)
2492 (list 'put (list 'quote (car x))
2493 '(quote side-effect-free)
2494 (list 'quote (cdr x)))))
2495 side-eff))
2496 forms)
2497 (cons 'progn (nreverse (cons (list 'quote name) forms)))))
2499 ;;;###autoload
2500 (defun cl-struct-setf-expander (x name accessor pred-form pos)
2501 (let* ((temp (make-symbol "--cl-x--")) (store (make-symbol "--cl-store--")))
2502 (list (list temp) (list x) (list store)
2503 (append '(progn)
2504 (and pred-form
2505 (list (list 'or (subst temp 'cl-x pred-form)
2506 (list 'error
2507 (format
2508 "%s storing a non-%s" accessor name)))))
2509 (list (if (eq (car (get name 'cl-struct-type)) 'vector)
2510 (list 'aset temp pos store)
2511 (list 'setcar
2512 (if (<= pos 5)
2513 (let ((xx temp))
2514 (while (>= (setq pos (1- pos)) 0)
2515 (setq xx (list 'cdr xx)))
2517 (list 'nthcdr pos temp))
2518 store))))
2519 (list accessor temp))))
2522 ;;; Types and assertions.
2524 ;;;###autoload
2525 (defmacro deftype (name arglist &rest body)
2526 "Define NAME as a new data type.
2527 The type name can then be used in `typecase', `check-type', etc."
2528 (list 'eval-when '(compile load eval)
2529 (cl-transform-function-property
2530 name 'cl-deftype-handler (cons (list* '&cl-defs ''('*) arglist) body))))
2532 (defun cl-make-type-test (val type)
2533 (if (symbolp type)
2534 (cond ((get type 'cl-deftype-handler)
2535 (cl-make-type-test val (funcall (get type 'cl-deftype-handler))))
2536 ((memq type '(nil t)) type)
2537 ((eq type 'null) `(null ,val))
2538 ((eq type 'atom) `(atom ,val))
2539 ((eq type 'float) `(floatp-safe ,val))
2540 ((eq type 'real) `(numberp ,val))
2541 ((eq type 'fixnum) `(integerp ,val))
2542 ;; FIXME: Should `character' accept things like ?\C-\M-a ? -stef
2543 ((memq type '(character string-char)) `(characterp ,val))
2545 (let* ((name (symbol-name type))
2546 (namep (intern (concat name "p"))))
2547 (if (fboundp namep) (list namep val)
2548 (list (intern (concat name "-p")) val)))))
2549 (cond ((get (car type) 'cl-deftype-handler)
2550 (cl-make-type-test val (apply (get (car type) 'cl-deftype-handler)
2551 (cdr type))))
2552 ((memq (car type) '(integer float real number))
2553 (delq t (list 'and (cl-make-type-test val (car type))
2554 (if (memq (cadr type) '(* nil)) t
2555 (if (consp (cadr type)) (list '> val (caadr type))
2556 (list '>= val (cadr type))))
2557 (if (memq (caddr type) '(* nil)) t
2558 (if (consp (caddr type)) (list '< val (caaddr type))
2559 (list '<= val (caddr type)))))))
2560 ((memq (car type) '(and or not))
2561 (cons (car type)
2562 (mapcar (function (lambda (x) (cl-make-type-test val x)))
2563 (cdr type))))
2564 ((memq (car type) '(member member*))
2565 (list 'and (list 'member* val (list 'quote (cdr type))) t))
2566 ((eq (car type) 'satisfies) (list (cadr type) val))
2567 (t (error "Bad type spec: %s" type)))))
2569 ;;;###autoload
2570 (defun typep (object type) ; See compiler macro below.
2571 "Check that OBJECT is of type TYPE.
2572 TYPE is a Common Lisp-style type specifier."
2573 (eval (cl-make-type-test 'object type)))
2575 ;;;###autoload
2576 (defmacro check-type (form type &optional string)
2577 "Verify that FORM is of type TYPE; signal an error if not.
2578 STRING is an optional description of the desired type."
2579 (and (or (not (cl-compiling-file))
2580 (< cl-optimize-speed 3) (= cl-optimize-safety 3))
2581 (let* ((temp (if (cl-simple-expr-p form 3)
2582 form (make-symbol "--cl-var--")))
2583 (body (list 'or (cl-make-type-test temp type)
2584 (list 'signal '(quote wrong-type-argument)
2585 (list 'list (or string (list 'quote type))
2586 temp (list 'quote form))))))
2587 (if (eq temp form) (list 'progn body nil)
2588 (list 'let (list (list temp form)) body nil)))))
2590 ;;;###autoload
2591 (defmacro assert (form &optional show-args string &rest args)
2592 "Verify that FORM returns non-nil; signal an error if not.
2593 Second arg SHOW-ARGS means to include arguments of FORM in message.
2594 Other args STRING and ARGS... are arguments to be passed to `error'.
2595 They are not evaluated unless the assertion fails. If STRING is
2596 omitted, a default message listing FORM itself is used."
2597 (and (or (not (cl-compiling-file))
2598 (< cl-optimize-speed 3) (= cl-optimize-safety 3))
2599 (let ((sargs (and show-args
2600 (delq nil (mapcar
2601 (lambda (x)
2602 (unless (cl-const-expr-p x)
2604 (cdr form))))))
2605 (list 'progn
2606 (list 'or form
2607 (if string
2608 (list* 'error string (append sargs args))
2609 (list 'signal '(quote cl-assertion-failed)
2610 (list* 'list (list 'quote form) sargs))))
2611 nil))))
2613 ;;; Compiler macros.
2615 ;;;###autoload
2616 (defmacro define-compiler-macro (func args &rest body)
2617 "Define a compiler-only macro.
2618 This is like `defmacro', but macro expansion occurs only if the call to
2619 FUNC is compiled (i.e., not interpreted). Compiler macros should be used
2620 for optimizing the way calls to FUNC are compiled; the form returned by
2621 BODY should do the same thing as a call to the normal function called
2622 FUNC, though possibly more efficiently. Note that, like regular macros,
2623 compiler macros are expanded repeatedly until no further expansions are
2624 possible. Unlike regular macros, BODY can decide to \"punt\" and leave the
2625 original function call alone by declaring an initial `&whole foo' parameter
2626 and then returning foo."
2627 (let ((p args) (res nil))
2628 (while (consp p) (push (pop p) res))
2629 (setq args (nconc (nreverse res) (and p (list '&rest p)))))
2630 (list 'eval-when '(compile load eval)
2631 (cl-transform-function-property
2632 func 'cl-compiler-macro
2633 (cons (if (memq '&whole args) (delq '&whole args)
2634 (cons '_cl-whole-arg args)) body))
2635 (list 'or (list 'get (list 'quote func) '(quote byte-compile))
2636 (list 'progn
2637 (list 'put (list 'quote func) '(quote byte-compile)
2638 '(quote cl-byte-compile-compiler-macro))
2639 ;; This is so that describe-function can locate
2640 ;; the macro definition.
2641 (list 'let
2642 (list (list
2643 'file
2644 (or buffer-file-name
2645 (and (boundp 'byte-compile-current-file)
2646 (stringp byte-compile-current-file)
2647 byte-compile-current-file))))
2648 (list 'if 'file
2649 (list 'put (list 'quote func)
2650 '(quote compiler-macro-file)
2651 '(purecopy (file-name-nondirectory file)))))))))
2653 ;;;###autoload
2654 (defun compiler-macroexpand (form)
2655 (while
2656 (let ((func (car-safe form)) (handler nil))
2657 (while (and (symbolp func)
2658 (not (setq handler (get func 'cl-compiler-macro)))
2659 (fboundp func)
2660 (or (not (eq (car-safe (symbol-function func)) 'autoload))
2661 (load (nth 1 (symbol-function func)))))
2662 (setq func (symbol-function func)))
2663 (and handler
2664 (not (eq form (setq form (apply handler form (cdr form))))))))
2665 form)
2667 (defun cl-byte-compile-compiler-macro (form)
2668 (if (eq form (setq form (compiler-macroexpand form)))
2669 (byte-compile-normal-call form)
2670 (byte-compile-form form)))
2672 ;; Optimize away unused block-wrappers.
2674 (defvar cl-active-block-names nil)
2676 (define-compiler-macro cl-block-wrapper (cl-form)
2677 (let* ((cl-entry (cons (nth 1 (nth 1 cl-form)) nil))
2678 (cl-active-block-names (cons cl-entry cl-active-block-names))
2679 (cl-body (macroexpand-all ;Performs compiler-macro expansions.
2680 (cons 'progn (cddr cl-form))
2681 macroexpand-all-environment)))
2682 ;; FIXME: To avoid re-applying macroexpand-all, we'd like to be able
2683 ;; to indicate that this return value is already fully expanded.
2684 (if (cdr cl-entry)
2685 `(catch ,(nth 1 cl-form) ,@(cdr cl-body))
2686 cl-body)))
2688 (define-compiler-macro cl-block-throw (cl-tag cl-value)
2689 (let ((cl-found (assq (nth 1 cl-tag) cl-active-block-names)))
2690 (if cl-found (setcdr cl-found t)))
2691 `(throw ,cl-tag ,cl-value))
2693 ;;;###autoload
2694 (defmacro defsubst* (name args &rest body)
2695 "Define NAME as a function.
2696 Like `defun', except the function is automatically declared `inline',
2697 ARGLIST allows full Common Lisp conventions, and BODY is implicitly
2698 surrounded by (block NAME ...).
2700 \(fn NAME ARGLIST [DOCSTRING] BODY...)"
2701 (let* ((argns (cl-arglist-args args)) (p argns)
2702 (pbody (cons 'progn body))
2703 (unsafe (not (cl-safe-expr-p pbody))))
2704 (while (and p (eq (cl-expr-contains args (car p)) 1)) (pop p))
2705 (list 'progn
2706 (if p nil ; give up if defaults refer to earlier args
2707 (list 'define-compiler-macro name
2708 (if (memq '&key args)
2709 (list* '&whole 'cl-whole '&cl-quote args)
2710 (cons '&cl-quote args))
2711 (list* 'cl-defsubst-expand (list 'quote argns)
2712 (list 'quote (list* 'block name body))
2713 ;; We used to pass `simple' as
2714 ;; (not (or unsafe (cl-expr-access-order pbody argns)))
2715 ;; But this is much too simplistic since it
2716 ;; does not pay attention to the argvs (and
2717 ;; cl-expr-access-order itself is also too naive).
2719 (and (memq '&key args) 'cl-whole) unsafe argns)))
2720 (list* 'defun* name args body))))
2722 (defun cl-defsubst-expand (argns body simple whole unsafe &rest argvs)
2723 (if (and whole (not (cl-safe-expr-p (cons 'progn argvs)))) whole
2724 (if (cl-simple-exprs-p argvs) (setq simple t))
2725 (let* ((substs ())
2726 (lets (delq nil
2727 (mapcar* (function
2728 (lambda (argn argv)
2729 (if (or simple (cl-const-expr-p argv))
2730 (progn (push (cons argn argv) substs)
2731 (and unsafe (list argn argv)))
2732 (list argn argv))))
2733 argns argvs))))
2734 ;; FIXME: `sublis/subst' will happily substitute the symbol
2735 ;; `argn' in places where it's not used as a reference
2736 ;; to a variable.
2737 ;; FIXME: `sublis/subst' will happily copy `argv' to a different
2738 ;; scope, leading to name capture.
2739 (setq body (cond ((null substs) body)
2740 ((null (cdr substs))
2741 (subst (cdar substs) (caar substs) body))
2742 (t (sublis substs body))))
2743 (if lets (list 'let lets body) body))))
2746 ;; Compile-time optimizations for some functions defined in this package.
2747 ;; Note that cl.el arranges to force cl-macs to be loaded at compile-time,
2748 ;; mainly to make sure these macros will be present.
2750 (put 'eql 'byte-compile nil)
2751 (define-compiler-macro eql (&whole form a b)
2752 (cond ((eq (cl-const-expr-p a) t)
2753 (let ((val (cl-const-expr-val a)))
2754 (if (and (numberp val) (not (integerp val)))
2755 (list 'equal a b)
2756 (list 'eq a b))))
2757 ((eq (cl-const-expr-p b) t)
2758 (let ((val (cl-const-expr-val b)))
2759 (if (and (numberp val) (not (integerp val)))
2760 (list 'equal a b)
2761 (list 'eq a b))))
2762 ((cl-simple-expr-p a 5)
2763 (list 'if (list 'numberp a)
2764 (list 'equal a b)
2765 (list 'eq a b)))
2766 ((and (cl-safe-expr-p a)
2767 (cl-simple-expr-p b 5))
2768 (list 'if (list 'numberp b)
2769 (list 'equal a b)
2770 (list 'eq a b)))
2771 (t form)))
2773 (define-compiler-macro member* (&whole form a list &rest keys)
2774 (let ((test (and (= (length keys) 2) (eq (car keys) :test)
2775 (cl-const-expr-val (nth 1 keys)))))
2776 (cond ((eq test 'eq) (list 'memq a list))
2777 ((eq test 'equal) (list 'member a list))
2778 ((or (null keys) (eq test 'eql)) (list 'memql a list))
2779 (t form))))
2781 (define-compiler-macro assoc* (&whole form a list &rest keys)
2782 (let ((test (and (= (length keys) 2) (eq (car keys) :test)
2783 (cl-const-expr-val (nth 1 keys)))))
2784 (cond ((eq test 'eq) (list 'assq a list))
2785 ((eq test 'equal) (list 'assoc a list))
2786 ((and (eq (cl-const-expr-p a) t) (or (null keys) (eq test 'eql)))
2787 (if (floatp-safe (cl-const-expr-val a))
2788 (list 'assoc a list) (list 'assq a list)))
2789 (t form))))
2791 (define-compiler-macro adjoin (&whole form a list &rest keys)
2792 (if (and (cl-simple-expr-p a) (cl-simple-expr-p list)
2793 (not (memq :key keys)))
2794 (list 'if (list* 'member* a list keys) list (list 'cons a list))
2795 form))
2797 (define-compiler-macro list* (arg &rest others)
2798 (let* ((args (reverse (cons arg others)))
2799 (form (car args)))
2800 (while (setq args (cdr args))
2801 (setq form (list 'cons (car args) form)))
2802 form))
2804 (define-compiler-macro get* (sym prop &optional def)
2805 (if def
2806 (list 'getf (list 'symbol-plist sym) prop def)
2807 (list 'get sym prop)))
2809 (define-compiler-macro typep (&whole form val type)
2810 (if (cl-const-expr-p type)
2811 (let ((res (cl-make-type-test val (cl-const-expr-val type))))
2812 (if (or (memq (cl-expr-contains res val) '(nil 1))
2813 (cl-simple-expr-p val)) res
2814 (let ((temp (make-symbol "--cl-var--")))
2815 (list 'let (list (list temp val)) (subst temp val res)))))
2816 form))
2819 (mapc (lambda (y)
2820 (put (car y) 'side-effect-free t)
2821 (put (car y) 'byte-compile 'cl-byte-compile-compiler-macro)
2822 (put (car y) 'cl-compiler-macro
2823 `(lambda (w x)
2824 ,(if (symbolp (cadr y))
2825 `(list ',(cadr y)
2826 (list ',(caddr y) x))
2827 (cons 'list (cdr y))))))
2828 '((first 'car x) (second 'cadr x) (third 'caddr x) (fourth 'cadddr x)
2829 (fifth 'nth 4 x) (sixth 'nth 5 x) (seventh 'nth 6 x)
2830 (eighth 'nth 7 x) (ninth 'nth 8 x) (tenth 'nth 9 x)
2831 (rest 'cdr x) (endp 'null x) (plusp '> x 0) (minusp '< x 0)
2832 (caaar car caar) (caadr car cadr) (cadar car cdar)
2833 (caddr car cddr) (cdaar cdr caar) (cdadr cdr cadr)
2834 (cddar cdr cdar) (cdddr cdr cddr) (caaaar car caaar)
2835 (caaadr car caadr) (caadar car cadar) (caaddr car caddr)
2836 (cadaar car cdaar) (cadadr car cdadr) (caddar car cddar)
2837 (cadddr car cdddr) (cdaaar cdr caaar) (cdaadr cdr caadr)
2838 (cdadar cdr cadar) (cdaddr cdr caddr) (cddaar cdr cdaar)
2839 (cddadr cdr cdadr) (cdddar cdr cddar) (cddddr cdr cdddr) ))
2841 ;;; Things that are inline.
2842 (proclaim '(inline floatp-safe acons map concatenate notany notevery
2843 cl-set-elt revappend nreconc gethash))
2845 ;;; Things that are side-effect-free.
2846 (mapc (lambda (x) (put x 'side-effect-free t))
2847 '(oddp evenp signum last butlast ldiff pairlis gcd lcm
2848 isqrt floor* ceiling* truncate* round* mod* rem* subseq
2849 list-length get* getf))
2851 ;;; Things that are side-effect-and-error-free.
2852 (mapc (lambda (x) (put x 'side-effect-free 'error-free))
2853 '(eql floatp-safe list* subst acons equalp random-state-p
2854 copy-tree sublis))
2857 (run-hooks 'cl-macs-load-hook)
2859 ;; Local variables:
2860 ;; byte-compile-dynamic: t
2861 ;; byte-compile-warnings: (not cl-functions)
2862 ;; generated-autoload-file: "cl-loaddefs.el"
2863 ;; End:
2865 ;;; cl-macs.el ends here