(executable-command-find-posix-p): Doc fix.
[emacs.git] / lisp / emacs-lisp / cl.el
blobb098a467f9f518219a82a768da6314674c9fb4be
1 ;;; cl.el --- Common Lisp extensions for Emacs -*-byte-compile-dynamic: t;-*-
3 ;; Copyright (C) 1993 Free Software Foundation, Inc.
5 ;; Author: Dave Gillespie <daveg@synaptics.com>
6 ;; Version: 2.02
7 ;; Keywords: extensions
9 ;; This file is part of GNU Emacs.
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.
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.
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.
26 ;;; Commentary:
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.
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.
35 ;; Bug reports, comments, and suggestions are welcome!
37 ;; This file contains the portions of the Common Lisp extensions
38 ;; package which should always be present.
41 ;;; Future notes:
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.
48 ;;; Change Log:
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.
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.
90 ;; Version 2.00:
91 ;; * First public release of this package.
94 ;;; Code:
96 (defvar cl-optimize-speed 1)
97 (defvar cl-optimize-safety 1)
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.
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.")
111 (defvar cl-unload-hook '(cl-cannot-unload)
112 "Prevent unloading the feature `cl', since it does not work.")
113 (defun cl-cannot-unload ()
114 (error "Cannot unload the feature `cl'"))
116 ;;; Predicates.
118 (defun eql (a b) ; See compiler macro in cl-macs.el
119 "T if the two args are the same Lisp object.
120 Floating-point numbers of equal value are `eql', but they may not be `eq'."
121 (if (numberp a)
122 (equal a b)
123 (eq a b)))
126 ;;; Generalized variables. These macros are defined here so that they
127 ;;; can safely be used in .emacs files.
129 (defmacro incf (place &optional x)
130 "Increment PLACE by X (1 by default).
131 PLACE may be a symbol, or any generalized variable allowed by `setf'.
132 The return value is the incremented value of PLACE."
133 (if (symbolp place)
134 (list 'setq place (if x (list '+ place x) (list '1+ place)))
135 (list 'callf '+ place (or x 1))))
137 (defmacro decf (place &optional x)
138 "Decrement PLACE by X (1 by default).
139 PLACE may be a symbol, or any generalized variable allowed by `setf'.
140 The return value is the decremented value of PLACE."
141 (if (symbolp place)
142 (list 'setq place (if x (list '- place x) (list '1- place)))
143 (list 'callf '- place (or x 1))))
145 (defmacro pop (place)
146 "Remove and return the head of the list stored in PLACE.
147 Analogous to (prog1 (car PLACE) (setf PLACE (cdr PLACE))), though more
148 careful about evaluating each argument only once and in the right order.
149 PLACE may be a symbol, or any generalized variable allowed by `setf'."
150 (if (symbolp place)
151 (list 'car (list 'prog1 place (list 'setq place (list 'cdr place))))
152 (cl-do-pop place)))
154 (defmacro push (x place)
155 "Insert X at the head of the list stored in PLACE.
156 Analogous to (setf PLACE (cons X PLACE)), though more careful about
157 evaluating each argument only once and in the right order. PLACE may
158 be a symbol, or any generalized variable allowed by `setf'."
159 (if (symbolp place) (list 'setq place (list 'cons x place))
160 (list 'callf2 'cons x place)))
162 (defmacro pushnew (x place &rest keys)
163 "(pushnew X PLACE): insert X at the head of the list if not already there.
164 Like (push X PLACE), except that the list is unmodified if X is `eql' to
165 an element already on the list.
166 Keywords supported: :test :test-not :key"
167 (if (symbolp place) (list 'setq place (list* 'adjoin x place keys))
168 (list* 'callf2 'adjoin x place keys)))
170 (defun cl-set-elt (seq n val)
171 (if (listp seq) (setcar (nthcdr n seq) val) (aset seq n val)))
173 (defun cl-set-nthcdr (n list x)
174 (if (<= n 0) x (setcdr (nthcdr (1- n) list) x) list))
176 (defun cl-set-buffer-substring (start end val)
177 (save-excursion (delete-region start end)
178 (goto-char start)
179 (insert val)
180 val))
182 (defun cl-set-substring (str start end val)
183 (if end (if (< end 0) (incf end (length str)))
184 (setq end (length str)))
185 (if (< start 0) (incf start (length str)))
186 (concat (and (> start 0) (substring str 0 start))
188 (and (< end (length str)) (substring str end))))
191 ;;; Control structures.
193 ;;; These macros are so simple and so often-used that it's better to have
194 ;;; them all the time than to load them from cl-macs.el.
196 (defun cl-map-extents (&rest cl-args)
197 (apply 'cl-map-overlays cl-args))
200 ;;; Blocks and exits.
202 (defalias 'cl-block-wrapper 'identity)
203 (defalias 'cl-block-throw 'throw)
206 ;;; Multiple values. True multiple values are not supported, or even
207 ;;; simulated. Instead, multiple-value-bind and friends simply expect
208 ;;; the target form to return the values as a list.
210 (defsubst values (&rest values)
211 "Return multiple values, Common Lisp style.
212 The arguments of `values' are the values
213 that the containing function should return."
214 values)
216 (defsubst values-list (list)
217 "Return multiple values, Common Lisp style, taken from a list.
218 LIST specifies the list of values
219 that the containing function should return."
220 list)
222 (defsubst multiple-value-list (expression)
223 "Return a list of the multiple values produced by EXPRESSION.
224 This handles multiple values in Common Lisp style, but it does not
225 work right when EXPRESSION calls an ordinary Emacs Lisp function
226 that returns just one value."
227 expression)
229 (defsubst multiple-value-apply (function expression)
230 "Evaluate EXPRESSION to get multiple values and apply FUNCTION to them.
231 This handles multiple values in Common Lisp style, but it does not work
232 right when EXPRESSION calls an ordinary Emacs Lisp function that returns just
233 one value."
234 (apply function expression))
236 (defalias 'multiple-value-call 'apply
237 "Apply FUNCTION to ARGUMENTS, taking multiple values into account.
238 This implementation only handles the case where there is only one argument.")
240 (defsubst nth-value (n expression)
241 "Evaluate EXPRESSION to get multiple values and return the Nth one.
242 This handles multiple values in Common Lisp style, but it does not work
243 right when EXPRESSION calls an ordinary Emacs Lisp function that returns just
244 one value."
245 (nth n expression))
247 ;;; Macros.
249 (defvar cl-macro-environment nil)
250 (defvar cl-old-macroexpand (prog1 (symbol-function 'macroexpand)
251 (defalias 'macroexpand 'cl-macroexpand)))
253 (defun cl-macroexpand (cl-macro &optional cl-env)
254 "Return result of expanding macros at top level of FORM.
255 If FORM is not a macro call, it is returned unchanged.
256 Otherwise, the macro is expanded and the expansion is considered
257 in place of FORM. When a non-macro-call results, it is returned.
259 The second optional arg ENVIRONMENT specifies an environment of macro
260 definitions to shadow the loaded ones for use in file byte-compilation."
261 (let ((cl-macro-environment cl-env))
262 (while (progn (setq cl-macro (funcall cl-old-macroexpand cl-macro cl-env))
263 (and (symbolp cl-macro)
264 (cdr (assq (symbol-name cl-macro) cl-env))))
265 (setq cl-macro (cadr (assq (symbol-name cl-macro) cl-env))))
266 cl-macro))
269 ;;; Declarations.
271 (defvar cl-compiling-file nil)
272 (defun cl-compiling-file ()
273 (or cl-compiling-file
274 (and (boundp 'outbuffer) (bufferp (symbol-value 'outbuffer))
275 (equal (buffer-name (symbol-value 'outbuffer))
276 " *Compiler Output*"))))
278 (defvar cl-proclaims-deferred nil)
280 (defun proclaim (spec)
281 (if (fboundp 'cl-do-proclaim) (cl-do-proclaim spec t)
282 (push spec cl-proclaims-deferred))
283 nil)
285 (defmacro declaim (&rest specs)
286 (let ((body (mapcar (function (lambda (x) (list 'proclaim (list 'quote x))))
287 specs)))
288 (if (cl-compiling-file) (list* 'eval-when '(compile load eval) body)
289 (cons 'progn body)))) ; avoid loading cl-macs.el for eval-when
292 ;;; Symbols.
294 (defun cl-random-time ()
295 (let* ((time (copy-sequence (current-time-string))) (i (length time)) (v 0))
296 (while (>= (decf i) 0) (setq v (+ (* v 3) (aref time i))))
299 (defvar *gensym-counter* (* (logand (cl-random-time) 1023) 100))
302 ;;; Numbers.
304 (defun floatp-safe (x)
305 "T if OBJECT is a floating point number.
306 On Emacs versions that lack floating-point support, this function
307 always returns nil."
308 (and (numberp x) (not (integerp x))))
310 (defun plusp (x)
311 "T if NUMBER is positive."
312 (> x 0))
314 (defun minusp (x)
315 "T if NUMBER is negative."
316 (< x 0))
318 (defun oddp (x)
319 "T if INTEGER is odd."
320 (eq (logand x 1) 1))
322 (defun evenp (x)
323 "T if INTEGER is even."
324 (eq (logand x 1) 0))
326 (defvar *random-state* (vector 'cl-random-state-tag -1 30 (cl-random-time)))
328 ;;; The following are actually set by cl-float-limits.
329 (defconst most-positive-float nil)
330 (defconst most-negative-float nil)
331 (defconst least-positive-float nil)
332 (defconst least-negative-float nil)
333 (defconst least-positive-normalized-float nil)
334 (defconst least-negative-normalized-float nil)
335 (defconst float-epsilon nil)
336 (defconst float-negative-epsilon nil)
339 ;;; Sequence functions.
341 (defalias 'copy-seq 'copy-sequence)
343 (defun mapcar* (cl-func cl-x &rest cl-rest)
344 "Apply FUNCTION to each element of SEQ, and make a list of the results.
345 If there are several SEQs, FUNCTION is called with that many arguments,
346 and mapping stops as soon as the shortest list runs out. With just one
347 SEQ, this is like `mapcar'. With several, it is like the Common Lisp
348 `mapcar' function extended to arbitrary sequence types."
349 (if cl-rest
350 (if (or (cdr cl-rest) (nlistp cl-x) (nlistp (car cl-rest)))
351 (cl-mapcar-many cl-func (cons cl-x cl-rest))
352 (let ((cl-res nil) (cl-y (car cl-rest)))
353 (while (and cl-x cl-y)
354 (push (funcall cl-func (pop cl-x) (pop cl-y)) cl-res))
355 (nreverse cl-res)))
356 (mapcar cl-func cl-x)))
358 (defalias 'svref 'aref)
360 ;;; List functions.
362 (defalias 'first 'car)
363 (defalias 'second 'cadr)
364 (defalias 'rest 'cdr)
365 (defalias 'endp 'null)
367 (defun third (x)
368 "Return the third element of the list X."
369 (car (cdr (cdr x))))
371 (defun fourth (x)
372 "Return the fourth element of the list X."
373 (nth 3 x))
375 (defun fifth (x)
376 "Return the fifth element of the list X."
377 (nth 4 x))
379 (defun sixth (x)
380 "Return the sixth element of the list X."
381 (nth 5 x))
383 (defun seventh (x)
384 "Return the seventh element of the list X."
385 (nth 6 x))
387 (defun eighth (x)
388 "Return the eighth element of the list X."
389 (nth 7 x))
391 (defun ninth (x)
392 "Return the ninth element of the list X."
393 (nth 8 x))
395 (defun tenth (x)
396 "Return the tenth element of the list X."
397 (nth 9 x))
399 (defun caaar (x)
400 "Return the `car' of the `car' of the `car' of X."
401 (car (car (car x))))
403 (defun caadr (x)
404 "Return the `car' of the `car' of the `cdr' of X."
405 (car (car (cdr x))))
407 (defun cadar (x)
408 "Return the `car' of the `cdr' of the `car' of X."
409 (car (cdr (car x))))
411 (defun caddr (x)
412 "Return the `car' of the `cdr' of the `cdr' of X."
413 (car (cdr (cdr x))))
415 (defun cdaar (x)
416 "Return the `cdr' of the `car' of the `car' of X."
417 (cdr (car (car x))))
419 (defun cdadr (x)
420 "Return the `cdr' of the `car' of the `cdr' of X."
421 (cdr (car (cdr x))))
423 (defun cddar (x)
424 "Return the `cdr' of the `cdr' of the `car' of X."
425 (cdr (cdr (car x))))
427 (defun cdddr (x)
428 "Return the `cdr' of the `cdr' of the `cdr' of X."
429 (cdr (cdr (cdr x))))
431 (defun caaaar (x)
432 "Return the `car' of the `car' of the `car' of the `car' of X."
433 (car (car (car (car x)))))
435 (defun caaadr (x)
436 "Return the `car' of the `car' of the `car' of the `cdr' of X."
437 (car (car (car (cdr x)))))
439 (defun caadar (x)
440 "Return the `car' of the `car' of the `cdr' of the `car' of X."
441 (car (car (cdr (car x)))))
443 (defun caaddr (x)
444 "Return the `car' of the `car' of the `cdr' of the `cdr' of X."
445 (car (car (cdr (cdr x)))))
447 (defun cadaar (x)
448 "Return the `car' of the `cdr' of the `car' of the `car' of X."
449 (car (cdr (car (car x)))))
451 (defun cadadr (x)
452 "Return the `car' of the `cdr' of the `car' of the `cdr' of X."
453 (car (cdr (car (cdr x)))))
455 (defun caddar (x)
456 "Return the `car' of the `cdr' of the `cdr' of the `car' of X."
457 (car (cdr (cdr (car x)))))
459 (defun cadddr (x)
460 "Return the `car' of the `cdr' of the `cdr' of the `cdr' of X."
461 (car (cdr (cdr (cdr x)))))
463 (defun cdaaar (x)
464 "Return the `cdr' of the `car' of the `car' of the `car' of X."
465 (cdr (car (car (car x)))))
467 (defun cdaadr (x)
468 "Return the `cdr' of the `car' of the `car' of the `cdr' of X."
469 (cdr (car (car (cdr x)))))
471 (defun cdadar (x)
472 "Return the `cdr' of the `car' of the `cdr' of the `car' of X."
473 (cdr (car (cdr (car x)))))
475 (defun cdaddr (x)
476 "Return the `cdr' of the `car' of the `cdr' of the `cdr' of X."
477 (cdr (car (cdr (cdr x)))))
479 (defun cddaar (x)
480 "Return the `cdr' of the `cdr' of the `car' of the `car' of X."
481 (cdr (cdr (car (car x)))))
483 (defun cddadr (x)
484 "Return the `cdr' of the `cdr' of the `car' of the `cdr' of X."
485 (cdr (cdr (car (cdr x)))))
487 (defun cdddar (x)
488 "Return the `cdr' of the `cdr' of the `cdr' of the `car' of X."
489 (cdr (cdr (cdr (car x)))))
491 (defun cddddr (x)
492 "Return the `cdr' of the `cdr' of the `cdr' of the `cdr' of X."
493 (cdr (cdr (cdr (cdr x)))))
495 ;;(defun last* (x &optional n)
496 ;; "Returns the last link in the list LIST.
497 ;;With optional argument N, returns Nth-to-last link (default 1)."
498 ;; (if n
499 ;; (let ((m 0) (p x))
500 ;; (while (consp p) (incf m) (pop p))
501 ;; (if (<= n 0) p
502 ;; (if (< n m) (nthcdr (- m n) x) x)))
503 ;; (while (consp (cdr x)) (pop x))
504 ;; x))
506 (defun list* (arg &rest rest) ; See compiler macro in cl-macs.el
507 "Return a new list with specified args as elements, cons'd to last arg.
508 Thus, `(list* A B C D)' is equivalent to `(nconc (list A B C) D)', or to
509 `(cons A (cons B (cons C D)))'."
510 (cond ((not rest) arg)
511 ((not (cdr rest)) (cons arg (car rest)))
512 (t (let* ((n (length rest))
513 (copy (copy-sequence rest))
514 (last (nthcdr (- n 2) copy)))
515 (setcdr last (car (cdr last)))
516 (cons arg copy)))))
518 (defun ldiff (list sublist)
519 "Return a copy of LIST with the tail SUBLIST removed."
520 (let ((res nil))
521 (while (and (consp list) (not (eq list sublist)))
522 (push (pop list) res))
523 (nreverse res)))
525 (defun copy-list (list)
526 "Return a copy of a list, which may be a dotted list.
527 The elements of the list are not copied, just the list structure itself."
528 (if (consp list)
529 (let ((res nil))
530 (while (consp list) (push (pop list) res))
531 (prog1 (nreverse res) (setcdr res list)))
532 (car list)))
534 (defun cl-maclisp-member (item list)
535 (while (and list (not (equal item (car list)))) (setq list (cdr list)))
536 list)
538 (defalias 'cl-member 'memq) ; for compatibility with old CL package
539 (defalias 'cl-floor 'floor*)
540 (defalias 'cl-ceiling 'ceiling*)
541 (defalias 'cl-truncate 'truncate*)
542 (defalias 'cl-round 'round*)
543 (defalias 'cl-mod 'mod*)
545 (defun adjoin (cl-item cl-list &rest cl-keys) ; See compiler macro in cl-macs
546 "Return ITEM consed onto the front of LIST only if it's not already there.
547 Otherwise, return LIST unmodified.
548 Keywords supported: :test :test-not :key"
549 (cond ((or (equal cl-keys '(:test eq))
550 (and (null cl-keys) (not (numberp cl-item))))
551 (if (memq cl-item cl-list) cl-list (cons cl-item cl-list)))
552 ((or (equal cl-keys '(:test equal)) (null cl-keys))
553 (if (member cl-item cl-list) cl-list (cons cl-item cl-list)))
554 (t (apply 'cl-adjoin cl-item cl-list cl-keys))))
556 (defun subst (cl-new cl-old cl-tree &rest cl-keys)
557 "Substitute NEW for OLD everywhere in TREE (non-destructively).
558 Return a copy of TREE with all elements `eql' to OLD replaced by NEW.
559 Keywords supported: :test :test-not :key"
560 (if (or cl-keys (and (numberp cl-old) (not (integerp cl-old))))
561 (apply 'sublis (list (cons cl-old cl-new)) cl-tree cl-keys)
562 (cl-do-subst cl-new cl-old cl-tree)))
564 (defun cl-do-subst (cl-new cl-old cl-tree)
565 (cond ((eq cl-tree cl-old) cl-new)
566 ((consp cl-tree)
567 (let ((a (cl-do-subst cl-new cl-old (car cl-tree)))
568 (d (cl-do-subst cl-new cl-old (cdr cl-tree))))
569 (if (and (eq a (car cl-tree)) (eq d (cdr cl-tree)))
570 cl-tree (cons a d))))
571 (t cl-tree)))
573 (defun acons (a b c) (cons (cons a b) c))
574 (defun pairlis (a b &optional c) (nconc (mapcar* 'cons a b) c))
577 ;;; Miscellaneous.
579 (put 'cl-assertion-failed 'error-conditions '(error))
580 (put 'cl-assertion-failed 'error-message "Assertion failed")
582 (defvar cl-fake-autoloads nil
583 "Non-nil means don't make CL functions autoload.")
585 ;;; Autoload the other portions of the package.
586 ;; We want to replace the basic versions of dolist, dotimes, declare below.
587 (fmakunbound 'dolist)
588 (fmakunbound 'dotimes)
589 (fmakunbound 'declare)
590 (mapcar (function
591 (lambda (set)
592 (let ((file (if cl-fake-autoloads "<none>" (car set))))
593 (mapcar (function
594 (lambda (func)
595 (autoload func (car set) nil nil (nth 1 set))))
596 (cddr set)))))
597 '(("cl-extra" nil
598 coerce equalp cl-map-keymap maplist mapc mapl mapcan mapcon
599 cl-map-keymap cl-map-keymap-recursively cl-map-intervals
600 cl-map-overlays cl-set-frame-visible-p cl-float-limits
601 gcd lcm isqrt floor* ceiling* truncate* round*
602 mod* rem* signum random* make-random-state random-state-p
603 subseq concatenate cl-mapcar-many map some every notany
604 notevery revappend nreconc list-length tailp copy-tree get* getf
605 cl-set-getf cl-do-remf remprop cl-make-hash-table cl-hash-lookup
606 cl-gethash cl-puthash cl-remhash cl-clrhash cl-maphash cl-hash-table-p
607 cl-hash-table-count cl-progv-before cl-prettyexpand
608 cl-macroexpand-all)
609 ("cl-seq" nil
610 reduce fill replace remove* remove-if remove-if-not
611 delete* delete-if delete-if-not remove-duplicates
612 delete-duplicates substitute substitute-if substitute-if-not
613 nsubstitute nsubstitute-if nsubstitute-if-not find find-if
614 find-if-not position position-if position-if-not count count-if
615 count-if-not mismatch search sort* stable-sort merge member*
616 member-if member-if-not cl-adjoin assoc* assoc-if assoc-if-not
617 rassoc* rassoc-if rassoc-if-not union nunion intersection
618 nintersection set-difference nset-difference set-exclusive-or
619 nset-exclusive-or subsetp subst-if subst-if-not nsubst nsubst-if
620 nsubst-if-not sublis nsublis tree-equal)
621 ("cl-macs" nil
622 gensym gentemp typep cl-do-pop get-setf-method
623 cl-struct-setf-expander compiler-macroexpand cl-compile-time-init)
624 ("cl-macs" t
625 defun* defmacro* function* destructuring-bind eval-when
626 load-time-value case ecase typecase etypecase
627 block return return-from loop do do* dolist dotimes do-symbols
628 do-all-symbols psetq progv flet labels macrolet symbol-macrolet
629 lexical-let lexical-let* multiple-value-bind multiple-value-setq
630 locally the declare define-setf-method defsetf define-modify-macro
631 setf psetf remf shiftf rotatef letf letf* callf callf2 defstruct
632 check-type assert ignore-errors define-compiler-macro)))
634 ;;; Define data for indentation and edebug.
635 (mapcar (function
636 (lambda (entry)
637 (mapcar (function
638 (lambda (func)
639 (put func 'lisp-indent-function (nth 1 entry))
640 (put func 'lisp-indent-hook (nth 1 entry))
641 (or (get func 'edebug-form-spec)
642 (put func 'edebug-form-spec (nth 2 entry)))))
643 (car entry))))
644 '(((defun* defmacro*) 2)
645 ((function*) nil
646 (&or symbolp ([&optional 'macro] 'lambda (&rest sexp) &rest form)))
647 ((eval-when) 1 (sexp &rest form))
648 ((declare) nil (&rest sexp))
649 ((the) 1 (sexp &rest form))
650 ((case ecase typecase etypecase) 1 (form &rest (sexp &rest form)))
651 ((block return-from) 1 (sexp &rest form))
652 ((return) nil (&optional form))
653 ((do do*) 2 ((&rest &or symbolp (symbolp &optional form form))
654 (form &rest form)
655 &rest form))
656 ((do-symbols) 1 ((symbolp form &optional form form) &rest form))
657 ((do-all-symbols) 1 ((symbolp form &optional form) &rest form))
658 ((psetq setf psetf) nil edebug-setq-form)
659 ((progv) 2 (&rest form))
660 ((flet labels macrolet) 1
661 ((&rest (sexp sexp &rest form)) &rest form))
662 ((symbol-macrolet lexical-let lexical-let*) 1
663 ((&rest &or symbolp (symbolp form)) &rest form))
664 ((multiple-value-bind) 2 ((&rest symbolp) &rest form))
665 ((multiple-value-setq) 1 ((&rest symbolp) &rest form))
666 ((incf decf remf pushnew shiftf rotatef) nil (&rest form))
667 ((letf letf*) 1 ((&rest (&rest form)) &rest form))
668 ((callf destructuring-bind) 2 (sexp form &rest form))
669 ((callf2) 3 (sexp form form &rest form))
670 ((loop) nil (&rest &or symbolp form))
671 ((ignore-errors) 0 (&rest form))))
674 ;;; This goes here so that cl-macs can find it if it loads right now.
675 (provide 'cl-19) ; usage: (require 'cl-19 "cl")
678 ;;; Things to do after byte-compiler is loaded.
679 ;;; As a side effect, we cause cl-macs to be loaded when compiling, so
680 ;;; that the compiler-macros defined there will be present.
682 (defvar cl-hacked-flag nil)
683 (defun cl-hack-byte-compiler ()
684 (if (and (not cl-hacked-flag) (fboundp 'byte-compile-file-form))
685 (progn
686 (setq cl-hacked-flag t) ; Do it first, to prevent recursion.
687 (cl-compile-time-init)))) ; In cl-macs.el.
689 ;;; Try it now in case the compiler has already been loaded.
690 (cl-hack-byte-compiler)
692 ;;; Also make a hook in case compiler is loaded after this file.
693 (add-hook 'bytecomp-load-hook 'cl-hack-byte-compiler)
696 ;;; The following ensures that packages which expect the old-style cl.el
697 ;;; will be happy with this one.
699 (provide 'cl)
701 (run-hooks 'cl-load-hook)
703 ;;; arch-tag: 5f07fa74-f153-4524-9303-21f5be125851
704 ;;; cl.el ends here