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