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