Mercurial > emacs
annotate lisp/emacs-lisp/cl-specs.el @ 81575:cea1e05b3c83
* vc-hg.el (vc-hg-log-view-mode): Revert incorrect change.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Sat, 23 Jun 2007 04:30:24 +0000 |
parents | 7a3f13e2dd57 |
children | 935157c0b596 b8d9a391daf3 95d0cdf160ea |
rev | line source |
---|---|
47726
33d53d287ee4
Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
1 ;;; cl-specs.el --- Edebug specs for cl.el -*- no-byte-compile: t -*- |
6491 | 2 |
74466 | 3 ;; Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005, |
75346 | 4 ;; 2006, 2007 Free Software Foundation, Inc. |
30805
3cfd3dc474b8
Change authors' mail address.
Gerd Moellmann <gerd@gnu.org>
parents:
28571
diff
changeset
|
5 ;; Author: Daniel LaLiberte <liberte@holonexus.org> |
6491 | 6 ;; Keywords: lisp, tools, maint |
7 | |
8 ;; LCD Archive Entry: | |
30805
3cfd3dc474b8
Change authors' mail address.
Gerd Moellmann <gerd@gnu.org>
parents:
28571
diff
changeset
|
9 ;; cl-specs.el|Daniel LaLiberte|liberte@holonexus.org |
6491 | 10 ;; |Edebug specs for cl.el |
11 | |
12 ;; This file is part of GNU Emacs. | |
13 | |
14 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
15 ;; it under the terms of the GNU General Public License as published by | |
16 ;; the Free Software Foundation; either version 2, or (at your option) | |
17 ;; any later version. | |
18 | |
19 ;; GNU Emacs is distributed in the hope that it will be useful, | |
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 ;; GNU General Public License for more details. | |
23 | |
24 ;; You should have received a copy of the GNU General Public License | |
14169 | 25 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 26 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
27 ;; Boston, MA 02110-1301, USA. | |
6491 | 28 |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
30805
diff
changeset
|
29 ;;; Commentary: |
6491 | 30 |
31 ;; These specs are to be used with edebug.el version 3.3 or later and | |
32 ;; cl.el version 2.03 or later, by Dave Gillespie <daveg@synaptics.com>. | |
33 | |
14040 | 34 ;; This file need not be byte-compiled, but it shouldn't hurt. |
6491 | 35 |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
30805
diff
changeset
|
36 ;;; Code: |
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
30805
diff
changeset
|
37 |
6491 | 38 (provide 'cl-specs) |
39 ;; Do the above provide before the following require. | |
40 ;; Otherwise if you load this before edebug if cl is already loaded | |
41 ;; an infinite loading loop would occur. | |
42 (require 'edebug) | |
43 | |
44 ;; Blocks | |
45 | |
46 (def-edebug-spec block (symbolp body)) | |
47 (def-edebug-spec return (&optional form)) | |
48 (def-edebug-spec return-from (symbolp &optional form)) | |
49 | |
50 ;; Loops | |
51 | |
52 (def-edebug-spec case (form &rest (sexp body))) | |
53 (def-edebug-spec ecase case) | |
54 (def-edebug-spec do | |
55 ((&rest &or symbolp (symbolp &optional form form)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
56 (form body) |
6491 | 57 cl-declarations body)) |
58 (def-edebug-spec do* do) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
59 (def-edebug-spec dolist |
6491 | 60 ((symbolp form &optional form) cl-declarations body)) |
61 (def-edebug-spec dotimes dolist) | |
62 (def-edebug-spec do-symbols | |
63 ((symbolp &optional form form) cl-declarations body)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
64 (def-edebug-spec do-all-symbols |
6491 | 65 ((symbolp &optional form) cl-declarations body)) |
66 | |
67 ;; Multiple values | |
68 | |
69 (def-edebug-spec multiple-value-list (form)) | |
70 (def-edebug-spec multiple-value-call (function-form body)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
71 (def-edebug-spec multiple-value-bind |
6491 | 72 ((&rest symbolp) form cl-declarations body)) |
73 (def-edebug-spec multiple-value-setq ((&rest symbolp) form)) | |
74 (def-edebug-spec multiple-value-prog1 (form body)) | |
75 | |
76 ;; Bindings | |
77 | |
78 (def-edebug-spec lexical-let let) | |
79 (def-edebug-spec lexical-let* let) | |
80 | |
81 (def-edebug-spec psetq setq) | |
82 (def-edebug-spec progv (form form body)) | |
83 | |
84 (def-edebug-spec flet ((&rest (defun*)) cl-declarations body)) | |
85 (def-edebug-spec labels flet) | |
86 | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
87 (def-edebug-spec macrolet |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
88 ((&rest (&define name (&rest arg) cl-declarations-or-string def-body)) |
6491 | 89 cl-declarations body)) |
90 | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
91 (def-edebug-spec symbol-macrolet |
6491 | 92 ((&rest (symbol sexp)) cl-declarations body)) |
93 | |
94 (def-edebug-spec destructuring-bind | |
95 (&define cl-macro-list form cl-declarations def-body)) | |
96 | |
97 ;; Setf | |
98 | |
99 (def-edebug-spec setf (&rest [place form])) ;; sexp is not specific enough | |
100 (def-edebug-spec psetf setf) | |
101 | |
102 (def-edebug-spec letf ;; *not* available in Common Lisp | |
103 ((&rest (gate place &optional form)) | |
104 body)) | |
105 (def-edebug-spec letf* letf) | |
106 | |
107 | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
108 (def-edebug-spec defsetf |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
109 (&define name |
6491 | 110 [&or [symbolp &optional stringp] |
111 [cl-lambda-list (symbolp)]] | |
112 cl-declarations-or-string def-body)) | |
113 | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
114 (def-edebug-spec define-setf-method |
6491 | 115 (&define name cl-lambda-list cl-declarations-or-string def-body)) |
116 | |
117 (def-edebug-spec define-modify-macro | |
118 (&define name cl-lambda-list ;; should exclude &key | |
119 symbolp &optional stringp)) | |
120 | |
121 (def-edebug-spec callf (function* place &rest form)) | |
122 (def-edebug-spec callf2 (function* form place &rest form)) | |
123 | |
124 ;; Other operations on places | |
125 | |
126 (def-edebug-spec remf (place form)) | |
127 | |
128 (def-edebug-spec incf (place &optional form)) | |
129 (def-edebug-spec decf incf) | |
28571 | 130 (def-edebug-spec push (form place)) ; different for CL |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
131 (def-edebug-spec pushnew |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
132 (form place &rest |
6491 | 133 &or [[&or ":test" ":test-not" ":key"] function-form] |
51582
7e55c8dd414b
(pushnew): Use keywordp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
134 [keywordp form])) |
28571 | 135 (def-edebug-spec pop (place)) ; different for CL |
6491 | 136 |
137 (def-edebug-spec shiftf (&rest place)) ;; really [&rest place] form | |
138 (def-edebug-spec rotatef (&rest place)) | |
139 | |
140 | |
141 ;; Functions with function args. These are only useful if the | |
142 ;; function arg is quoted with ' instead of function. | |
143 | |
144 (def-edebug-spec some (function-form form &rest form)) | |
145 (def-edebug-spec every some) | |
146 (def-edebug-spec notany some) | |
147 (def-edebug-spec notevery some) | |
148 | |
149 ;; Mapping | |
150 | |
151 (def-edebug-spec map (form function-form form &rest form)) | |
152 (def-edebug-spec maplist (function-form form &rest form)) | |
153 (def-edebug-spec mapc maplist) | |
154 (def-edebug-spec mapl maplist) | |
155 (def-edebug-spec mapcan maplist) | |
156 (def-edebug-spec mapcon maplist) | |
157 | |
158 ;; Sequences | |
159 | |
160 (def-edebug-spec reduce (function-form form &rest form)) | |
161 | |
162 ;; Types and assertions | |
163 | |
164 (def-edebug-spec cl-type-spec (sexp)) ;; not worth the trouble to specify, yet. | |
165 | |
166 (def-edebug-spec deftype defmacro*) | |
167 (def-edebug-spec check-type (place cl-type-spec &optional stringp)) | |
168 ;; (def-edebug-spec assert (form &optional form stringp &rest form)) | |
169 (def-edebug-spec assert (form &rest form)) | |
170 (def-edebug-spec typecase (form &rest ([&or cl-type-spec "otherwise"] body))) | |
171 (def-edebug-spec etypecase typecase) | |
172 | |
173 (def-edebug-spec ignore-errors t) | |
174 | |
175 ;; Time of Evaluation | |
176 | |
177 (def-edebug-spec eval-when | |
178 ((&rest &or "compile" "load" "eval") body)) | |
179 (def-edebug-spec load-time-value (form &optional &or "t" "nil")) | |
180 | |
181 ;; Declarations | |
182 | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
183 (def-edebug-spec cl-decl-spec |
6491 | 184 ((symbolp &rest sexp))) |
185 | |
186 (def-edebug-spec cl-declarations | |
187 (&rest ("declare" &rest cl-decl-spec))) | |
188 | |
189 (def-edebug-spec cl-declarations-or-string | |
190 (&or stringp cl-declarations)) | |
191 | |
192 (def-edebug-spec declaim (&rest cl-decl-spec)) | |
193 (def-edebug-spec declare (&rest cl-decl-spec)) ;; probably not needed. | |
194 (def-edebug-spec locally (cl-declarations &rest form)) | |
195 (def-edebug-spec the (cl-type-spec form)) | |
196 | |
197 ;;====================================================== | |
198 ;; Lambda things | |
199 | |
200 (def-edebug-spec cl-lambda-list | |
201 (([&rest arg] | |
202 [&optional ["&optional" cl-&optional-arg &rest cl-&optional-arg]] | |
203 [&optional ["&rest" arg]] | |
204 [&optional ["&key" [cl-&key-arg &rest cl-&key-arg] | |
27526
a71509a64082
(cl-lambda-list, cl-macro-list)
Gerd Moellmann <gerd@gnu.org>
parents:
23513
diff
changeset
|
205 &optional "&allow-other-keys"]] |
6491 | 206 [&optional ["&aux" &rest |
207 &or (symbolp &optional def-form) symbolp]] | |
208 ))) | |
209 | |
210 (def-edebug-spec cl-&optional-arg | |
211 (&or (arg &optional def-form arg) arg)) | |
212 | |
213 (def-edebug-spec cl-&key-arg | |
214 (&or ([&or (symbolp arg) arg] &optional def-form arg) arg)) | |
215 | |
216 ;; The lambda list for macros is different from that of normal lambdas. | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
217 ;; Note that &environment is only allowed as first or last items in the |
6491 | 218 ;; top level list. |
219 | |
220 (def-edebug-spec cl-macro-list | |
221 (([&optional "&environment" arg] | |
222 [&rest cl-macro-arg] | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
223 [&optional ["&optional" &rest |
6491 | 224 &or (cl-macro-arg &optional def-form cl-macro-arg) arg]] |
225 [&optional [[&or "&rest" "&body"] cl-macro-arg]] | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
226 [&optional ["&key" [&rest |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
227 [&or ([&or (symbolp cl-macro-arg) arg] |
6491 | 228 &optional def-form cl-macro-arg) |
229 arg]] | |
27526
a71509a64082
(cl-lambda-list, cl-macro-list)
Gerd Moellmann <gerd@gnu.org>
parents:
23513
diff
changeset
|
230 &optional "&allow-other-keys"]] |
6491 | 231 [&optional ["&aux" &rest |
232 &or (symbolp &optional def-form) symbolp]] | |
233 [&optional "&environment" arg] | |
234 ))) | |
235 | |
236 (def-edebug-spec cl-macro-arg | |
237 (&or arg cl-macro-list1)) | |
238 | |
239 (def-edebug-spec cl-macro-list1 | |
240 (([&optional "&whole" arg] ;; only allowed at lower levels | |
241 [&rest cl-macro-arg] | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
242 [&optional ["&optional" &rest |
6491 | 243 &or (cl-macro-arg &optional def-form cl-macro-arg) arg]] |
244 [&optional [[&or "&rest" "&body"] cl-macro-arg]] | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
245 [&optional ["&key" [&rest |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
246 [&or ([&or (symbolp cl-macro-arg) arg] |
6491 | 247 &optional def-form cl-macro-arg) |
248 arg]] | |
27526
a71509a64082
(cl-lambda-list, cl-macro-list)
Gerd Moellmann <gerd@gnu.org>
parents:
23513
diff
changeset
|
249 &optional "&allow-other-keys"]] |
6491 | 250 [&optional ["&aux" &rest |
251 &or (symbolp &optional def-form) symbolp]] | |
252 . [&or arg nil]))) | |
253 | |
254 | |
255 (def-edebug-spec defun* | |
256 ;; Same as defun but use cl-lambda-list. | |
257 (&define [&or name | |
258 ("setf" :name setf name)] | |
259 cl-lambda-list | |
260 cl-declarations-or-string | |
261 [&optional ("interactive" interactive)] | |
262 def-body)) | |
263 (def-edebug-spec defsubst* defun*) | |
264 | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
265 (def-edebug-spec defmacro* |
6491 | 266 (&define name cl-macro-list cl-declarations-or-string def-body)) |
267 (def-edebug-spec define-compiler-macro defmacro*) | |
268 | |
269 | |
270 (def-edebug-spec function* | |
271 (&or symbolp cl-lambda-expr)) | |
272 | |
273 (def-edebug-spec cl-lambda-expr | |
274 (&define ("lambda" cl-lambda-list | |
275 ;;cl-declarations-or-string | |
276 ;;[&optional ("interactive" interactive)] | |
277 def-body))) | |
278 | |
279 ;; Redefine function-form to also match function* | |
280 (def-edebug-spec function-form | |
281 ;; form at the end could also handle "function", | |
282 ;; but recognize it specially to avoid wrapping function forms. | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
283 (&or ([&or "quote" "function"] &or symbolp lambda-expr) |
23513
0a3fa36b323b
(function-form): Fix spec for
Andreas Schwab <schwab@suse.de>
parents:
14169
diff
changeset
|
284 ("function*" function*) |
6491 | 285 form)) |
286 | |
287 ;;====================================================== | |
288 ;; Structures | |
289 ;; (def-edebug-spec defstruct (&rest sexp)) would be sufficient, but... | |
290 | |
291 ;; defstruct may contain forms that are evaluated when a structure is created. | |
292 (def-edebug-spec defstruct | |
293 (&define ; makes top-level form not be wrapped | |
294 [&or symbolp | |
295 (gate | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
296 symbolp &rest |
6491 | 297 (&or [":conc-name" &or stringp "nil"] |
298 [":constructor" symbolp &optional cl-lambda-list] | |
299 [":copier" symbolp] | |
300 [":predicate" symbolp] | |
301 [":include" symbolp &rest sexp];; not finished | |
302 ;; The following are not supported. | |
303 ;; [":print-function" ...] | |
304 ;; [":type" ...] | |
305 ;; [":initial-offset" ...] | |
306 ))] | |
307 [&optional stringp] | |
308 ;; All the above is for the following def-form. | |
309 &rest &or symbolp (symbolp def-form &optional ":read-only" sexp))) | |
310 | |
311 ;;====================================================== | |
312 ;; Loop | |
313 | |
314 ;; The loop macro is very complex, and a full spec is found below. | |
315 ;; The following spec only minimally specifies that | |
316 ;; parenthesized forms are executable, but single variables used as | |
317 ;; expressions will be missed. You may want to use this if the full | |
318 ;; spec causes problems for you. | |
319 | |
320 (def-edebug-spec loop | |
321 (&rest &or symbolp form)) | |
322 | |
323 ;; Below is a complete spec for loop, in several parts that correspond | |
324 ;; to the syntax given in CLtL2. The specs do more than specify where | |
325 ;; the forms are; it also specifies, as much as Edebug allows, all the | |
326 ;; syntactically legal loop clauses. The disadvantage of this | |
327 ;; completeness is rigidity, but the "for ... being" clause allows | |
328 ;; arbitrary extensions of the form: [symbolp &rest &or symbolp form]. | |
329 | |
330 (def-edebug-spec loop | |
331 ([&optional ["named" symbolp]] | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
332 [&rest |
6491 | 333 &or |
334 ["repeat" form] | |
335 loop-for-as | |
336 loop-with | |
337 loop-initial-final] | |
338 [&rest loop-clause] | |
339 )) | |
340 | |
341 (def-edebug-spec loop-with | |
342 ("with" loop-var | |
343 loop-type-spec | |
344 [&optional ["=" form]] | |
345 &rest ["and" loop-var | |
346 loop-type-spec | |
347 [&optional ["=" form]]])) | |
348 | |
349 (def-edebug-spec loop-for-as | |
350 ([&or "for" "as"] loop-for-as-subclause | |
351 &rest ["and" loop-for-as-subclause])) | |
352 | |
353 (def-edebug-spec loop-for-as-subclause | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
354 (loop-var |
6491 | 355 loop-type-spec |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
356 &or |
6491 | 357 [[&or "in" "on" "in-ref" "across-ref"] |
358 form &optional ["by" function-form]] | |
359 | |
360 ["=" form &optional ["then" form]] | |
361 ["across" form] | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
362 ["being" |
6491 | 363 [&or "the" "each"] |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
364 &or |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
365 [[&or "element" "elements"] |
6491 | 366 [&or "of" "in" "of-ref"] form |
367 &optional "using" ["index" symbolp]];; is this right? | |
368 [[&or "hash-key" "hash-keys" | |
369 "hash-value" "hash-values"] | |
370 [&or "of" "in"] | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
371 hash-table-p &optional ["using" ([&or "hash-value" "hash-values" |
6491 | 372 "hash-key" "hash-keys"] sexp)]] |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
373 |
6491 | 374 [[&or "symbol" "present-symbol" "external-symbol" |
375 "symbols" "present-symbols" "external-symbols"] | |
376 [&or "in" "of"] package-p] | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
377 |
6491 | 378 ;; Extensions for Emacs Lisp, including Lucid Emacs. |
379 [[&or "frame" "frames" | |
380 "screen" "screens" | |
381 "buffer" "buffers"]] | |
382 | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
383 [[&or "window" "windows"] |
6491 | 384 [&or "of" "in"] form] |
385 | |
386 [[&or "overlay" "overlays" | |
387 "extent" "extents"] | |
388 [&or "of" "in"] form | |
389 &optional [[&or "from" "to"] form]] | |
390 | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
391 [[&or "interval" "intervals"] |
6491 | 392 [&or "in" "of"] form |
393 &optional [[&or "from" "to"] form] | |
394 ["property" form]] | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
395 |
6491 | 396 [[&or "key-code" "key-codes" |
397 "key-seq" "key-seqs" | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
398 "key-binding" "key-bindings"] |
6491 | 399 [&or "in" "of"] form |
400 &optional ["using" ([&or "key-code" "key-codes" | |
401 "key-seq" "key-seqs" | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
402 "key-binding" "key-bindings"] |
6491 | 403 sexp)]] |
404 ;; For arbitrary extensions, recognize anything else. | |
405 [symbolp &rest &or symbolp form] | |
406 ] | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
407 |
6491 | 408 ;; arithmetic - must be last since all parts are optional. |
409 [[&optional [[&or "from" "downfrom" "upfrom"] form]] | |
410 [&optional [[&or "to" "downto" "upto" "below" "above"] form]] | |
411 [&optional ["by" form]] | |
412 ])) | |
413 | |
414 (def-edebug-spec loop-initial-final | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
415 (&or ["initially" |
14040 | 416 ;; [&optional &or "do" "doing"] ;; CLtL2 doesn't allow this. |
6491 | 417 &rest loop-non-atomic-expr] |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
418 ["finally" &or |
6491 | 419 [[&optional &or "do" "doing"] &rest loop-non-atomic-expr] |
420 ["return" form]])) | |
421 | |
422 (def-edebug-spec loop-and-clause | |
423 (loop-clause &rest ["and" loop-clause])) | |
424 | |
425 (def-edebug-spec loop-clause | |
426 (&or | |
427 [[&or "while" "until" "always" "never" "thereis"] form] | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
428 |
6491 | 429 [[&or "collect" "collecting" |
430 "append" "appending" | |
431 "nconc" "nconcing" | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
432 "concat" "vconcat"] form |
6491 | 433 [&optional ["into" loop-var]]] |
434 | |
435 [[&or "count" "counting" | |
436 "sum" "summing" | |
437 "maximize" "maximizing" | |
438 "minimize" "minimizing"] form | |
439 [&optional ["into" loop-var]] | |
440 loop-type-spec] | |
441 | |
442 [[&or "if" "when" "unless"] | |
443 form loop-and-clause | |
444 [&optional ["else" loop-and-clause]] | |
445 [&optional "end"]] | |
446 | |
447 [[&or "do" "doing"] &rest loop-non-atomic-expr] | |
448 | |
449 ["return" form] | |
450 loop-initial-final | |
451 )) | |
452 | |
453 (def-edebug-spec loop-non-atomic-expr | |
454 ([¬ atom] form)) | |
455 | |
456 (def-edebug-spec loop-var | |
457 ;; The symbolp must be last alternative to recognize e.g. (a b . c) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
458 ;; loop-var => |
6491 | 459 ;; (loop-var . [&or nil loop-var]) |
460 ;; (symbolp . [&or nil loop-var]) | |
461 ;; (symbolp . loop-var) | |
462 ;; (symbolp . (symbolp . [&or nil loop-var])) | |
463 ;; (symbolp . (symbolp . loop-var)) | |
464 ;; (symbolp . (symbolp . symbolp)) == (symbolp symbolp . symbolp) | |
465 (&or (loop-var . [&or nil loop-var]) [gate symbolp])) | |
466 | |
467 (def-edebug-spec loop-type-spec | |
468 (&optional ["of-type" loop-d-type-spec])) | |
469 | |
470 (def-edebug-spec loop-d-type-spec | |
471 (&or (loop-d-type-spec . [&or nil loop-d-type-spec]) cl-type-spec)) | |
472 | |
52401 | 473 ;;; arch-tag: b29aa3c2-cf67-4af8-9ee1-318fea61b478 |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
30805
diff
changeset
|
474 ;;; cl-specs.el ends here |