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