(dcl-mode-syntax-table): Add entry for backslash.
[bpt/emacs.git] / lisp / emacs-lisp / cl.el
1 ;;; cl.el --- Common Lisp extensions for Emacs -*-byte-compile-dynamic: t;-*-
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
13 ;; the Free Software Foundation; either version 2, or (at your option)
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
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.
25
26 ;;; Commentary:
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 always be present.
39
40
41 ;;; Future notes:
42
43 ;; Once Emacs 19 becomes standard, many things in this package which are
44 ;; messy for reasons of compatibility can be greatly simplified. For now,
45 ;; I prefer to maintain one unified version.
46
47
48 ;;; Change Log:
49
50 ;; Version 2.02 (30 Jul 93):
51 ;; * Added "cl-compat.el" file, extra compatibility with old package.
52 ;; * Added `lexical-let' and `lexical-let*'.
53 ;; * Added `define-modify-macro', `callf', and `callf2'.
54 ;; * Added `ignore-errors'.
55 ;; * Changed `(setf (nthcdr N PLACE) X)' to work when N is zero.
56 ;; * Merged `*gentemp-counter*' into `*gensym-counter*'.
57 ;; * Extended `subseq' to allow negative START and END like `substring'.
58 ;; * Added `in-ref', `across-ref', `elements of-ref' loop clauses.
59 ;; * Added `concat', `vconcat' loop clauses.
60 ;; * Cleaned up a number of compiler warnings.
61
62 ;; Version 2.01 (7 Jul 93):
63 ;; * Added support for FSF version of Emacs 19.
64 ;; * Added `add-hook' for Emacs 18 users.
65 ;; * Added `defsubst*' and `symbol-macrolet'.
66 ;; * Added `maplist', `mapc', `mapl', `mapcan', `mapcon'.
67 ;; * Added `map', `concatenate', `reduce', `merge'.
68 ;; * Added `revappend', `nreconc', `tailp', `tree-equal'.
69 ;; * Added `assert', `check-type', `typecase', `typep', and `deftype'.
70 ;; * Added destructuring and `&environment' support to `defmacro*'.
71 ;; * Added destructuring to `loop', and added the following clauses:
72 ;; `elements', `frames', `overlays', `intervals', `buffers', `key-seqs'.
73 ;; * Renamed `delete' to `delete*' and `remove' to `remove*'.
74 ;; * Completed support for all keywords in `remove*', `substitute', etc.
75 ;; * Added `most-positive-float' and company.
76 ;; * Fixed hash tables to work with latest Lucid Emacs.
77 ;; * `proclaim' forms are no longer compile-time-evaluating; use `declaim'.
78 ;; * Syntax for `warn' declarations has changed.
79 ;; * Improved implementation of `random*'.
80 ;; * Moved most sequence functions to a new file, cl-seq.el.
81 ;; * Moved `eval-when' into cl-macs.el.
82 ;; * Moved `pushnew' and `adjoin' to cl.el for most common cases.
83 ;; * Moved `provide' forms down to ends of files.
84 ;; * Changed expansion of `pop' to something that compiles to better code.
85 ;; * Changed so that no patch is required for Emacs 19 byte compiler.
86 ;; * Made more things dependent on `optimize' declarations.
87 ;; * Added a partial implementation of struct print functions.
88 ;; * Miscellaneous minor changes.
89
90 ;; Version 2.00:
91 ;; * First public release of this package.
92
93
94 ;;; Code:
95
96 (defvar cl-optimize-speed 1)
97 (defvar cl-optimize-safety 1)
98
99
100 ;;;###autoload
101 (defvar custom-print-functions nil
102 "This is a list of functions that format user objects for printing.
103 Each function is called in turn with three arguments: the object, the
104 stream, and the print level (currently ignored). If it is able to
105 print the object it returns true; otherwise it returns nil and the
106 printer proceeds to the next function on the list.
107
108 This variable is not used at present, but it is defined in hopes that
109 a future Emacs interpreter will be able to use it.")
110
111 (add-hook 'cl-unload-hook 'cl-cannot-unload)
112 (defun cl-cannot-unload ()
113 (error "Cannot unload the feature `cl'"))
114
115 ;;; Predicates.
116
117 (defun eql (a b) ; See compiler macro in cl-macs.el
118 "T if the two args are the same Lisp object.
119 Floating-point numbers of equal value are `eql', but they may not be `eq'."
120 (if (numberp a)
121 (equal a b)
122 (eq a b)))
123
124
125 ;;; Generalized variables. These macros are defined here so that they
126 ;;; can safely be used in .emacs files.
127
128 (defmacro incf (place &optional x)
129 "Increment PLACE by X (1 by default).
130 PLACE may be a symbol, or any generalized variable allowed by `setf'.
131 The return value is the incremented value of PLACE."
132 (if (symbolp place)
133 (list 'setq place (if x (list '+ place x) (list '1+ place)))
134 (list 'callf '+ place (or x 1))))
135
136 (defmacro decf (place &optional x)
137 "Decrement PLACE by X (1 by default).
138 PLACE may be a symbol, or any generalized variable allowed by `setf'.
139 The return value is the decremented value of PLACE."
140 (if (symbolp place)
141 (list 'setq place (if x (list '- place x) (list '1- place)))
142 (list 'callf '- place (or x 1))))
143
144 (defmacro pop (place)
145 "Remove and return the head of the list stored in PLACE.
146 Analogous to (prog1 (car PLACE) (setf PLACE (cdr PLACE))), though more
147 careful about evaluating each argument only once and in the right order.
148 PLACE may be a symbol, or any generalized variable allowed by `setf'."
149 (if (symbolp place)
150 (list 'car (list 'prog1 place (list 'setq place (list 'cdr place))))
151 (cl-do-pop place)))
152
153 (defmacro push (x place)
154 "Insert X at the head of the list stored in PLACE.
155 Analogous to (setf PLACE (cons X PLACE)), though more careful about
156 evaluating each argument only once and in the right order. PLACE may
157 be a symbol, or any generalized variable allowed by `setf'."
158 (if (symbolp place) (list 'setq place (list 'cons x place))
159 (list 'callf2 'cons x place)))
160
161 (defmacro pushnew (x place &rest keys)
162 "(pushnew X PLACE): insert X at the head of the list if not already there.
163 Like (push X PLACE), except that the list is unmodified if X is `eql' to
164 an element already on the list.
165 Keywords supported: :test :test-not :key"
166 (if (symbolp place) (list 'setq place (list* 'adjoin x place keys))
167 (list* 'callf2 'adjoin x place keys)))
168
169 (defun cl-set-elt (seq n val)
170 (if (listp seq) (setcar (nthcdr n seq) val) (aset seq n val)))
171
172 (defun cl-set-nthcdr (n list x)
173 (if (<= n 0) x (setcdr (nthcdr (1- n) list) x) list))
174
175 (defun cl-set-buffer-substring (start end val)
176 (save-excursion (delete-region start end)
177 (goto-char start)
178 (insert val)
179 val))
180
181 (defun cl-set-substring (str start end val)
182 (if end (if (< end 0) (incf end (length str)))
183 (setq end (length str)))
184 (if (< start 0) (incf start (length str)))
185 (concat (and (> start 0) (substring str 0 start))
186 val
187 (and (< end (length str)) (substring str end))))
188
189
190 ;;; Control structures.
191
192 ;;; These macros are so simple and so often-used that it's better to have
193 ;;; them all the time than to load them from cl-macs.el.
194
195 (defun cl-map-extents (&rest cl-args)
196 (apply 'cl-map-overlays cl-args))
197
198
199 ;;; Blocks and exits.
200
201 (defalias 'cl-block-wrapper 'identity)
202 (defalias 'cl-block-throw 'throw)
203
204
205 ;;; Multiple values. True multiple values are not supported, or even
206 ;;; simulated. Instead, multiple-value-bind and friends simply expect
207 ;;; the target form to return the values as a list.
208
209 (defsubst values (&rest values)
210 "Return multiple values, Common Lisp style.
211 The arguments of `values' are the values
212 that the containing function should return."
213 values)
214
215 (defsubst values-list (list)
216 "Return multiple values, Common Lisp style, taken from a list.
217 LIST specifies the list of values
218 that the containing function should return."
219 list)
220
221 (defsubst multiple-value-list (expression)
222 "Return a list of the multiple values produced by EXPRESSION.
223 This handles multiple values in Common Lisp style, but it does not
224 work right when EXPRESSION calls an ordinary Emacs Lisp function
225 that returns just one value."
226 expression)
227
228 (defsubst multiple-value-apply (function expression)
229 "Evaluate EXPRESSION to get multiple values and apply FUNCTION to them.
230 This handles multiple values in Common Lisp style, but it does not work
231 right when EXPRESSION calls an ordinary Emacs Lisp function that returns just
232 one value."
233 (apply function expression))
234
235 (defalias 'multiple-value-call 'apply
236 "Apply FUNCTION to ARGUMENTS, taking multiple values into account.
237 This implementation only handles the case where there is only one argument.")
238
239 (defsubst nth-value (n expression)
240 "Evaluate EXPRESSION to get multiple values and return the Nth one.
241 This handles multiple values in Common Lisp style, but it does not work
242 right when EXPRESSION calls an ordinary Emacs Lisp function that returns just
243 one value."
244 (nth n expression))
245
246 ;;; Macros.
247
248 (defvar cl-macro-environment nil)
249 (defvar cl-old-macroexpand (prog1 (symbol-function 'macroexpand)
250 (defalias 'macroexpand 'cl-macroexpand)))
251
252 (defun cl-macroexpand (cl-macro &optional cl-env)
253 "Return result of expanding macros at top level of FORM.
254 If FORM is not a macro call, it is returned unchanged.
255 Otherwise, the macro is expanded and the expansion is considered
256 in place of FORM. When a non-macro-call results, it is returned.
257
258 The second optional arg ENVIRONMENT specifies an environment of macro
259 definitions to shadow the loaded ones for use in file byte-compilation."
260 (let ((cl-macro-environment cl-env))
261 (while (progn (setq cl-macro (funcall cl-old-macroexpand cl-macro cl-env))
262 (and (symbolp cl-macro)
263 (cdr (assq (symbol-name cl-macro) cl-env))))
264 (setq cl-macro (cadr (assq (symbol-name cl-macro) cl-env))))
265 cl-macro))
266
267
268 ;;; Declarations.
269
270 (defvar cl-compiling-file nil)
271 (defun cl-compiling-file ()
272 (or cl-compiling-file
273 (and (boundp 'outbuffer) (bufferp (symbol-value 'outbuffer))
274 (equal (buffer-name (symbol-value 'outbuffer))
275 " *Compiler Output*"))))
276
277 (defvar cl-proclaims-deferred nil)
278
279 (defun proclaim (spec)
280 (if (fboundp 'cl-do-proclaim) (cl-do-proclaim spec t)
281 (push spec cl-proclaims-deferred))
282 nil)
283
284 (defmacro declaim (&rest specs)
285 (let ((body (mapcar (function (lambda (x) (list 'proclaim (list 'quote x))))
286 specs)))
287 (if (cl-compiling-file) (list* 'eval-when '(compile load eval) body)
288 (cons 'progn body)))) ; avoid loading cl-macs.el for eval-when
289
290
291 ;;; Symbols.
292
293 (defun cl-random-time ()
294 (let* ((time (copy-sequence (current-time-string))) (i (length time)) (v 0))
295 (while (>= (decf i) 0) (setq v (+ (* v 3) (aref time i))))
296 v))
297
298 (defvar *gensym-counter* (* (logand (cl-random-time) 1023) 100))
299
300
301 ;;; Numbers.
302
303 (defun floatp-safe (x)
304 "T if OBJECT is a floating point number.
305 On Emacs versions that lack floating-point support, this function
306 always returns nil."
307 (and (numberp x) (not (integerp x))))
308
309 (defun plusp (x)
310 "T if NUMBER is positive."
311 (> x 0))
312
313 (defun minusp (x)
314 "T if NUMBER is negative."
315 (< x 0))
316
317 (defun oddp (x)
318 "T if INTEGER is odd."
319 (eq (logand x 1) 1))
320
321 (defun evenp (x)
322 "T if INTEGER is even."
323 (eq (logand x 1) 0))
324
325 (defvar *random-state* (vector 'cl-random-state-tag -1 30 (cl-random-time)))
326
327 ;;; The following are actually set by cl-float-limits.
328 (defconst most-positive-float nil)
329 (defconst most-negative-float nil)
330 (defconst least-positive-float nil)
331 (defconst least-negative-float nil)
332 (defconst least-positive-normalized-float nil)
333 (defconst least-negative-normalized-float nil)
334 (defconst float-epsilon nil)
335 (defconst float-negative-epsilon nil)
336
337
338 ;;; Sequence functions.
339
340 (defalias 'copy-seq 'copy-sequence)
341
342 (defun mapcar* (cl-func cl-x &rest cl-rest)
343 "Apply FUNCTION to each element of SEQ, and make a list of the results.
344 If there are several SEQs, FUNCTION is called with that many arguments,
345 and mapping stops as soon as the shortest list runs out. With just one
346 SEQ, this is like `mapcar'. With several, it is like the Common Lisp
347 `mapcar' function extended to arbitrary sequence types."
348 (if cl-rest
349 (if (or (cdr cl-rest) (nlistp cl-x) (nlistp (car cl-rest)))
350 (cl-mapcar-many cl-func (cons cl-x cl-rest))
351 (let ((cl-res nil) (cl-y (car cl-rest)))
352 (while (and cl-x cl-y)
353 (push (funcall cl-func (pop cl-x) (pop cl-y)) cl-res))
354 (nreverse cl-res)))
355 (mapcar cl-func cl-x)))
356
357 (defalias 'svref 'aref)
358
359 ;;; List functions.
360
361 (defalias 'first 'car)
362 (defalias 'second 'cadr)
363 (defalias 'rest 'cdr)
364 (defalias 'endp 'null)
365
366 (defun third (x)
367 "Return the third element of the list X."
368 (car (cdr (cdr x))))
369
370 (defun fourth (x)
371 "Return the fourth element of the list X."
372 (nth 3 x))
373
374 (defun fifth (x)
375 "Return the fifth element of the list X."
376 (nth 4 x))
377
378 (defun sixth (x)
379 "Return the sixth element of the list X."
380 (nth 5 x))
381
382 (defun seventh (x)
383 "Return the seventh element of the list X."
384 (nth 6 x))
385
386 (defun eighth (x)
387 "Return the eighth element of the list X."
388 (nth 7 x))
389
390 (defun ninth (x)
391 "Return the ninth element of the list X."
392 (nth 8 x))
393
394 (defun tenth (x)
395 "Return the tenth element of the list X."
396 (nth 9 x))
397
398 (defun caaar (x)
399 "Return the `car' of the `car' of the `car' of X."
400 (car (car (car x))))
401
402 (defun caadr (x)
403 "Return the `car' of the `car' of the `cdr' of X."
404 (car (car (cdr x))))
405
406 (defun cadar (x)
407 "Return the `car' of the `cdr' of the `car' of X."
408 (car (cdr (car x))))
409
410 (defun caddr (x)
411 "Return the `car' of the `cdr' of the `cdr' of X."
412 (car (cdr (cdr x))))
413
414 (defun cdaar (x)
415 "Return the `cdr' of the `car' of the `car' of X."
416 (cdr (car (car x))))
417
418 (defun cdadr (x)
419 "Return the `cdr' of the `car' of the `cdr' of X."
420 (cdr (car (cdr x))))
421
422 (defun cddar (x)
423 "Return the `cdr' of the `cdr' of the `car' of X."
424 (cdr (cdr (car x))))
425
426 (defun cdddr (x)
427 "Return the `cdr' of the `cdr' of the `cdr' of X."
428 (cdr (cdr (cdr x))))
429
430 (defun caaaar (x)
431 "Return the `car' of the `car' of the `car' of the `car' of X."
432 (car (car (car (car x)))))
433
434 (defun caaadr (x)
435 "Return the `car' of the `car' of the `car' of the `cdr' of X."
436 (car (car (car (cdr x)))))
437
438 (defun caadar (x)
439 "Return the `car' of the `car' of the `cdr' of the `car' of X."
440 (car (car (cdr (car x)))))
441
442 (defun caaddr (x)
443 "Return the `car' of the `car' of the `cdr' of the `cdr' of X."
444 (car (car (cdr (cdr x)))))
445
446 (defun cadaar (x)
447 "Return the `car' of the `cdr' of the `car' of the `car' of X."
448 (car (cdr (car (car x)))))
449
450 (defun cadadr (x)
451 "Return the `car' of the `cdr' of the `car' of the `cdr' of X."
452 (car (cdr (car (cdr x)))))
453
454 (defun caddar (x)
455 "Return the `car' of the `cdr' of the `cdr' of the `car' of X."
456 (car (cdr (cdr (car x)))))
457
458 (defun cadddr (x)
459 "Return the `car' of the `cdr' of the `cdr' of the `cdr' of X."
460 (car (cdr (cdr (cdr x)))))
461
462 (defun cdaaar (x)
463 "Return the `cdr' of the `car' of the `car' of the `car' of X."
464 (cdr (car (car (car x)))))
465
466 (defun cdaadr (x)
467 "Return the `cdr' of the `car' of the `car' of the `cdr' of X."
468 (cdr (car (car (cdr x)))))
469
470 (defun cdadar (x)
471 "Return the `cdr' of the `car' of the `cdr' of the `car' of X."
472 (cdr (car (cdr (car x)))))
473
474 (defun cdaddr (x)
475 "Return the `cdr' of the `car' of the `cdr' of the `cdr' of X."
476 (cdr (car (cdr (cdr x)))))
477
478 (defun cddaar (x)
479 "Return the `cdr' of the `cdr' of the `car' of the `car' of X."
480 (cdr (cdr (car (car x)))))
481
482 (defun cddadr (x)
483 "Return the `cdr' of the `cdr' of the `car' of the `cdr' of X."
484 (cdr (cdr (car (cdr x)))))
485
486 (defun cdddar (x)
487 "Return the `cdr' of the `cdr' of the `cdr' of the `car' of X."
488 (cdr (cdr (cdr (car x)))))
489
490 (defun cddddr (x)
491 "Return the `cdr' of the `cdr' of the `cdr' of the `cdr' of X."
492 (cdr (cdr (cdr (cdr x)))))
493
494 ;;(defun last* (x &optional n)
495 ;; "Returns the last link in the list LIST.
496 ;;With optional argument N, returns Nth-to-last link (default 1)."
497 ;; (if n
498 ;; (let ((m 0) (p x))
499 ;; (while (consp p) (incf m) (pop p))
500 ;; (if (<= n 0) p
501 ;; (if (< n m) (nthcdr (- m n) x) x)))
502 ;; (while (consp (cdr x)) (pop x))
503 ;; x))
504
505 (defun list* (arg &rest rest) ; See compiler macro in cl-macs.el
506 "Return a new list with specified args as elements, cons'd to last arg.
507 Thus, `(list* A B C D)' is equivalent to `(nconc (list A B C) D)', or to
508 `(cons A (cons B (cons C D)))'."
509 (cond ((not rest) arg)
510 ((not (cdr rest)) (cons arg (car rest)))
511 (t (let* ((n (length rest))
512 (copy (copy-sequence rest))
513 (last (nthcdr (- n 2) copy)))
514 (setcdr last (car (cdr last)))
515 (cons arg copy)))))
516
517 (defun ldiff (list sublist)
518 "Return a copy of LIST with the tail SUBLIST removed."
519 (let ((res nil))
520 (while (and (consp list) (not (eq list sublist)))
521 (push (pop list) res))
522 (nreverse res)))
523
524 (defun copy-list (list)
525 "Return a copy of a list, which may be a dotted list.
526 The elements of the list are not copied, just the list structure itself."
527 (if (consp list)
528 (let ((res nil))
529 (while (consp list) (push (pop list) res))
530 (prog1 (nreverse res) (setcdr res list)))
531 (car list)))
532
533 (defun cl-maclisp-member (item list)
534 (while (and list (not (equal item (car list)))) (setq list (cdr list)))
535 list)
536
537 (defalias 'cl-member 'memq) ; for compatibility with old CL package
538 (defalias 'cl-floor 'floor*)
539 (defalias 'cl-ceiling 'ceiling*)
540 (defalias 'cl-truncate 'truncate*)
541 (defalias 'cl-round 'round*)
542 (defalias 'cl-mod 'mod*)
543
544 (defun adjoin (cl-item cl-list &rest cl-keys) ; See compiler macro in cl-macs
545 "Return ITEM consed onto the front of LIST only if it's not already there.
546 Otherwise, return LIST unmodified.
547 Keywords supported: :test :test-not :key"
548 (cond ((or (equal cl-keys '(:test eq))
549 (and (null cl-keys) (not (numberp cl-item))))
550 (if (memq cl-item cl-list) cl-list (cons cl-item cl-list)))
551 ((or (equal cl-keys '(:test equal)) (null cl-keys))
552 (if (member cl-item cl-list) cl-list (cons cl-item cl-list)))
553 (t (apply 'cl-adjoin cl-item cl-list cl-keys))))
554
555 (defun subst (cl-new cl-old cl-tree &rest cl-keys)
556 "Substitute NEW for OLD everywhere in TREE (non-destructively).
557 Return a copy of TREE with all elements `eql' to OLD replaced by NEW.
558 Keywords supported: :test :test-not :key"
559 (if (or cl-keys (and (numberp cl-old) (not (integerp cl-old))))
560 (apply 'sublis (list (cons cl-old cl-new)) cl-tree cl-keys)
561 (cl-do-subst cl-new cl-old cl-tree)))
562
563 (defun cl-do-subst (cl-new cl-old cl-tree)
564 (cond ((eq cl-tree cl-old) cl-new)
565 ((consp cl-tree)
566 (let ((a (cl-do-subst cl-new cl-old (car cl-tree)))
567 (d (cl-do-subst cl-new cl-old (cdr cl-tree))))
568 (if (and (eq a (car cl-tree)) (eq d (cdr cl-tree)))
569 cl-tree (cons a d))))
570 (t cl-tree)))
571
572 (defun acons (a b c) (cons (cons a b) c))
573 (defun pairlis (a b &optional c) (nconc (mapcar* 'cons a b) c))
574
575
576 ;;; Miscellaneous.
577
578 (put 'cl-assertion-failed 'error-conditions '(error))
579 (put 'cl-assertion-failed 'error-message "Assertion failed")
580
581 (defvar cl-fake-autoloads nil
582 "Non-nil means don't make CL functions autoload.")
583
584 ;;; Autoload the other portions of the package.
585 ;; We want to replace the basic versions of dolist, dotimes, declare below.
586 (fmakunbound 'dolist)
587 (fmakunbound 'dotimes)
588 (fmakunbound 'declare)
589 (mapcar (function
590 (lambda (set)
591 (let ((file (if cl-fake-autoloads "<none>" (car set))))
592 (mapcar (function
593 (lambda (func)
594 (autoload func (car set) nil nil (nth 1 set))))
595 (cddr set)))))
596 '(("cl-extra" nil
597 coerce equalp cl-map-keymap maplist mapc mapl mapcan mapcon
598 cl-map-keymap cl-map-keymap-recursively cl-map-intervals
599 cl-map-overlays cl-set-frame-visible-p cl-float-limits
600 gcd lcm isqrt floor* ceiling* truncate* round*
601 mod* rem* signum random* make-random-state random-state-p
602 subseq concatenate cl-mapcar-many map some every notany
603 notevery revappend nreconc list-length tailp copy-tree get* getf
604 cl-set-getf cl-do-remf remprop cl-make-hash-table cl-hash-lookup
605 cl-gethash cl-puthash cl-remhash cl-clrhash cl-maphash cl-hash-table-p
606 cl-hash-table-count cl-progv-before cl-prettyexpand
607 cl-macroexpand-all)
608 ("cl-seq" nil
609 reduce fill replace remove* remove-if remove-if-not
610 delete* delete-if delete-if-not remove-duplicates
611 delete-duplicates substitute substitute-if substitute-if-not
612 nsubstitute nsubstitute-if nsubstitute-if-not find find-if
613 find-if-not position position-if position-if-not count count-if
614 count-if-not mismatch search sort* stable-sort merge member*
615 member-if member-if-not cl-adjoin assoc* assoc-if assoc-if-not
616 rassoc* rassoc-if rassoc-if-not union nunion intersection
617 nintersection set-difference nset-difference set-exclusive-or
618 nset-exclusive-or subsetp subst-if subst-if-not nsubst nsubst-if
619 nsubst-if-not sublis nsublis tree-equal)
620 ("cl-macs" nil
621 gensym gentemp typep cl-do-pop get-setf-method
622 cl-struct-setf-expander compiler-macroexpand cl-compile-time-init)
623 ("cl-macs" t
624 defun* defmacro* function* destructuring-bind eval-when
625 load-time-value case ecase typecase etypecase
626 block return return-from loop do do* dolist dotimes do-symbols
627 do-all-symbols psetq progv flet labels macrolet symbol-macrolet
628 lexical-let lexical-let* multiple-value-bind multiple-value-setq
629 locally the declare define-setf-method defsetf define-modify-macro
630 setf psetf remf shiftf rotatef letf letf* callf callf2 defstruct
631 check-type assert ignore-errors define-compiler-macro)))
632
633 ;;; Define data for indentation and edebug.
634 (mapcar (function
635 (lambda (entry)
636 (mapcar (function
637 (lambda (func)
638 (put func 'lisp-indent-function (nth 1 entry))
639 (put func 'lisp-indent-hook (nth 1 entry))
640 (or (get func 'edebug-form-spec)
641 (put func 'edebug-form-spec (nth 2 entry)))))
642 (car entry))))
643 '(((defun* defmacro*) 2)
644 ((function*) nil
645 (&or symbolp ([&optional 'macro] 'lambda (&rest sexp) &rest form)))
646 ((eval-when) 1 (sexp &rest form))
647 ((declare) nil (&rest sexp))
648 ((the) 1 (sexp &rest form))
649 ((case ecase typecase etypecase) 1 (form &rest (sexp &rest form)))
650 ((block return-from) 1 (sexp &rest form))
651 ((return) nil (&optional form))
652 ((do do*) 2 ((&rest &or symbolp (symbolp &optional form form))
653 (form &rest form)
654 &rest form))
655 ((do-symbols) 1 ((symbolp form &optional form form) &rest form))
656 ((do-all-symbols) 1 ((symbolp form &optional form) &rest form))
657 ((psetq setf psetf) nil edebug-setq-form)
658 ((progv) 2 (&rest form))
659 ((flet labels macrolet) 1
660 ((&rest (sexp sexp &rest form)) &rest form))
661 ((symbol-macrolet lexical-let lexical-let*) 1
662 ((&rest &or symbolp (symbolp form)) &rest form))
663 ((multiple-value-bind) 2 ((&rest symbolp) &rest form))
664 ((multiple-value-setq) 1 ((&rest symbolp) &rest form))
665 ((incf decf remf pushnew shiftf rotatef) nil (&rest form))
666 ((letf letf*) 1 ((&rest (&rest form)) &rest form))
667 ((callf destructuring-bind) 2 (sexp form &rest form))
668 ((callf2) 3 (sexp form form &rest form))
669 ((loop) nil (&rest &or symbolp form))
670 ((ignore-errors) 0 (&rest form))))
671
672
673 ;;; This goes here so that cl-macs can find it if it loads right now.
674 (provide 'cl-19) ; usage: (require 'cl-19 "cl")
675
676
677 ;;; Things to do after byte-compiler is loaded.
678 ;;; As a side effect, we cause cl-macs to be loaded when compiling, so
679 ;;; that the compiler-macros defined there will be present.
680
681 (defvar cl-hacked-flag nil)
682 (defun cl-hack-byte-compiler ()
683 (if (and (not cl-hacked-flag) (fboundp 'byte-compile-file-form))
684 (progn
685 (setq cl-hacked-flag t) ; Do it first, to prevent recursion.
686 (cl-compile-time-init)))) ; In cl-macs.el.
687
688 ;;; Try it now in case the compiler has already been loaded.
689 (cl-hack-byte-compiler)
690
691 ;;; Also make a hook in case compiler is loaded after this file.
692 (add-hook 'bytecomp-load-hook 'cl-hack-byte-compiler)
693
694
695 ;;; The following ensures that packages which expect the old-style cl.el
696 ;;; will be happy with this one.
697
698 (provide 'cl)
699
700 (run-hooks 'cl-load-hook)
701
702 ;;; arch-tag: 5f07fa74-f153-4524-9303-21f5be125851
703 ;;; cl.el ends here