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