Mercurial > emacs
annotate lisp/emacs-lisp/cl.el @ 67172:8eef40e0afc2
*** empty log message ***
author | Luc Teirlinck <teirllm@auburn.edu> |
---|---|
date | Mon, 28 Nov 2005 01:53:12 +0000 |
parents | 5b1a238fcbb4 |
children | c120fbe75b72 2d92f5c9d6ae |
rev | line source |
---|---|
16057
a74507d555ba
Turn on byte-compile-dynamic.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1 ;;; cl.el --- Common Lisp extensions for Emacs -*-byte-compile-dynamic: t;-*- |
4355 | 2 |
64751
5b1a238fcbb4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 1993, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. |
4355 | 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 | |
12244 | 13 ;; the Free Software Foundation; either version 2, or (at your option) |
4355 | 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 | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
4355 | 25 |
7942 | 26 ;;; Commentary: |
4355 | 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 ;; | |
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 | |
7942 | 41 ;;; Future notes: |
4355 | 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 | |
7942 | 48 ;;; Change Log: |
4355 | 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 | |
7942 | 94 ;;; Code: |
4355 | 95 |
96 (defvar cl-optimize-speed 1) | |
97 (defvar cl-optimize-safety 1) | |
98 | |
99 | |
24790
a6b268f4dfc7
(custom-print-functions): Add autoload cookie.
Karl Heuer <kwzh@gnu.org>
parents:
21465
diff
changeset
|
100 ;;;###autoload |
4355 | 101 (defvar custom-print-functions nil |
102 "This is a list of functions that format user objects for printing. | |
103 Each function is called in turn with three arguments: the object, the | |
104 stream, and the print level (currently ignored). If it is able to | |
105 print the object it returns true; otherwise it returns nil and the | |
106 printer proceeds to the next function on the list. | |
107 | |
108 This variable is not used at present, but it is defined in hopes that | |
109 a future Emacs interpreter will be able to use it.") | |
110 | |
57519
817362bee028
(cl-unload-hook): Don't defvar it, just set it.
Richard M. Stallman <rms@gnu.org>
parents:
53597
diff
changeset
|
111 (add-hook 'cl-unload-hook 'cl-cannot-unload) |
53597
c2d405bc6059
(cl-cannot-unload): New function.
Richard M. Stallman <rms@gnu.org>
parents:
53595
diff
changeset
|
112 (defun cl-cannot-unload () |
c2d405bc6059
(cl-cannot-unload): New function.
Richard M. Stallman <rms@gnu.org>
parents:
53595
diff
changeset
|
113 (error "Cannot unload the feature `cl'")) |
4355 | 114 |
115 ;;; Generalized variables. These macros are defined here so that they | |
116 ;;; can safely be used in .emacs files. | |
117 | |
118 (defmacro incf (place &optional x) | |
28824
add63b27c709
Doc fixes; mainly avoid duplicating arg
Dave Love <fx@gnu.org>
parents:
28038
diff
changeset
|
119 "Increment PLACE by X (1 by default). |
4355 | 120 PLACE may be a symbol, or any generalized variable allowed by `setf'. |
121 The return value is the incremented value of PLACE." | |
122 (if (symbolp place) | |
123 (list 'setq place (if x (list '+ place x) (list '1+ place))) | |
124 (list 'callf '+ place (or x 1)))) | |
125 | |
126 (defmacro decf (place &optional x) | |
28824
add63b27c709
Doc fixes; mainly avoid duplicating arg
Dave Love <fx@gnu.org>
parents:
28038
diff
changeset
|
127 "Decrement PLACE by X (1 by default). |
4355 | 128 PLACE may be a symbol, or any generalized variable allowed by `setf'. |
129 The return value is the decremented value of PLACE." | |
130 (if (symbolp place) | |
131 (list 'setq place (if x (list '- place x) (list '1- place))) | |
132 (list 'callf '- place (or x 1)))) | |
133 | |
134 (defmacro pop (place) | |
28824
add63b27c709
Doc fixes; mainly avoid duplicating arg
Dave Love <fx@gnu.org>
parents:
28038
diff
changeset
|
135 "Remove and return the head of the list stored in PLACE. |
4355 | 136 Analogous to (prog1 (car PLACE) (setf PLACE (cdr PLACE))), though more |
137 careful about evaluating each argument only once and in the right order. | |
138 PLACE may be a symbol, or any generalized variable allowed by `setf'." | |
139 (if (symbolp place) | |
140 (list 'car (list 'prog1 place (list 'setq place (list 'cdr place)))) | |
141 (cl-do-pop place))) | |
142 | |
143 (defmacro push (x place) | |
28824
add63b27c709
Doc fixes; mainly avoid duplicating arg
Dave Love <fx@gnu.org>
parents:
28038
diff
changeset
|
144 "Insert X at the head of the list stored in PLACE. |
4355 | 145 Analogous to (setf PLACE (cons X PLACE)), though more careful about |
146 evaluating each argument only once and in the right order. PLACE may | |
147 be a symbol, or any generalized variable allowed by `setf'." | |
148 (if (symbolp place) (list 'setq place (list 'cons x place)) | |
149 (list 'callf2 'cons x place))) | |
150 | |
151 (defmacro pushnew (x place &rest keys) | |
152 "(pushnew X PLACE): insert X at the head of the list if not already there. | |
153 Like (push X PLACE), except that the list is unmodified if X is `eql' to | |
154 an element already on the list. | |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
155 \nKeywords supported: :test :test-not :key |
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
156 \n(fn X PLACE [KEYWORD VALUE]...)" |
4355 | 157 (if (symbolp place) (list 'setq place (list* 'adjoin x place keys)) |
158 (list* 'callf2 'adjoin x place keys))) | |
159 | |
160 (defun cl-set-elt (seq n val) | |
161 (if (listp seq) (setcar (nthcdr n seq) val) (aset seq n val))) | |
162 | |
163 (defun cl-set-nthcdr (n list x) | |
164 (if (<= n 0) x (setcdr (nthcdr (1- n) list) x) list)) | |
165 | |
166 (defun cl-set-buffer-substring (start end val) | |
167 (save-excursion (delete-region start end) | |
168 (goto-char start) | |
169 (insert val) | |
170 val)) | |
171 | |
172 (defun cl-set-substring (str start end val) | |
173 (if end (if (< end 0) (incf end (length str))) | |
174 (setq end (length str))) | |
46356
35f0290a4079
(cl-set-substring): Fix thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46325
diff
changeset
|
175 (if (< start 0) (incf start (length str))) |
4355 | 176 (concat (and (> start 0) (substring str 0 start)) |
177 val | |
178 (and (< end (length str)) (substring str end)))) | |
179 | |
180 | |
181 ;;; Control structures. | |
182 | |
183 ;;; These macros are so simple and so often-used that it's better to have | |
184 ;;; them all the time than to load them from cl-macs.el. | |
185 | |
186 (defun cl-map-extents (&rest cl-args) | |
26939
672e75118c0f
Remove Emacs 18 compatibility code. Prepend `cl-' to autoload names
Dave Love <fx@gnu.org>
parents:
24790
diff
changeset
|
187 (apply 'cl-map-overlays cl-args)) |
4355 | 188 |
189 | |
190 ;;; Blocks and exits. | |
191 | |
192 (defalias 'cl-block-wrapper 'identity) | |
193 (defalias 'cl-block-throw 'throw) | |
194 | |
195 | |
196 ;;; Multiple values. True multiple values are not supported, or even | |
197 ;;; simulated. Instead, multiple-value-bind and friends simply expect | |
198 ;;; the target form to return the values as a list. | |
199 | |
41109
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
200 (defsubst values (&rest values) |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
201 "Return multiple values, Common Lisp style. |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
202 The arguments of `values' are the values |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
203 that the containing function should return." |
46027
38072df535c8
(values): Simplify definition.
Richard M. Stallman <rms@gnu.org>
parents:
45739
diff
changeset
|
204 values) |
41109
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
205 |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
206 (defsubst values-list (list) |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
207 "Return multiple values, Common Lisp style, taken from a list. |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
208 LIST specifies the list of values |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
209 that the containing function should return." |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
210 list) |
4355 | 211 |
41109
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
212 (defsubst multiple-value-list (expression) |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
213 "Return a list of the multiple values produced by EXPRESSION. |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
214 This handles multiple values in Common Lisp style, but it does not |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
215 work right when EXPRESSION calls an ordinary Emacs Lisp function |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
216 that returns just one value." |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
217 expression) |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
218 |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
219 (defsubst multiple-value-apply (function expression) |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
220 "Evaluate EXPRESSION to get multiple values and apply FUNCTION to them. |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
221 This handles multiple values in Common Lisp style, but it does not work |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
222 right when EXPRESSION calls an ordinary Emacs Lisp function that returns just |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
223 one value." |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
224 (apply function expression)) |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
225 |
48462
b9d1a3c5291e
(multiple-value-call): Add docstring.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46356
diff
changeset
|
226 (defalias 'multiple-value-call 'apply |
b9d1a3c5291e
(multiple-value-call): Add docstring.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46356
diff
changeset
|
227 "Apply FUNCTION to ARGUMENTS, taking multiple values into account. |
b9d1a3c5291e
(multiple-value-call): Add docstring.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46356
diff
changeset
|
228 This implementation only handles the case where there is only one argument.") |
46325
606fc43dc51e
(multiple-value-call): Add alias.
Richard M. Stallman <rms@gnu.org>
parents:
46027
diff
changeset
|
229 |
41109
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
230 (defsubst nth-value (n expression) |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
231 "Evaluate EXPRESSION to get multiple values and return the Nth one. |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
232 This handles multiple values in Common Lisp style, but it does not work |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
233 right when EXPRESSION calls an ordinary Emacs Lisp function that returns just |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
234 one value." |
0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents:
39630
diff
changeset
|
235 (nth n expression)) |
4355 | 236 |
237 ;;; Macros. | |
238 | |
239 (defvar cl-macro-environment nil) | |
240 (defvar cl-old-macroexpand (prog1 (symbol-function 'macroexpand) | |
241 (defalias 'macroexpand 'cl-macroexpand))) | |
242 | |
243 (defun cl-macroexpand (cl-macro &optional cl-env) | |
9769
6a9124f418db
(cl-macroexpand): keep documentation from `macroexpand'.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
244 "Return result of expanding macros at top level of FORM. |
6a9124f418db
(cl-macroexpand): keep documentation from `macroexpand'.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
245 If FORM is not a macro call, it is returned unchanged. |
6a9124f418db
(cl-macroexpand): keep documentation from `macroexpand'.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
246 Otherwise, the macro is expanded and the expansion is considered |
6a9124f418db
(cl-macroexpand): keep documentation from `macroexpand'.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
247 in place of FORM. When a non-macro-call results, it is returned. |
6a9124f418db
(cl-macroexpand): keep documentation from `macroexpand'.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
248 |
30998 | 249 The second optional arg ENVIRONMENT specifies an environment of macro |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
250 definitions to shadow the loaded ones for use in file byte-compilation. |
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
251 \n(fn FORM &optional ENVIRONMENT)" |
4355 | 252 (let ((cl-macro-environment cl-env)) |
253 (while (progn (setq cl-macro (funcall cl-old-macroexpand cl-macro cl-env)) | |
254 (and (symbolp cl-macro) | |
255 (cdr (assq (symbol-name cl-macro) cl-env)))) | |
256 (setq cl-macro (cadr (assq (symbol-name cl-macro) cl-env)))) | |
257 cl-macro)) | |
258 | |
259 | |
260 ;;; Declarations. | |
261 | |
262 (defvar cl-compiling-file nil) | |
263 (defun cl-compiling-file () | |
264 (or cl-compiling-file | |
265 (and (boundp 'outbuffer) (bufferp (symbol-value 'outbuffer)) | |
266 (equal (buffer-name (symbol-value 'outbuffer)) | |
267 " *Compiler Output*")))) | |
268 | |
269 (defvar cl-proclaims-deferred nil) | |
270 | |
271 (defun proclaim (spec) | |
272 (if (fboundp 'cl-do-proclaim) (cl-do-proclaim spec t) | |
273 (push spec cl-proclaims-deferred)) | |
274 nil) | |
275 | |
276 (defmacro declaim (&rest specs) | |
277 (let ((body (mapcar (function (lambda (x) (list 'proclaim (list 'quote x)))) | |
278 specs))) | |
279 (if (cl-compiling-file) (list* 'eval-when '(compile load eval) body) | |
280 (cons 'progn body)))) ; avoid loading cl-macs.el for eval-when | |
281 | |
282 | |
283 ;;; Symbols. | |
284 | |
285 (defun cl-random-time () | |
286 (let* ((time (copy-sequence (current-time-string))) (i (length time)) (v 0)) | |
287 (while (>= (decf i) 0) (setq v (+ (* v 3) (aref time i)))) | |
288 v)) | |
289 | |
290 (defvar *gensym-counter* (* (logand (cl-random-time) 1023) 100)) | |
291 | |
292 | |
293 ;;; Numbers. | |
294 | |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
295 (defun floatp-safe (object) |
62424
ecbd5b866b1d
(eql, floatp-safe, plusp, minusp, oddp, evenp, list*): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
57519
diff
changeset
|
296 "Return t if OBJECT is a floating point number. |
4355 | 297 On Emacs versions that lack floating-point support, this function |
298 always returns nil." | |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
299 (and (numberp object) (not (integerp object)))) |
4355 | 300 |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
301 (defun plusp (number) |
62424
ecbd5b866b1d
(eql, floatp-safe, plusp, minusp, oddp, evenp, list*): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
57519
diff
changeset
|
302 "Return t if NUMBER is positive." |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
303 (> number 0)) |
4355 | 304 |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
305 (defun minusp (number) |
62424
ecbd5b866b1d
(eql, floatp-safe, plusp, minusp, oddp, evenp, list*): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
57519
diff
changeset
|
306 "Return t if NUMBER is negative." |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
307 (< number 0)) |
4355 | 308 |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
309 (defun oddp (integer) |
62424
ecbd5b866b1d
(eql, floatp-safe, plusp, minusp, oddp, evenp, list*): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
57519
diff
changeset
|
310 "Return t if INTEGER is odd." |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
311 (eq (logand integer 1) 1)) |
4355 | 312 |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
313 (defun evenp (integer) |
62424
ecbd5b866b1d
(eql, floatp-safe, plusp, minusp, oddp, evenp, list*): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
57519
diff
changeset
|
314 "Return t if INTEGER is even." |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
315 (eq (logand integer 1) 0)) |
4355 | 316 |
317 (defvar *random-state* (vector 'cl-random-state-tag -1 30 (cl-random-time))) | |
318 | |
319 ;;; The following are actually set by cl-float-limits. | |
320 (defconst most-positive-float nil) | |
321 (defconst most-negative-float nil) | |
322 (defconst least-positive-float nil) | |
323 (defconst least-negative-float nil) | |
324 (defconst least-positive-normalized-float nil) | |
325 (defconst least-negative-normalized-float nil) | |
326 (defconst float-epsilon nil) | |
327 (defconst float-negative-epsilon nil) | |
328 | |
329 | |
330 ;;; Sequence functions. | |
331 | |
332 (defalias 'copy-seq 'copy-sequence) | |
333 | |
334 (defun mapcar* (cl-func cl-x &rest cl-rest) | |
335 "Apply FUNCTION to each element of SEQ, and make a list of the results. | |
336 If there are several SEQs, FUNCTION is called with that many arguments, | |
337 and mapping stops as soon as the shortest list runs out. With just one | |
338 SEQ, this is like `mapcar'. With several, it is like the Common Lisp | |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
339 `mapcar' function extended to arbitrary sequence types. |
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
340 \n(fn FUNCTION SEQ...)" |
4355 | 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 | |
41776
2682c3f36a6a
(svref): New alias.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41109
diff
changeset
|
350 (defalias 'svref 'aref) |
4355 | 351 |
352 ;;; List functions. | |
353 | |
354 (defalias 'first 'car) | |
30617
5e28cf8a757a
(third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents:
30613
diff
changeset
|
355 (defalias 'second 'cadr) |
4355 | 356 (defalias 'rest 'cdr) |
357 (defalias 'endp 'null) | |
358 | |
30617
5e28cf8a757a
(third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents:
30613
diff
changeset
|
359 (defun third (x) |
34027
5fc589b932e9
(third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30998
diff
changeset
|
360 "Return the third element of the list X." |
5fc589b932e9
(third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30998
diff
changeset
|
361 (car (cdr (cdr x)))) |
4355 | 362 |
30617
5e28cf8a757a
(third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents:
30613
diff
changeset
|
363 (defun fourth (x) |
34027
5fc589b932e9
(third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30998
diff
changeset
|
364 "Return the fourth element of the list X." |
5fc589b932e9
(third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30998
diff
changeset
|
365 (nth 3 x)) |
4355 | 366 |
30617
5e28cf8a757a
(third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents:
30613
diff
changeset
|
367 (defun fifth (x) |
34027
5fc589b932e9
(third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30998
diff
changeset
|
368 "Return the fifth element of the list X." |
5fc589b932e9
(third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30998
diff
changeset
|
369 (nth 4 x)) |
4355 | 370 |
30617
5e28cf8a757a
(third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents:
30613
diff
changeset
|
371 (defun sixth (x) |
34027
5fc589b932e9
(third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30998
diff
changeset
|
372 "Return the sixth element of the list X." |
5fc589b932e9
(third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30998
diff
changeset
|
373 (nth 5 x)) |
4355 | 374 |
30617
5e28cf8a757a
(third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents:
30613
diff
changeset
|
375 (defun seventh (x) |
34027
5fc589b932e9
(third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30998
diff
changeset
|
376 "Return the seventh element of the list X." |
5fc589b932e9
(third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30998
diff
changeset
|
377 (nth 6 x)) |
4355 | 378 |
30617
5e28cf8a757a
(third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents:
30613
diff
changeset
|
379 (defun eighth (x) |
34027
5fc589b932e9
(third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30998
diff
changeset
|
380 "Return the eighth element of the list X." |
5fc589b932e9
(third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30998
diff
changeset
|
381 (nth 7 x)) |
4355 | 382 |
30617
5e28cf8a757a
(third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents:
30613
diff
changeset
|
383 (defun ninth (x) |
34027
5fc589b932e9
(third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30998
diff
changeset
|
384 "Return the ninth element of the list X." |
5fc589b932e9
(third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30998
diff
changeset
|
385 (nth 8 x)) |
4355 | 386 |
30617
5e28cf8a757a
(third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents:
30613
diff
changeset
|
387 (defun tenth (x) |
34027
5fc589b932e9
(third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30998
diff
changeset
|
388 "Return the tenth element of the list X." |
5fc589b932e9
(third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30998
diff
changeset
|
389 (nth 9 x)) |
4355 | 390 |
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 | |
19585
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
487 ;;(defun last* (x &optional n) |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
488 ;; "Returns the last link in the list LIST. |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
489 ;;With optional argument N, returns Nth-to-last link (default 1)." |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
490 ;; (if n |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
491 ;; (let ((m 0) (p x)) |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
492 ;; (while (consp p) (incf m) (pop p)) |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
493 ;; (if (<= n 0) p |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
494 ;; (if (< n m) (nthcdr (- m n) x) x))) |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
495 ;; (while (consp (cdr x)) (pop x)) |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
496 ;; x)) |
4355 | 497 |
498 (defun list* (arg &rest rest) ; See compiler macro in cl-macs.el | |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
499 "Return a new list with specified ARGs as elements, consed to last ARG. |
4355 | 500 Thus, `(list* A B C D)' is equivalent to `(nconc (list A B C) D)', or to |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
501 `(cons A (cons B (cons C D)))'. |
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
502 \n(fn ARG...)" |
4355 | 503 (cond ((not rest) arg) |
504 ((not (cdr rest)) (cons arg (car rest))) | |
505 (t (let* ((n (length rest)) | |
506 (copy (copy-sequence rest)) | |
507 (last (nthcdr (- n 2) copy))) | |
508 (setcdr last (car (cdr last))) | |
509 (cons arg copy))))) | |
510 | |
511 (defun ldiff (list sublist) | |
512 "Return a copy of LIST with the tail SUBLIST removed." | |
513 (let ((res nil)) | |
514 (while (and (consp list) (not (eq list sublist))) | |
515 (push (pop list) res)) | |
516 (nreverse res))) | |
517 | |
45739
af30a5644ebc
(copy-list): Moved back from subr.el.
Richard M. Stallman <rms@gnu.org>
parents:
45695
diff
changeset
|
518 (defun copy-list (list) |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
519 "Return a copy of LIST, which may be a dotted list. |
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
520 The elements of LIST are not copied, just the list structure itself." |
45739
af30a5644ebc
(copy-list): Moved back from subr.el.
Richard M. Stallman <rms@gnu.org>
parents:
45695
diff
changeset
|
521 (if (consp list) |
af30a5644ebc
(copy-list): Moved back from subr.el.
Richard M. Stallman <rms@gnu.org>
parents:
45695
diff
changeset
|
522 (let ((res nil)) |
af30a5644ebc
(copy-list): Moved back from subr.el.
Richard M. Stallman <rms@gnu.org>
parents:
45695
diff
changeset
|
523 (while (consp list) (push (pop list) res)) |
af30a5644ebc
(copy-list): Moved back from subr.el.
Richard M. Stallman <rms@gnu.org>
parents:
45695
diff
changeset
|
524 (prog1 (nreverse res) (setcdr res list))) |
af30a5644ebc
(copy-list): Moved back from subr.el.
Richard M. Stallman <rms@gnu.org>
parents:
45695
diff
changeset
|
525 (car list))) |
af30a5644ebc
(copy-list): Moved back from subr.el.
Richard M. Stallman <rms@gnu.org>
parents:
45695
diff
changeset
|
526 |
4355 | 527 (defun cl-maclisp-member (item list) |
528 (while (and list (not (equal item (car list)))) (setq list (cdr list))) | |
529 list) | |
530 | |
531 (defalias 'cl-member 'memq) ; for compatibility with old CL package | |
532 (defalias 'cl-floor 'floor*) | |
533 (defalias 'cl-ceiling 'ceiling*) | |
534 (defalias 'cl-truncate 'truncate*) | |
535 (defalias 'cl-round 'round*) | |
536 (defalias 'cl-mod 'mod*) | |
537 | |
538 (defun adjoin (cl-item cl-list &rest cl-keys) ; See compiler macro in cl-macs | |
539 "Return ITEM consed onto the front of LIST only if it's not already there. | |
540 Otherwise, return LIST unmodified. | |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
541 \nKeywords supported: :test :test-not :key |
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
542 \n(fn ITEM LIST [KEYWORD VALUE]...)" |
4355 | 543 (cond ((or (equal cl-keys '(:test eq)) |
544 (and (null cl-keys) (not (numberp cl-item)))) | |
545 (if (memq cl-item cl-list) cl-list (cons cl-item cl-list))) | |
546 ((or (equal cl-keys '(:test equal)) (null cl-keys)) | |
547 (if (member cl-item cl-list) cl-list (cons cl-item cl-list))) | |
548 (t (apply 'cl-adjoin cl-item cl-list cl-keys)))) | |
549 | |
550 (defun subst (cl-new cl-old cl-tree &rest cl-keys) | |
551 "Substitute NEW for OLD everywhere in TREE (non-destructively). | |
552 Return a copy of TREE with all elements `eql' to OLD replaced by NEW. | |
62626
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
553 \nKeywords supported: :test :test-not :key |
970aed705a2a
(pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents:
62424
diff
changeset
|
554 \n(fn NEW OLD TREE [KEYWORD VALUE]...)" |
4355 | 555 (if (or cl-keys (and (numberp cl-old) (not (integerp cl-old)))) |
556 (apply 'sublis (list (cons cl-old cl-new)) cl-tree cl-keys) | |
557 (cl-do-subst cl-new cl-old cl-tree))) | |
558 | |
559 (defun cl-do-subst (cl-new cl-old cl-tree) | |
560 (cond ((eq cl-tree cl-old) cl-new) | |
561 ((consp cl-tree) | |
562 (let ((a (cl-do-subst cl-new cl-old (car cl-tree))) | |
563 (d (cl-do-subst cl-new cl-old (cdr cl-tree)))) | |
564 (if (and (eq a (car cl-tree)) (eq d (cdr cl-tree))) | |
565 cl-tree (cons a d)))) | |
566 (t cl-tree))) | |
567 | |
62642
59b6666e38f9
(acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
62630
diff
changeset
|
568 (defun acons (key value alist) |
59b6666e38f9
(acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
62630
diff
changeset
|
569 "Add KEY and VALUE to ALIST. |
59b6666e38f9
(acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
62630
diff
changeset
|
570 Return a new list with (cons KEY VALUE) as car and ALIST as cdr." |
59b6666e38f9
(acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
62630
diff
changeset
|
571 (cons (cons key value) alist)) |
59b6666e38f9
(acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
62630
diff
changeset
|
572 |
59b6666e38f9
(acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
62630
diff
changeset
|
573 (defun pairlis (keys values &optional alist) |
59b6666e38f9
(acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
62630
diff
changeset
|
574 "Make an alist from KEYS and VALUES. |
59b6666e38f9
(acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
62630
diff
changeset
|
575 Return a new alist composed by associating KEYS to corresponding VALUES; |
59b6666e38f9
(acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
62630
diff
changeset
|
576 the process stops as soon as KEYS or VALUES run out. |
59b6666e38f9
(acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
62630
diff
changeset
|
577 If ALIST is non-nil, the new pairs are prepended to it." |
59b6666e38f9
(acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
62630
diff
changeset
|
578 (nconc (mapcar* 'cons keys values) alist)) |
4355 | 579 |
580 | |
581 ;;; Miscellaneous. | |
582 | |
583 (put 'cl-assertion-failed 'error-conditions '(error)) | |
584 (put 'cl-assertion-failed 'error-message "Assertion failed") | |
585 | |
30613
a262f769fc3d
(first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents:
28824
diff
changeset
|
586 (defvar cl-fake-autoloads nil |
a262f769fc3d
(first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents:
28824
diff
changeset
|
587 "Non-nil means don't make CL functions autoload.") |
a262f769fc3d
(first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents:
28824
diff
changeset
|
588 |
4355 | 589 ;;; Autoload the other portions of the package. |
53595
7ea1b7196d49
*** empty log message ***
Luc Teirlinck <teirllm@auburn.edu>
parents:
53594
diff
changeset
|
590 ;; We want to replace the basic versions of dolist, dotimes, declare below. |
36551
54fe96bd9530
(dotimes, dolist): Undef prior to autoloading
Dave Love <fx@gnu.org>
parents:
34899
diff
changeset
|
591 (fmakunbound 'dolist) |
54fe96bd9530
(dotimes, dolist): Undef prior to autoloading
Dave Love <fx@gnu.org>
parents:
34899
diff
changeset
|
592 (fmakunbound 'dotimes) |
53594
587ca9eaf25e
Add `fmakunbound' for `declare'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
593 (fmakunbound 'declare) |
4355 | 594 (mapcar (function |
595 (lambda (set) | |
30613
a262f769fc3d
(first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents:
28824
diff
changeset
|
596 (let ((file (if cl-fake-autoloads "<none>" (car set)))) |
a262f769fc3d
(first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents:
28824
diff
changeset
|
597 (mapcar (function |
a262f769fc3d
(first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents:
28824
diff
changeset
|
598 (lambda (func) |
a262f769fc3d
(first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents:
28824
diff
changeset
|
599 (autoload func (car set) nil nil (nth 1 set)))) |
a262f769fc3d
(first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents:
28824
diff
changeset
|
600 (cddr set))))) |
4355 | 601 '(("cl-extra" nil |
602 coerce equalp cl-map-keymap maplist mapc mapl mapcan mapcon | |
603 cl-map-keymap cl-map-keymap-recursively cl-map-intervals | |
604 cl-map-overlays cl-set-frame-visible-p cl-float-limits | |
28038
5ef76039360b
Remove expt, delete, rassoc from autoloads
Dave Love <fx@gnu.org>
parents:
27586
diff
changeset
|
605 gcd lcm isqrt floor* ceiling* truncate* round* |
4355 | 606 mod* rem* signum random* make-random-state random-state-p |
607 subseq concatenate cl-mapcar-many map some every notany | |
608 notevery revappend nreconc list-length tailp copy-tree get* getf | |
26939
672e75118c0f
Remove Emacs 18 compatibility code. Prepend `cl-' to autoload names
Dave Love <fx@gnu.org>
parents:
24790
diff
changeset
|
609 cl-set-getf cl-do-remf remprop cl-make-hash-table cl-hash-lookup |
672e75118c0f
Remove Emacs 18 compatibility code. Prepend `cl-' to autoload names
Dave Love <fx@gnu.org>
parents:
24790
diff
changeset
|
610 cl-gethash cl-puthash cl-remhash cl-clrhash cl-maphash cl-hash-table-p |
672e75118c0f
Remove Emacs 18 compatibility code. Prepend `cl-' to autoload names
Dave Love <fx@gnu.org>
parents:
24790
diff
changeset
|
611 cl-hash-table-count cl-progv-before cl-prettyexpand |
4355 | 612 cl-macroexpand-all) |
613 ("cl-seq" nil | |
30613
a262f769fc3d
(first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents:
28824
diff
changeset
|
614 reduce fill replace remove* remove-if remove-if-not |
28038
5ef76039360b
Remove expt, delete, rassoc from autoloads
Dave Love <fx@gnu.org>
parents:
27586
diff
changeset
|
615 delete* delete-if delete-if-not remove-duplicates |
4355 | 616 delete-duplicates substitute substitute-if substitute-if-not |
617 nsubstitute nsubstitute-if nsubstitute-if-not find find-if | |
618 find-if-not position position-if position-if-not count count-if | |
619 count-if-not mismatch search sort* stable-sort merge member* | |
620 member-if member-if-not cl-adjoin assoc* assoc-if assoc-if-not | |
28038
5ef76039360b
Remove expt, delete, rassoc from autoloads
Dave Love <fx@gnu.org>
parents:
27586
diff
changeset
|
621 rassoc* rassoc-if rassoc-if-not union nunion intersection |
4355 | 622 nintersection set-difference nset-difference set-exclusive-or |
623 nset-exclusive-or subsetp subst-if subst-if-not nsubst nsubst-if | |
624 nsubst-if-not sublis nsublis tree-equal) | |
625 ("cl-macs" nil | |
626 gensym gentemp typep cl-do-pop get-setf-method | |
627 cl-struct-setf-expander compiler-macroexpand cl-compile-time-init) | |
628 ("cl-macs" t | |
629 defun* defmacro* function* destructuring-bind eval-when | |
26939
672e75118c0f
Remove Emacs 18 compatibility code. Prepend `cl-' to autoload names
Dave Love <fx@gnu.org>
parents:
24790
diff
changeset
|
630 load-time-value case ecase typecase etypecase |
27509
3911c25d526f
Replace autoloads for dolist, dotimes.
Dave Love <fx@gnu.org>
parents:
27485
diff
changeset
|
631 block return return-from loop do do* dolist dotimes do-symbols |
4355 | 632 do-all-symbols psetq progv flet labels macrolet symbol-macrolet |
633 lexical-let lexical-let* multiple-value-bind multiple-value-setq | |
634 locally the declare define-setf-method defsetf define-modify-macro | |
635 setf psetf remf shiftf rotatef letf letf* callf callf2 defstruct | |
636 check-type assert ignore-errors define-compiler-macro))) | |
637 | |
638 ;;; Define data for indentation and edebug. | |
639 (mapcar (function | |
640 (lambda (entry) | |
641 (mapcar (function | |
642 (lambda (func) | |
643 (put func 'lisp-indent-function (nth 1 entry)) | |
644 (put func 'lisp-indent-hook (nth 1 entry)) | |
645 (or (get func 'edebug-form-spec) | |
646 (put func 'edebug-form-spec (nth 2 entry))))) | |
647 (car entry)))) | |
648 '(((defun* defmacro*) 2) | |
649 ((function*) nil | |
650 (&or symbolp ([&optional 'macro] 'lambda (&rest sexp) &rest form))) | |
651 ((eval-when) 1 (sexp &rest form)) | |
652 ((declare) nil (&rest sexp)) | |
653 ((the) 1 (sexp &rest form)) | |
654 ((case ecase typecase etypecase) 1 (form &rest (sexp &rest form))) | |
655 ((block return-from) 1 (sexp &rest form)) | |
656 ((return) nil (&optional form)) | |
657 ((do do*) 2 ((&rest &or symbolp (symbolp &optional form form)) | |
658 (form &rest form) | |
659 &rest form)) | |
660 ((do-symbols) 1 ((symbolp form &optional form form) &rest form)) | |
661 ((do-all-symbols) 1 ((symbolp form &optional form) &rest form)) | |
662 ((psetq setf psetf) nil edebug-setq-form) | |
663 ((progv) 2 (&rest form)) | |
664 ((flet labels macrolet) 1 | |
665 ((&rest (sexp sexp &rest form)) &rest form)) | |
666 ((symbol-macrolet lexical-let lexical-let*) 1 | |
667 ((&rest &or symbolp (symbolp form)) &rest form)) | |
668 ((multiple-value-bind) 2 ((&rest symbolp) &rest form)) | |
669 ((multiple-value-setq) 1 ((&rest symbolp) &rest form)) | |
27485
82ee2e8bf67c
Remove stuff for dotimes, dolist, push, pop.
Dave Love <fx@gnu.org>
parents:
26939
diff
changeset
|
670 ((incf decf remf pushnew shiftf rotatef) nil (&rest form)) |
4355 | 671 ((letf letf*) 1 ((&rest (&rest form)) &rest form)) |
672 ((callf destructuring-bind) 2 (sexp form &rest form)) | |
673 ((callf2) 3 (sexp form form &rest form)) | |
674 ((loop) nil (&rest &or symbolp form)) | |
675 ((ignore-errors) 0 (&rest form)))) | |
676 | |
677 | |
678 ;;; This goes here so that cl-macs can find it if it loads right now. | |
679 (provide 'cl-19) ; usage: (require 'cl-19 "cl") | |
680 | |
681 | |
682 ;;; Things to do after byte-compiler is loaded. | |
683 ;;; As a side effect, we cause cl-macs to be loaded when compiling, so | |
684 ;;; that the compiler-macros defined there will be present. | |
685 | |
686 (defvar cl-hacked-flag nil) | |
687 (defun cl-hack-byte-compiler () | |
688 (if (and (not cl-hacked-flag) (fboundp 'byte-compile-file-form)) | |
689 (progn | |
46356
35f0290a4079
(cl-set-substring): Fix thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46325
diff
changeset
|
690 (setq cl-hacked-flag t) ; Do it first, to prevent recursion. |
35f0290a4079
(cl-set-substring): Fix thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46325
diff
changeset
|
691 (cl-compile-time-init)))) ; In cl-macs.el. |
4355 | 692 |
693 ;;; Try it now in case the compiler has already been loaded. | |
694 (cl-hack-byte-compiler) | |
695 | |
696 ;;; Also make a hook in case compiler is loaded after this file. | |
27586
5d6eb73b10d0
Use bytecomp-load-hook, not emacs-lisp-mode-hook.
Dave Love <fx@gnu.org>
parents:
27509
diff
changeset
|
697 (add-hook 'bytecomp-load-hook 'cl-hack-byte-compiler) |
4355 | 698 |
699 | |
700 ;;; The following ensures that packages which expect the old-style cl.el | |
701 ;;; will be happy with this one. | |
702 | |
703 (provide 'cl) | |
704 | |
705 (run-hooks 'cl-load-hook) | |
706 | |
62630
630219b07e90
(eql): Remove. It's a builtin already.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62626
diff
changeset
|
707 ;; arch-tag: 5f07fa74-f153-4524-9303-21f5be125851 |
4355 | 708 ;;; cl.el ends here |