Merge from emacs-24; up to 2012-04-30T11:57:47Z!sdl.web@gmail.com
[bpt/emacs.git] / lisp / emacs-lisp / cl-lib.el
1 ;;; cl-lib.el --- Common Lisp extensions for Emacs -*- lexical-binding: t -*-
2
3 ;; Copyright (C) 1993, 2001-2012 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 3 of the License, or
14 ;; (at your option) 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. If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;; These are extensions to Emacs Lisp that provide a degree of
27 ;; Common Lisp compatibility, beyond what is already built-in
28 ;; in Emacs Lisp.
29 ;;
30 ;; This package was written by Dave Gillespie; it is a complete
31 ;; rewrite of Cesar Quiroz's original cl.el package of December 1986.
32 ;;
33 ;; Bug reports, comments, and suggestions are welcome!
34
35 ;; This file contains the portions of the Common Lisp extensions
36 ;; package which should always be present.
37
38
39 ;;; Future notes:
40
41 ;; Once Emacs 19 becomes standard, many things in this package which are
42 ;; messy for reasons of compatibility can be greatly simplified. For now,
43 ;; I prefer to maintain one unified version.
44
45
46 ;;; Change Log:
47
48 ;; Version 2.02 (30 Jul 93):
49 ;; * Added "cl-compat.el" file, extra compatibility with old package.
50 ;; * Added `lexical-let' and `lexical-let*'.
51 ;; * Added `define-modify-macro', `callf', and `callf2'.
52 ;; * Added `ignore-errors'.
53 ;; * Changed `(setf (nthcdr N PLACE) X)' to work when N is zero.
54 ;; * Merged `*gentemp-counter*' into `*gensym-counter*'.
55 ;; * Extended `subseq' to allow negative START and END like `substring'.
56 ;; * Added `in-ref', `across-ref', `elements of-ref' loop clauses.
57 ;; * Added `concat', `vconcat' loop clauses.
58 ;; * Cleaned up a number of compiler warnings.
59
60 ;; Version 2.01 (7 Jul 93):
61 ;; * Added support for FSF version of Emacs 19.
62 ;; * Added `add-hook' for Emacs 18 users.
63 ;; * Added `defsubst*' and `symbol-macrolet'.
64 ;; * Added `maplist', `mapc', `mapl', `mapcan', `mapcon'.
65 ;; * Added `map', `concatenate', `reduce', `merge'.
66 ;; * Added `revappend', `nreconc', `tailp', `tree-equal'.
67 ;; * Added `assert', `check-type', `typecase', `typep', and `deftype'.
68 ;; * Added destructuring and `&environment' support to `defmacro*'.
69 ;; * Added destructuring to `loop', and added the following clauses:
70 ;; `elements', `frames', `overlays', `intervals', `buffers', `key-seqs'.
71 ;; * Renamed `delete' to `delete*' and `remove' to `remove*'.
72 ;; * Completed support for all keywords in `remove*', `substitute', etc.
73 ;; * Added `most-positive-float' and company.
74 ;; * Fixed hash tables to work with latest Lucid Emacs.
75 ;; * `proclaim' forms are no longer compile-time-evaluating; use `declaim'.
76 ;; * Syntax for `warn' declarations has changed.
77 ;; * Improved implementation of `random*'.
78 ;; * Moved most sequence functions to a new file, cl-seq.el.
79 ;; * Moved `eval-when' into cl-macs.el.
80 ;; * Moved `pushnew' and `adjoin' to cl.el for most common cases.
81 ;; * Moved `provide' forms down to ends of files.
82 ;; * Changed expansion of `pop' to something that compiles to better code.
83 ;; * Changed so that no patch is required for Emacs 19 byte compiler.
84 ;; * Made more things dependent on `optimize' declarations.
85 ;; * Added a partial implementation of struct print functions.
86 ;; * Miscellaneous minor changes.
87
88 ;; Version 2.00:
89 ;; * First public release of this package.
90
91
92 ;;; Code:
93
94 (defvar cl-optimize-speed 1)
95 (defvar cl-optimize-safety 1)
96
97 ;;;###autoload
98 (define-obsolete-variable-alias
99 ;; This alias is needed for compatibility with .elc files that use defstruct
100 ;; and were compiled with Emacs<24.2.
101 'custom-print-functions 'cl-custom-print-functions "24.2")
102
103 ;;;###autoload
104 (defvar cl-custom-print-functions nil
105 "This is a list of functions that format user objects for printing.
106 Each function is called in turn with three arguments: the object, the
107 stream, and the print level (currently ignored). If it is able to
108 print the object it returns true; otherwise it returns nil and the
109 printer proceeds to the next function on the list.
110
111 This variable is not used at present, but it is defined in hopes that
112 a future Emacs interpreter will be able to use it.")
113
114 (defun cl-unload-function ()
115 "Stop unloading of the Common Lisp extensions."
116 (message "Cannot unload the feature `cl'")
117 ;; Stop standard unloading!
118 t)
119
120 ;;; Generalized variables.
121 ;; These macros are defined here so that they
122 ;; can safely be used in .emacs files.
123
124 (defmacro cl-incf (place &optional x)
125 "Increment PLACE by X (1 by default).
126 PLACE may be a symbol, or any generalized variable allowed by `setf'.
127 The return value is the incremented value of PLACE."
128 (declare (debug (place &optional form)))
129 (if (symbolp place)
130 (list 'setq place (if x (list '+ place x) (list '1+ place)))
131 (list 'cl-callf '+ place (or x 1))))
132
133 (defmacro cl-decf (place &optional x)
134 "Decrement PLACE by X (1 by default).
135 PLACE may be a symbol, or any generalized variable allowed by `setf'.
136 The return value is the decremented value of PLACE."
137 (declare (debug cl-incf))
138 (if (symbolp place)
139 (list 'setq place (if x (list '- place x) (list '1- place)))
140 (list 'cl-callf '- place (or x 1))))
141
142 (defmacro cl-pushnew (x place &rest keys)
143 "(cl-pushnew X PLACE): insert X at the head of the list if not already there.
144 Like (push X PLACE), except that the list is unmodified if X is `eql' to
145 an element already on the list.
146 \nKeywords supported: :test :test-not :key
147 \n(fn X PLACE [KEYWORD VALUE]...)"
148 (declare (debug
149 (form place &rest
150 &or [[&or ":test" ":test-not" ":key"] function-form]
151 [keywordp form])))
152 (if (symbolp place)
153 (if (null keys)
154 (let ((var (make-symbol "--cl-x--")))
155 `(let ((,var ,x))
156 (if (memql ,var ,place)
157 ;; This symbol may later on expand to actual code which then
158 ;; trigger warnings like "value unused" since cl-pushnew's return
159 ;; value is rarely used. It should not matter that other
160 ;; warnings may be silenced, since `place' is used earlier and
161 ;; should have triggered them already.
162 (with-no-warnings ,place)
163 (setq ,place (cons ,var ,place)))))
164 (list 'setq place (cl-list* 'cl-adjoin x place keys)))
165 (cl-list* 'cl-callf2 'cl-adjoin x place keys)))
166
167 (defun cl--set-elt (seq n val)
168 (if (listp seq) (setcar (nthcdr n seq) val) (aset seq n val)))
169
170 (defun cl--set-buffer-substring (start end val)
171 (save-excursion (delete-region start end)
172 (goto-char start)
173 (insert val)
174 val))
175
176 (defun cl--set-substring (str start end val)
177 (if end (if (< end 0) (cl-incf end (length str)))
178 (setq end (length str)))
179 (if (< start 0) (cl-incf start (length str)))
180 (concat (and (> start 0) (substring str 0 start))
181 val
182 (and (< end (length str)) (substring str end))))
183
184
185 ;;; Blocks and exits.
186
187 (defalias 'cl--block-wrapper 'identity)
188 (defalias 'cl--block-throw 'throw)
189
190
191 ;;; Multiple values.
192 ;; True multiple values are not supported, or even
193 ;; simulated. Instead, cl-multiple-value-bind and friends simply expect
194 ;; the target form to return the values as a list.
195
196 (defun cl--defalias (cl-f el-f &optional doc)
197 (defalias cl-f el-f doc)
198 (put cl-f 'byte-optimizer 'byte-compile-inline-expand))
199
200 (cl--defalias 'cl-values #'list
201 "Return multiple values, Common Lisp style.
202 The arguments of `cl-values' are the values
203 that the containing function should return.
204
205 \(fn &rest VALUES)")
206
207 (cl--defalias 'cl-values-list #'identity
208 "Return multiple values, Common Lisp style, taken from a list.
209 LIST specifies the list of values
210 that the containing function should return.
211
212 \(fn LIST)")
213
214 (defsubst cl-multiple-value-list (expression)
215 "Return a list of the multiple values produced by EXPRESSION.
216 This handles multiple values in Common Lisp style, but it does not
217 work right when EXPRESSION calls an ordinary Emacs Lisp function
218 that returns just one value."
219 expression)
220
221 (defsubst cl-multiple-value-apply (function expression)
222 "Evaluate EXPRESSION to get multiple values and apply FUNCTION to them.
223 This handles multiple values in Common Lisp style, but it does not work
224 right when EXPRESSION calls an ordinary Emacs Lisp function that returns just
225 one value."
226 (apply function expression))
227
228 (defalias 'cl-multiple-value-call 'apply
229 "Apply FUNCTION to ARGUMENTS, taking multiple values into account.
230 This implementation only handles the case where there is only one argument.")
231
232 (defsubst cl-nth-value (n expression)
233 "Evaluate EXPRESSION to get multiple values and return the Nth one.
234 This handles multiple values in Common Lisp style, but it does not work
235 right when EXPRESSION calls an ordinary Emacs Lisp function that returns just
236 one value."
237 (nth n expression))
238
239 ;;; Declarations.
240
241 (defvar cl--compiling-file nil)
242 (defun cl--compiling-file ()
243 (or cl--compiling-file
244 (and (boundp 'byte-compile--outbuffer)
245 (bufferp (symbol-value 'byte-compile--outbuffer))
246 (equal (buffer-name (symbol-value 'byte-compile--outbuffer))
247 " *Compiler Output*"))))
248
249 (defvar cl-proclaims-deferred nil)
250
251 (defun cl-proclaim (spec)
252 (if (fboundp 'cl-do-proclaim) (cl-do-proclaim spec t)
253 (push spec cl-proclaims-deferred))
254 nil)
255
256 (defmacro cl-declaim (&rest specs)
257 (let ((body (mapcar (function (lambda (x) (list 'cl-proclaim (list 'quote x))))
258 specs)))
259 (if (cl--compiling-file) (cl-list* 'cl-eval-when '(compile load eval) body)
260 (cons 'progn body)))) ; avoid loading cl-macs.el for cl-eval-when
261
262
263 ;;; Symbols.
264
265 (defun cl-random-time ()
266 (let* ((time (copy-sequence (current-time-string))) (i (length time)) (v 0))
267 (while (>= (cl-decf i) 0) (setq v (+ (* v 3) (aref time i))))
268 v))
269
270 (defvar cl--gensym-counter (* (logand (cl-random-time) 1023) 100))
271
272
273 ;;; Numbers.
274
275 (defun cl-floatp-safe (object)
276 "Return t if OBJECT is a floating point number.
277 On Emacs versions that lack floating-point support, this function
278 always returns nil."
279 (and (numberp object) (not (integerp object))))
280
281 (defsubst cl-plusp (number)
282 "Return t if NUMBER is positive."
283 (> number 0))
284
285 (defsubst cl-minusp (number)
286 "Return t if NUMBER is negative."
287 (< number 0))
288
289 (defun cl-oddp (integer)
290 "Return t if INTEGER is odd."
291 (eq (logand integer 1) 1))
292
293 (defun cl-evenp (integer)
294 "Return t if INTEGER is even."
295 (eq (logand integer 1) 0))
296
297 (defvar cl--random-state (vector 'cl-random-state-tag -1 30 (cl-random-time)))
298
299 (defconst cl-most-positive-float nil
300 "The largest value that a Lisp float can hold.
301 If your system supports infinities, this is the largest finite value.
302 For IEEE machines, this is approximately 1.79e+308.
303 Call `cl-float-limits' to set this.")
304
305 (defconst cl-most-negative-float nil
306 "The largest negative value that a Lisp float can hold.
307 This is simply -`cl-most-positive-float'.
308 Call `cl-float-limits' to set this.")
309
310 (defconst cl-least-positive-float nil
311 "The smallest value greater than zero that a Lisp float can hold.
312 For IEEE machines, it is about 4.94e-324 if denormals are supported,
313 or 2.22e-308 if they are not.
314 Call `cl-float-limits' to set this.")
315
316 (defconst cl-least-negative-float nil
317 "The smallest value less than zero that a Lisp float can hold.
318 This is simply -`cl-least-positive-float'.
319 Call `cl-float-limits' to set this.")
320
321 (defconst cl-least-positive-normalized-float nil
322 "The smallest normalized Lisp float greater than zero.
323 This is the smallest value for which IEEE denormalization does not lose
324 precision. For IEEE machines, this value is about 2.22e-308.
325 For machines that do not support the concept of denormalization
326 and gradual underflow, this constant equals `cl-least-positive-float'.
327 Call `cl-float-limits' to set this.")
328
329 (defconst cl-least-negative-normalized-float nil
330 "The smallest normalized Lisp float less than zero.
331 This is simply -`cl-least-positive-normalized-float'.
332 Call `cl-float-limits' to set this.")
333
334 (defconst cl-float-epsilon nil
335 "The smallest positive float that adds to 1.0 to give a distinct value.
336 Adding a number less than this to 1.0 returns 1.0 due to roundoff.
337 For IEEE machines, epsilon is about 2.22e-16.
338 Call `cl-float-limits' to set this.")
339
340 (defconst cl-float-negative-epsilon nil
341 "The smallest positive float that subtracts from 1.0 to give a distinct value.
342 For IEEE machines, it is about 1.11e-16.
343 Call `cl-float-limits' to set this.")
344
345
346 ;;; Sequence functions.
347
348 (cl--defalias 'cl-copy-seq 'copy-sequence)
349
350 (declare-function cl--mapcar-many "cl-extra" (cl-func cl-seqs))
351
352 (defun cl-mapcar (cl-func cl-x &rest cl-rest)
353 "Apply FUNCTION to each element of SEQ, and make a list of the results.
354 If there are several SEQs, FUNCTION is called with that many arguments,
355 and mapping stops as soon as the shortest list runs out. With just one
356 SEQ, this is like `mapcar'. With several, it is like the Common Lisp
357 `mapcar' function extended to arbitrary sequence types.
358 \n(fn FUNCTION SEQ...)"
359 (if cl-rest
360 (if (or (cdr cl-rest) (nlistp cl-x) (nlistp (car cl-rest)))
361 (cl--mapcar-many cl-func (cons cl-x cl-rest))
362 (let ((cl-res nil) (cl-y (car cl-rest)))
363 (while (and cl-x cl-y)
364 (push (funcall cl-func (pop cl-x) (pop cl-y)) cl-res))
365 (nreverse cl-res)))
366 (mapcar cl-func cl-x)))
367
368 (cl--defalias 'cl-svref 'aref)
369
370 ;;; List functions.
371
372 (cl--defalias 'cl-first 'car)
373 (cl--defalias 'cl-second 'cadr)
374 (cl--defalias 'cl-rest 'cdr)
375 (cl--defalias 'cl-endp 'null)
376
377 (cl--defalias 'cl-third 'cl-caddr "Return the third element of the list X.")
378 (cl--defalias 'cl-fourth 'cl-cadddr "Return the fourth element of the list X.")
379
380 (defsubst cl-fifth (x)
381 "Return the fifth element of the list X."
382 (declare (gv-setter (lambda (store) `(setcar (nthcdr 4 ,x) ,store))))
383 (nth 4 x))
384
385 (defsubst cl-sixth (x)
386 "Return the sixth element of the list X."
387 (declare (gv-setter (lambda (store) `(setcar (nthcdr 5 ,x) ,store))))
388 (nth 5 x))
389
390 (defsubst cl-seventh (x)
391 "Return the seventh element of the list X."
392 (declare (gv-setter (lambda (store) `(setcar (nthcdr 6 ,x) ,store))))
393 (nth 6 x))
394
395 (defsubst cl-eighth (x)
396 "Return the eighth element of the list X."
397 (declare (gv-setter (lambda (store) `(setcar (nthcdr 7 ,x) ,store))))
398 (nth 7 x))
399
400 (defsubst cl-ninth (x)
401 "Return the ninth element of the list X."
402 (declare (gv-setter (lambda (store) `(setcar (nthcdr 8 ,x) ,store))))
403 (nth 8 x))
404
405 (defsubst cl-tenth (x)
406 "Return the tenth element of the list X."
407 (declare (gv-setter (lambda (store) `(setcar (nthcdr 9 ,x) ,store))))
408 (nth 9 x))
409
410 (defun cl-caaar (x)
411 "Return the `car' of the `car' of the `car' of X."
412 (declare (compiler-macro cl--compiler-macro-cXXr))
413 (car (car (car x))))
414
415 (defun cl-caadr (x)
416 "Return the `car' of the `car' of the `cdr' of X."
417 (declare (compiler-macro cl--compiler-macro-cXXr))
418 (car (car (cdr x))))
419
420 (defun cl-cadar (x)
421 "Return the `car' of the `cdr' of the `car' of X."
422 (declare (compiler-macro cl--compiler-macro-cXXr))
423 (car (cdr (car x))))
424
425 (defun cl-caddr (x)
426 "Return the `car' of the `cdr' of the `cdr' of X."
427 (declare (compiler-macro cl--compiler-macro-cXXr))
428 (car (cdr (cdr x))))
429
430 (defun cl-cdaar (x)
431 "Return the `cdr' of the `car' of the `car' of X."
432 (declare (compiler-macro cl--compiler-macro-cXXr))
433 (cdr (car (car x))))
434
435 (defun cl-cdadr (x)
436 "Return the `cdr' of the `car' of the `cdr' of X."
437 (declare (compiler-macro cl--compiler-macro-cXXr))
438 (cdr (car (cdr x))))
439
440 (defun cl-cddar (x)
441 "Return the `cdr' of the `cdr' of the `car' of X."
442 (declare (compiler-macro cl--compiler-macro-cXXr))
443 (cdr (cdr (car x))))
444
445 (defun cl-cdddr (x)
446 "Return the `cdr' of the `cdr' of the `cdr' of X."
447 (declare (compiler-macro cl--compiler-macro-cXXr))
448 (cdr (cdr (cdr x))))
449
450 (defun cl-caaaar (x)
451 "Return the `car' of the `car' of the `car' of the `car' of X."
452 (declare (compiler-macro cl--compiler-macro-cXXr))
453 (car (car (car (car x)))))
454
455 (defun cl-caaadr (x)
456 "Return the `car' of the `car' of the `car' of the `cdr' of X."
457 (declare (compiler-macro cl--compiler-macro-cXXr))
458 (car (car (car (cdr x)))))
459
460 (defun cl-caadar (x)
461 "Return the `car' of the `car' of the `cdr' of the `car' of X."
462 (declare (compiler-macro cl--compiler-macro-cXXr))
463 (car (car (cdr (car x)))))
464
465 (defun cl-caaddr (x)
466 "Return the `car' of the `car' of the `cdr' of the `cdr' of X."
467 (declare (compiler-macro cl--compiler-macro-cXXr))
468 (car (car (cdr (cdr x)))))
469
470 (defun cl-cadaar (x)
471 "Return the `car' of the `cdr' of the `car' of the `car' of X."
472 (declare (compiler-macro cl--compiler-macro-cXXr))
473 (car (cdr (car (car x)))))
474
475 (defun cl-cadadr (x)
476 "Return the `car' of the `cdr' of the `car' of the `cdr' of X."
477 (declare (compiler-macro cl--compiler-macro-cXXr))
478 (car (cdr (car (cdr x)))))
479
480 (defun cl-caddar (x)
481 "Return the `car' of the `cdr' of the `cdr' of the `car' of X."
482 (declare (compiler-macro cl--compiler-macro-cXXr))
483 (car (cdr (cdr (car x)))))
484
485 (defun cl-cadddr (x)
486 "Return the `car' of the `cdr' of the `cdr' of the `cdr' of X."
487 (declare (compiler-macro cl--compiler-macro-cXXr))
488 (car (cdr (cdr (cdr x)))))
489
490 (defun cl-cdaaar (x)
491 "Return the `cdr' of the `car' of the `car' of the `car' of X."
492 (declare (compiler-macro cl--compiler-macro-cXXr))
493 (cdr (car (car (car x)))))
494
495 (defun cl-cdaadr (x)
496 "Return the `cdr' of the `car' of the `car' of the `cdr' of X."
497 (declare (compiler-macro cl--compiler-macro-cXXr))
498 (cdr (car (car (cdr x)))))
499
500 (defun cl-cdadar (x)
501 "Return the `cdr' of the `car' of the `cdr' of the `car' of X."
502 (declare (compiler-macro cl--compiler-macro-cXXr))
503 (cdr (car (cdr (car x)))))
504
505 (defun cl-cdaddr (x)
506 "Return the `cdr' of the `car' of the `cdr' of the `cdr' of X."
507 (declare (compiler-macro cl--compiler-macro-cXXr))
508 (cdr (car (cdr (cdr x)))))
509
510 (defun cl-cddaar (x)
511 "Return the `cdr' of the `cdr' of the `car' of the `car' of X."
512 (declare (compiler-macro cl--compiler-macro-cXXr))
513 (cdr (cdr (car (car x)))))
514
515 (defun cl-cddadr (x)
516 "Return the `cdr' of the `cdr' of the `car' of the `cdr' of X."
517 (declare (compiler-macro cl--compiler-macro-cXXr))
518 (cdr (cdr (car (cdr x)))))
519
520 (defun cl-cdddar (x)
521 "Return the `cdr' of the `cdr' of the `cdr' of the `car' of X."
522 (declare (compiler-macro cl--compiler-macro-cXXr))
523 (cdr (cdr (cdr (car x)))))
524
525 (defun cl-cddddr (x)
526 "Return the `cdr' of the `cdr' of the `cdr' of the `cdr' of X."
527 (declare (compiler-macro cl--compiler-macro-cXXr))
528 (cdr (cdr (cdr (cdr x)))))
529
530 ;;(defun last* (x &optional n)
531 ;; "Returns the last link in the list LIST.
532 ;;With optional argument N, returns Nth-to-last link (default 1)."
533 ;; (if n
534 ;; (let ((m 0) (p x))
535 ;; (while (consp p) (cl-incf m) (pop p))
536 ;; (if (<= n 0) p
537 ;; (if (< n m) (nthcdr (- m n) x) x)))
538 ;; (while (consp (cdr x)) (pop x))
539 ;; x))
540
541 (defun cl-list* (arg &rest rest)
542 "Return a new list with specified ARGs as elements, consed to last ARG.
543 Thus, `(cl-list* A B C D)' is equivalent to `(nconc (list A B C) D)', or to
544 `(cons A (cons B (cons C D)))'.
545 \n(fn ARG...)"
546 (declare (compiler-macro cl--compiler-macro-list*))
547 (cond ((not rest) arg)
548 ((not (cdr rest)) (cons arg (car rest)))
549 (t (let* ((n (length rest))
550 (copy (copy-sequence rest))
551 (last (nthcdr (- n 2) copy)))
552 (setcdr last (car (cdr last)))
553 (cons arg copy)))))
554
555 (defun cl-ldiff (list sublist)
556 "Return a copy of LIST with the tail SUBLIST removed."
557 (let ((res nil))
558 (while (and (consp list) (not (eq list sublist)))
559 (push (pop list) res))
560 (nreverse res)))
561
562 (defun cl-copy-list (list)
563 "Return a copy of LIST, which may be a dotted list.
564 The elements of LIST are not copied, just the list structure itself."
565 (if (consp list)
566 (let ((res nil))
567 (while (consp list) (push (pop list) res))
568 (prog1 (nreverse res) (setcdr res list)))
569 (car list)))
570
571 ;; Autoloaded, but we have not loaded cl-loaddefs yet.
572 (declare-function cl-floor "cl-extra" (x &optional y))
573 (declare-function cl-ceiling "cl-extra" (x &optional y))
574 (declare-function cl-truncate "cl-extra" (x &optional y))
575 (declare-function cl-round "cl-extra" (x &optional y))
576 (declare-function cl-mod "cl-extra" (x y))
577
578 (defun cl-adjoin (cl-item cl-list &rest cl-keys)
579 "Return ITEM consed onto the front of LIST only if it's not already there.
580 Otherwise, return LIST unmodified.
581 \nKeywords supported: :test :test-not :key
582 \n(fn ITEM LIST [KEYWORD VALUE]...)"
583 (declare (compiler-macro cl--compiler-macro-adjoin))
584 (cond ((or (equal cl-keys '(:test eq))
585 (and (null cl-keys) (not (numberp cl-item))))
586 (if (memq cl-item cl-list) cl-list (cons cl-item cl-list)))
587 ((or (equal cl-keys '(:test equal)) (null cl-keys))
588 (if (member cl-item cl-list) cl-list (cons cl-item cl-list)))
589 (t (apply 'cl--adjoin cl-item cl-list cl-keys))))
590
591 (defun cl-subst (cl-new cl-old cl-tree &rest cl-keys)
592 "Substitute NEW for OLD everywhere in TREE (non-destructively).
593 Return a copy of TREE with all elements `eql' to OLD replaced by NEW.
594 \nKeywords supported: :test :test-not :key
595 \n(fn NEW OLD TREE [KEYWORD VALUE]...)"
596 (if (or cl-keys (and (numberp cl-old) (not (integerp cl-old))))
597 (apply 'cl-sublis (list (cons cl-old cl-new)) cl-tree cl-keys)
598 (cl--do-subst cl-new cl-old cl-tree)))
599
600 (defun cl--do-subst (cl-new cl-old cl-tree)
601 (cond ((eq cl-tree cl-old) cl-new)
602 ((consp cl-tree)
603 (let ((a (cl--do-subst cl-new cl-old (car cl-tree)))
604 (d (cl--do-subst cl-new cl-old (cdr cl-tree))))
605 (if (and (eq a (car cl-tree)) (eq d (cdr cl-tree)))
606 cl-tree (cons a d))))
607 (t cl-tree)))
608
609 (defun cl-acons (key value alist)
610 "Add KEY and VALUE to ALIST.
611 Return a new list with (cons KEY VALUE) as car and ALIST as cdr."
612 (cons (cons key value) alist))
613
614 (defun cl-pairlis (keys values &optional alist)
615 "Make an alist from KEYS and VALUES.
616 Return a new alist composed by associating KEYS to corresponding VALUES;
617 the process stops as soon as KEYS or VALUES run out.
618 If ALIST is non-nil, the new pairs are prepended to it."
619 (nconc (cl-mapcar 'cons keys values) alist))
620
621
622 ;;; Generalized variables.
623
624 ;; These used to be in cl-macs.el since all macros that use them (like setf)
625 ;; were autoloaded from cl-macs.el. But now that setf, push, and pop are in
626 ;; core Elisp, they need to either be right here or be autoloaded via
627 ;; cl-loaddefs.el, which is more trouble than it is worth.
628
629 ;; Some more Emacs-related place types.
630 (gv-define-simple-setter buffer-file-name set-visited-file-name t)
631 (gv-define-setter buffer-modified-p (flag &optional buf)
632 `(with-current-buffer ,buf
633 (set-buffer-modified-p ,flag)))
634 (gv-define-simple-setter buffer-name rename-buffer t)
635 (gv-define-setter buffer-string (store)
636 `(progn (erase-buffer) (insert ,store)))
637 (gv-define-simple-setter buffer-substring cl--set-buffer-substring)
638 (gv-define-simple-setter current-buffer set-buffer)
639 (gv-define-simple-setter current-case-table set-case-table)
640 (gv-define-simple-setter current-column move-to-column t)
641 (gv-define-simple-setter current-global-map use-global-map t)
642 (gv-define-setter current-input-mode (store)
643 `(progn (apply #'set-input-mode ,store) ,store))
644 (gv-define-simple-setter current-local-map use-local-map t)
645 (gv-define-simple-setter current-window-configuration
646 set-window-configuration t)
647 (gv-define-simple-setter default-file-modes set-default-file-modes t)
648 (gv-define-simple-setter documentation-property put)
649 (gv-define-setter face-background (x f &optional s)
650 `(set-face-background ,f ,x ,s))
651 (gv-define-setter face-background-pixmap (x f &optional s)
652 `(set-face-background-pixmap ,f ,x ,s))
653 (gv-define-setter face-font (x f &optional s) `(set-face-font ,f ,x ,s))
654 (gv-define-setter face-foreground (x f &optional s)
655 `(set-face-foreground ,f ,x ,s))
656 (gv-define-setter face-underline-p (x f &optional s)
657 `(set-face-underline-p ,f ,x ,s))
658 (gv-define-simple-setter file-modes set-file-modes t)
659 (gv-define-simple-setter frame-height set-screen-height t)
660 (gv-define-simple-setter frame-parameters modify-frame-parameters t)
661 (gv-define-simple-setter frame-visible-p cl--set-frame-visible-p)
662 (gv-define-simple-setter frame-width set-screen-width t)
663 (gv-define-simple-setter getenv setenv t)
664 (gv-define-simple-setter get-register set-register)
665 (gv-define-simple-setter global-key-binding global-set-key)
666 (gv-define-simple-setter local-key-binding local-set-key)
667 (gv-define-simple-setter mark set-mark t)
668 (gv-define-simple-setter mark-marker set-mark t)
669 (gv-define-simple-setter marker-position set-marker t)
670 (gv-define-setter mouse-position (store scr)
671 `(set-mouse-position ,scr (car ,store) (cadr ,store)
672 (cddr ,store)))
673 (gv-define-simple-setter point goto-char)
674 (gv-define-simple-setter point-marker goto-char t)
675 (gv-define-setter point-max (store)
676 `(progn (narrow-to-region (point-min) ,store) ,store))
677 (gv-define-setter point-min (store)
678 `(progn (narrow-to-region ,store (point-max)) ,store))
679 (gv-define-setter read-mouse-position (store scr)
680 `(set-mouse-position ,scr (car ,store) (cdr ,store)))
681 (gv-define-simple-setter screen-height set-screen-height t)
682 (gv-define-simple-setter screen-width set-screen-width t)
683 (gv-define-simple-setter selected-window select-window)
684 (gv-define-simple-setter selected-screen select-screen)
685 (gv-define-simple-setter selected-frame select-frame)
686 (gv-define-simple-setter standard-case-table set-standard-case-table)
687 (gv-define-simple-setter syntax-table set-syntax-table)
688 (gv-define-simple-setter visited-file-modtime set-visited-file-modtime t)
689 (gv-define-setter window-height (store)
690 `(progn (enlarge-window (- ,store (window-height))) ,store))
691 (gv-define-setter window-width (store)
692 `(progn (enlarge-window (- ,store (window-width)) t) ,store))
693 (gv-define-simple-setter x-get-secondary-selection x-own-secondary-selection t)
694 (gv-define-simple-setter x-get-selection x-own-selection t)
695
696 ;; More complex setf-methods.
697
698 ;; This is a hack that allows (setf (eq a 7) B) to mean either
699 ;; (setq a 7) or (setq a nil) depending on whether B is nil or not.
700 ;; This is useful when you have control over the PLACE but not over
701 ;; the VALUE, as is the case in define-minor-mode's :variable.
702 ;; It turned out that :variable needed more flexibility anyway, so
703 ;; this doesn't seem too useful now.
704 (gv-define-expander eq
705 (lambda (do place val)
706 (gv-letplace (getter setter) place
707 (macroexp-let2 nil val val
708 (funcall do `(eq ,getter ,val)
709 (lambda (v)
710 `(cond
711 (,v ,(funcall setter val))
712 ((eq ,getter ,val) ,(funcall setter `(not ,val))))))))))
713
714 (gv-define-expander substring
715 (lambda (do place from &optional to)
716 (gv-letplace (getter setter) place
717 (macroexp-let2 nil start from
718 (macroexp-let2 nil end to
719 (funcall do `(substring ,getter ,start ,end)
720 (lambda (v)
721 (funcall setter `(cl--set-substring
722 ,getter ,start ,end ,v)))))))))
723
724 ;;; Miscellaneous.
725
726 ;;;###autoload
727 (progn
728 ;; Make sure functions defined with cl-defsubst can be inlined even in
729 ;; packages which do not require CL.
730 (autoload 'cl--defsubst-expand "cl-macs")
731 ;; Autoload, so autoload.el and font-lock can use it even when CL
732 ;; is not loaded.
733 (put 'cl-defun 'doc-string-elt 3)
734 (put 'cl-defmacro 'doc-string-elt 3)
735 (put 'cl-defsubst 'doc-string-elt 3)
736 (put 'cl-defstruct 'doc-string-elt 2))
737
738 (load "cl-loaddefs" nil 'quiet)
739
740 (provide 'cl-lib)
741
742 (run-hooks 'cl-load-hook)
743
744 ;; Local variables:
745 ;; byte-compile-dynamic: t
746 ;; byte-compile-warnings: (not cl-functions)
747 ;; End:
748
749 ;;; cl-lib.el ends here