Mercurial > emacs
annotate lisp/emacs-lisp/cl.el @ 27373:a6d5729aef1d
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 20 Jan 2000 18:07:38 +0000 |
parents | 672e75118c0f |
children | 82ee2e8bf67c |
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 |
3 ;; Copyright (C) 1993 Free Software Foundation, Inc. | |
4 | |
5 ;; Author: Dave Gillespie <daveg@synaptics.com> | |
6 ;; Version: 2.02 | |
7 ;; Keywords: extensions | |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
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 |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, 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 (or (fboundp 'defalias) (fset 'defalias 'fset)) | |
97 | |
98 (defvar cl-optimize-speed 1) | |
99 (defvar cl-optimize-safety 1) | |
100 | |
101 | |
24790
a6b268f4dfc7
(custom-print-functions): Add autoload cookie.
Karl Heuer <kwzh@gnu.org>
parents:
21465
diff
changeset
|
102 ;;;###autoload |
4355 | 103 (defvar custom-print-functions nil |
104 "This is a list of functions that format user objects for printing. | |
105 Each function is called in turn with three arguments: the object, the | |
106 stream, and the print level (currently ignored). If it is able to | |
107 print the object it returns true; otherwise it returns nil and the | |
108 printer proceeds to the next function on the list. | |
109 | |
110 This variable is not used at present, but it is defined in hopes that | |
111 a future Emacs interpreter will be able to use it.") | |
112 | |
113 | |
114 ;;; Predicates. | |
115 | |
116 (defun eql (a b) ; See compiler macro in cl-macs.el | |
117 "T if the two args are the same Lisp object. | |
118 Floating-point numbers of equal value are `eql', but they may not be `eq'." | |
119 (if (numberp a) | |
120 (equal a b) | |
121 (eq a b))) | |
122 | |
123 | |
124 ;;; Generalized variables. These macros are defined here so that they | |
125 ;;; can safely be used in .emacs files. | |
126 | |
127 (defmacro incf (place &optional x) | |
128 "(incf PLACE [X]): increment PLACE by X (1 by default). | |
129 PLACE may be a symbol, or any generalized variable allowed by `setf'. | |
130 The return value is the incremented value of PLACE." | |
131 (if (symbolp place) | |
132 (list 'setq place (if x (list '+ place x) (list '1+ place))) | |
133 (list 'callf '+ place (or x 1)))) | |
134 | |
135 (defmacro decf (place &optional x) | |
136 "(decf PLACE [X]): decrement PLACE by X (1 by default). | |
137 PLACE may be a symbol, or any generalized variable allowed by `setf'. | |
138 The return value is the decremented value of PLACE." | |
139 (if (symbolp place) | |
140 (list 'setq place (if x (list '- place x) (list '1- place))) | |
141 (list 'callf '- place (or x 1)))) | |
142 | |
143 (defmacro pop (place) | |
144 "(pop PLACE): remove and return the head of the list stored in PLACE. | |
145 Analogous to (prog1 (car PLACE) (setf PLACE (cdr PLACE))), though more | |
146 careful about evaluating each argument only once and in the right order. | |
147 PLACE may be a symbol, or any generalized variable allowed by `setf'." | |
148 (if (symbolp place) | |
149 (list 'car (list 'prog1 place (list 'setq place (list 'cdr place)))) | |
150 (cl-do-pop place))) | |
151 | |
152 (defmacro push (x place) | |
153 "(push X PLACE): insert X at the head of the list stored in PLACE. | |
154 Analogous to (setf PLACE (cons X PLACE)), though more careful about | |
155 evaluating each argument only once and in the right order. PLACE may | |
156 be a symbol, or any generalized variable allowed by `setf'." | |
157 (if (symbolp place) (list 'setq place (list 'cons x place)) | |
158 (list 'callf2 'cons x place))) | |
159 | |
160 (defmacro pushnew (x place &rest keys) | |
161 "(pushnew X PLACE): insert X at the head of the list if not already there. | |
162 Like (push X PLACE), except that the list is unmodified if X is `eql' to | |
163 an element already on the list. | |
164 Keywords supported: :test :test-not :key" | |
165 (if (symbolp place) (list 'setq place (list* 'adjoin x place keys)) | |
166 (list* 'callf2 'adjoin x place keys))) | |
167 | |
168 (defun cl-set-elt (seq n val) | |
169 (if (listp seq) (setcar (nthcdr n seq) val) (aset seq n val))) | |
170 | |
171 (defun cl-set-nthcdr (n list x) | |
172 (if (<= n 0) x (setcdr (nthcdr (1- n) list) x) list)) | |
173 | |
174 (defun cl-set-buffer-substring (start end val) | |
175 (save-excursion (delete-region start end) | |
176 (goto-char start) | |
177 (insert val) | |
178 val)) | |
179 | |
180 (defun cl-set-substring (str start end val) | |
181 (if end (if (< end 0) (incf end (length str))) | |
182 (setq end (length str))) | |
183 (if (< start 0) (incf start str)) | |
184 (concat (and (> start 0) (substring str 0 start)) | |
185 val | |
186 (and (< end (length str)) (substring str end)))) | |
187 | |
188 | |
189 ;;; Control structures. | |
190 | |
191 ;;; These macros are so simple and so often-used that it's better to have | |
192 ;;; them all the time than to load them from cl-macs.el. | |
193 | |
194 (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
|
195 (apply 'cl-map-overlays cl-args)) |
4355 | 196 |
197 | |
198 ;;; Blocks and exits. | |
199 | |
200 (defalias 'cl-block-wrapper 'identity) | |
201 (defalias 'cl-block-throw 'throw) | |
202 | |
203 | |
204 ;;; Multiple values. True multiple values are not supported, or even | |
205 ;;; simulated. Instead, multiple-value-bind and friends simply expect | |
206 ;;; the target form to return the values as a list. | |
207 | |
208 (defalias 'values 'list) | |
209 (defalias 'values-list 'identity) | |
210 (defalias 'multiple-value-list 'identity) | |
211 (defalias 'multiple-value-call 'apply) ; only works for one arg | |
212 (defalias 'nth-value 'nth) | |
213 | |
214 | |
215 ;;; Macros. | |
216 | |
217 (defvar cl-macro-environment nil) | |
218 (defvar cl-old-macroexpand (prog1 (symbol-function 'macroexpand) | |
219 (defalias 'macroexpand 'cl-macroexpand))) | |
220 | |
221 (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
|
222 "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
|
223 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
|
224 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
|
225 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
|
226 |
6a9124f418db
(cl-macroexpand): keep documentation from `macroexpand'.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
227 The second optional arg ENVIRONMENT species an environment of macro |
6a9124f418db
(cl-macroexpand): keep documentation from `macroexpand'.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
228 definitions to shadow the loaded ones for use in file byte-compilation." |
4355 | 229 (let ((cl-macro-environment cl-env)) |
230 (while (progn (setq cl-macro (funcall cl-old-macroexpand cl-macro cl-env)) | |
231 (and (symbolp cl-macro) | |
232 (cdr (assq (symbol-name cl-macro) cl-env)))) | |
233 (setq cl-macro (cadr (assq (symbol-name cl-macro) cl-env)))) | |
234 cl-macro)) | |
235 | |
236 | |
237 ;;; Declarations. | |
238 | |
239 (defvar cl-compiling-file nil) | |
240 (defun cl-compiling-file () | |
241 (or cl-compiling-file | |
242 (and (boundp 'outbuffer) (bufferp (symbol-value 'outbuffer)) | |
243 (equal (buffer-name (symbol-value 'outbuffer)) | |
244 " *Compiler Output*")))) | |
245 | |
246 (defvar cl-proclaims-deferred nil) | |
247 | |
248 (defun proclaim (spec) | |
249 (if (fboundp 'cl-do-proclaim) (cl-do-proclaim spec t) | |
250 (push spec cl-proclaims-deferred)) | |
251 nil) | |
252 | |
253 (defmacro declaim (&rest specs) | |
254 (let ((body (mapcar (function (lambda (x) (list 'proclaim (list 'quote x)))) | |
255 specs))) | |
256 (if (cl-compiling-file) (list* 'eval-when '(compile load eval) body) | |
257 (cons 'progn body)))) ; avoid loading cl-macs.el for eval-when | |
258 | |
259 | |
260 ;;; Symbols. | |
261 | |
262 (defun cl-random-time () | |
263 (let* ((time (copy-sequence (current-time-string))) (i (length time)) (v 0)) | |
264 (while (>= (decf i) 0) (setq v (+ (* v 3) (aref time i)))) | |
265 v)) | |
266 | |
267 (defvar *gensym-counter* (* (logand (cl-random-time) 1023) 100)) | |
268 | |
269 | |
270 ;;; Numbers. | |
271 | |
272 (defun floatp-safe (x) | |
273 "T if OBJECT is a floating point number. | |
274 On Emacs versions that lack floating-point support, this function | |
275 always returns nil." | |
276 (and (numberp x) (not (integerp x)))) | |
277 | |
278 (defun plusp (x) | |
279 "T if NUMBER is positive." | |
280 (> x 0)) | |
281 | |
282 (defun minusp (x) | |
283 "T if NUMBER is negative." | |
284 (< x 0)) | |
285 | |
286 (defun oddp (x) | |
287 "T if INTEGER is odd." | |
288 (eq (logand x 1) 1)) | |
289 | |
290 (defun evenp (x) | |
291 "T if INTEGER is even." | |
292 (eq (logand x 1) 0)) | |
293 | |
294 (defun cl-abs (x) | |
295 "Return the absolute value of ARG." | |
296 (if (>= x 0) x (- x))) | |
297 (or (fboundp 'abs) (defalias 'abs 'cl-abs)) ; This is built-in to Emacs 19 | |
298 | |
299 (defvar *random-state* (vector 'cl-random-state-tag -1 30 (cl-random-time))) | |
300 | |
301 ;;; We use `eval' in case VALBITS differs from compile-time to load-time. | |
302 (defconst most-positive-fixnum (eval '(lsh -1 -1))) | |
303 (defconst most-negative-fixnum (eval '(- -1 (lsh -1 -1)))) | |
304 | |
305 ;;; The following are actually set by cl-float-limits. | |
306 (defconst most-positive-float nil) | |
307 (defconst most-negative-float nil) | |
308 (defconst least-positive-float nil) | |
309 (defconst least-negative-float nil) | |
310 (defconst least-positive-normalized-float nil) | |
311 (defconst least-negative-normalized-float nil) | |
312 (defconst float-epsilon nil) | |
313 (defconst float-negative-epsilon nil) | |
314 | |
315 | |
316 ;;; Sequence functions. | |
317 | |
318 (defalias 'copy-seq 'copy-sequence) | |
319 | |
320 (defun mapcar* (cl-func cl-x &rest cl-rest) | |
321 "Apply FUNCTION to each element of SEQ, and make a list of the results. | |
322 If there are several SEQs, FUNCTION is called with that many arguments, | |
323 and mapping stops as soon as the shortest list runs out. With just one | |
324 SEQ, this is like `mapcar'. With several, it is like the Common Lisp | |
325 `mapcar' function extended to arbitrary sequence types." | |
326 (if cl-rest | |
327 (if (or (cdr cl-rest) (nlistp cl-x) (nlistp (car cl-rest))) | |
328 (cl-mapcar-many cl-func (cons cl-x cl-rest)) | |
329 (let ((cl-res nil) (cl-y (car cl-rest))) | |
330 (while (and cl-x cl-y) | |
331 (push (funcall cl-func (pop cl-x) (pop cl-y)) cl-res)) | |
332 (nreverse cl-res))) | |
333 (mapcar cl-func cl-x))) | |
334 | |
335 | |
336 ;;; List functions. | |
337 | |
338 (defalias 'first 'car) | |
339 (defalias 'rest 'cdr) | |
340 (defalias 'endp 'null) | |
341 | |
342 (defun second (x) | |
343 "Return the second element of the list LIST." | |
344 (car (cdr x))) | |
345 | |
346 (defun third (x) | |
347 "Return the third element of the list LIST." | |
348 (car (cdr (cdr x)))) | |
349 | |
350 (defun fourth (x) | |
351 "Return the fourth element of the list LIST." | |
352 (nth 3 x)) | |
353 | |
354 (defun fifth (x) | |
355 "Return the fifth element of the list LIST." | |
356 (nth 4 x)) | |
357 | |
358 (defun sixth (x) | |
359 "Return the sixth element of the list LIST." | |
360 (nth 5 x)) | |
361 | |
362 (defun seventh (x) | |
363 "Return the seventh element of the list LIST." | |
364 (nth 6 x)) | |
365 | |
366 (defun eighth (x) | |
367 "Return the eighth element of the list LIST." | |
368 (nth 7 x)) | |
369 | |
370 (defun ninth (x) | |
371 "Return the ninth element of the list LIST." | |
372 (nth 8 x)) | |
373 | |
374 (defun tenth (x) | |
375 "Return the tenth element of the list LIST." | |
376 (nth 9 x)) | |
377 | |
378 (defun caaar (x) | |
379 "Return the `car' of the `car' of the `car' of X." | |
380 (car (car (car x)))) | |
381 | |
382 (defun caadr (x) | |
383 "Return the `car' of the `car' of the `cdr' of X." | |
384 (car (car (cdr x)))) | |
385 | |
386 (defun cadar (x) | |
387 "Return the `car' of the `cdr' of the `car' of X." | |
388 (car (cdr (car x)))) | |
389 | |
390 (defun caddr (x) | |
391 "Return the `car' of the `cdr' of the `cdr' of X." | |
392 (car (cdr (cdr x)))) | |
393 | |
394 (defun cdaar (x) | |
395 "Return the `cdr' of the `car' of the `car' of X." | |
396 (cdr (car (car x)))) | |
397 | |
398 (defun cdadr (x) | |
399 "Return the `cdr' of the `car' of the `cdr' of X." | |
400 (cdr (car (cdr x)))) | |
401 | |
402 (defun cddar (x) | |
403 "Return the `cdr' of the `cdr' of the `car' of X." | |
404 (cdr (cdr (car x)))) | |
405 | |
406 (defun cdddr (x) | |
407 "Return the `cdr' of the `cdr' of the `cdr' of X." | |
408 (cdr (cdr (cdr x)))) | |
409 | |
410 (defun caaaar (x) | |
411 "Return the `car' of the `car' of the `car' of the `car' of X." | |
412 (car (car (car (car x))))) | |
413 | |
414 (defun caaadr (x) | |
415 "Return the `car' of the `car' of the `car' of the `cdr' of X." | |
416 (car (car (car (cdr x))))) | |
417 | |
418 (defun caadar (x) | |
419 "Return the `car' of the `car' of the `cdr' of the `car' of X." | |
420 (car (car (cdr (car x))))) | |
421 | |
422 (defun caaddr (x) | |
423 "Return the `car' of the `car' of the `cdr' of the `cdr' of X." | |
424 (car (car (cdr (cdr x))))) | |
425 | |
426 (defun cadaar (x) | |
427 "Return the `car' of the `cdr' of the `car' of the `car' of X." | |
428 (car (cdr (car (car x))))) | |
429 | |
430 (defun cadadr (x) | |
431 "Return the `car' of the `cdr' of the `car' of the `cdr' of X." | |
432 (car (cdr (car (cdr x))))) | |
433 | |
434 (defun caddar (x) | |
435 "Return the `car' of the `cdr' of the `cdr' of the `car' of X." | |
436 (car (cdr (cdr (car x))))) | |
437 | |
438 (defun cadddr (x) | |
439 "Return the `car' of the `cdr' of the `cdr' of the `cdr' of X." | |
440 (car (cdr (cdr (cdr x))))) | |
441 | |
442 (defun cdaaar (x) | |
443 "Return the `cdr' of the `car' of the `car' of the `car' of X." | |
444 (cdr (car (car (car x))))) | |
445 | |
446 (defun cdaadr (x) | |
447 "Return the `cdr' of the `car' of the `car' of the `cdr' of X." | |
448 (cdr (car (car (cdr x))))) | |
449 | |
450 (defun cdadar (x) | |
451 "Return the `cdr' of the `car' of the `cdr' of the `car' of X." | |
452 (cdr (car (cdr (car x))))) | |
453 | |
454 (defun cdaddr (x) | |
455 "Return the `cdr' of the `car' of the `cdr' of the `cdr' of X." | |
456 (cdr (car (cdr (cdr x))))) | |
457 | |
458 (defun cddaar (x) | |
459 "Return the `cdr' of the `cdr' of the `car' of the `car' of X." | |
460 (cdr (cdr (car (car x))))) | |
461 | |
462 (defun cddadr (x) | |
463 "Return the `cdr' of the `cdr' of the `car' of the `cdr' of X." | |
464 (cdr (cdr (car (cdr x))))) | |
465 | |
466 (defun cdddar (x) | |
467 "Return the `cdr' of the `cdr' of the `cdr' of the `car' of X." | |
468 (cdr (cdr (cdr (car x))))) | |
469 | |
470 (defun cddddr (x) | |
471 "Return the `cdr' of the `cdr' of the `cdr' of the `cdr' of X." | |
472 (cdr (cdr (cdr (cdr x))))) | |
473 | |
19585
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
474 ;;(defun last* (x &optional n) |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
475 ;; "Returns the last link in the list LIST. |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
476 ;;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
|
477 ;; (if n |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
478 ;; (let ((m 0) (p x)) |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
479 ;; (while (consp p) (incf m) (pop p)) |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
480 ;; (if (<= n 0) p |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
481 ;; (if (< n m) (nthcdr (- m n) x) x))) |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
482 ;; (while (consp (cdr x)) (pop x)) |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
483 ;; x)) |
4355 | 484 |
485 (defun butlast (x &optional n) | |
486 "Returns a copy of LIST with the last N elements removed." | |
487 (if (and n (<= n 0)) x | |
488 (nbutlast (copy-sequence x) n))) | |
489 | |
490 (defun nbutlast (x &optional n) | |
491 "Modifies LIST to remove the last N elements." | |
492 (let ((m (length x))) | |
493 (or n (setq n 1)) | |
494 (and (< n m) | |
495 (progn | |
496 (if (> n 0) (setcdr (nthcdr (- (1- m) n) x) nil)) | |
497 x)))) | |
498 | |
499 (defun list* (arg &rest rest) ; See compiler macro in cl-macs.el | |
500 "Return a new list with specified args as elements, cons'd to last arg. | |
501 Thus, `(list* A B C D)' is equivalent to `(nconc (list A B C) D)', or to | |
502 `(cons A (cons B (cons C D)))'." | |
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 | |
518 (defun copy-list (list) | |
519 "Return a copy of a list, which may be a dotted list. | |
520 The elements of the list are not copied, just the list structure itself." | |
521 (if (consp list) | |
522 (let ((res nil)) | |
523 (while (consp list) (push (pop list) res)) | |
524 (prog1 (nreverse res) (setcdr res list))) | |
525 (car list))) | |
526 | |
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. | |
541 Keywords supported: :test :test-not :key" | |
542 (cond ((or (equal cl-keys '(:test eq)) | |
543 (and (null cl-keys) (not (numberp cl-item)))) | |
544 (if (memq cl-item cl-list) cl-list (cons cl-item cl-list))) | |
545 ((or (equal cl-keys '(:test equal)) (null cl-keys)) | |
546 (if (member cl-item cl-list) cl-list (cons cl-item cl-list))) | |
547 (t (apply 'cl-adjoin cl-item cl-list cl-keys)))) | |
548 | |
549 (defun subst (cl-new cl-old cl-tree &rest cl-keys) | |
550 "Substitute NEW for OLD everywhere in TREE (non-destructively). | |
551 Return a copy of TREE with all elements `eql' to OLD replaced by NEW. | |
552 Keywords supported: :test :test-not :key" | |
553 (if (or cl-keys (and (numberp cl-old) (not (integerp cl-old)))) | |
554 (apply 'sublis (list (cons cl-old cl-new)) cl-tree cl-keys) | |
555 (cl-do-subst cl-new cl-old cl-tree))) | |
556 | |
557 (defun cl-do-subst (cl-new cl-old cl-tree) | |
558 (cond ((eq cl-tree cl-old) cl-new) | |
559 ((consp cl-tree) | |
560 (let ((a (cl-do-subst cl-new cl-old (car cl-tree))) | |
561 (d (cl-do-subst cl-new cl-old (cdr cl-tree)))) | |
562 (if (and (eq a (car cl-tree)) (eq d (cdr cl-tree))) | |
563 cl-tree (cons a d)))) | |
564 (t cl-tree))) | |
565 | |
566 (defun acons (a b c) (cons (cons a b) c)) | |
567 (defun pairlis (a b &optional c) (nconc (mapcar* 'cons a b) c)) | |
568 | |
569 | |
570 ;;; Miscellaneous. | |
571 | |
572 (put 'cl-assertion-failed 'error-conditions '(error)) | |
573 (put 'cl-assertion-failed 'error-message "Assertion failed") | |
574 | |
575 ;;; Autoload the other portions of the package. | |
576 (mapcar (function | |
577 (lambda (set) | |
578 (mapcar (function | |
579 (lambda (func) | |
580 (autoload func (car set) nil nil (nth 1 set)))) | |
581 (cddr set)))) | |
582 '(("cl-extra" nil | |
583 coerce equalp cl-map-keymap maplist mapc mapl mapcan mapcon | |
584 cl-map-keymap cl-map-keymap-recursively cl-map-intervals | |
585 cl-map-overlays cl-set-frame-visible-p cl-float-limits | |
586 gcd lcm isqrt expt floor* ceiling* truncate* round* | |
587 mod* rem* signum random* make-random-state random-state-p | |
588 subseq concatenate cl-mapcar-many map some every notany | |
589 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
|
590 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
|
591 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
|
592 cl-hash-table-count cl-progv-before cl-prettyexpand |
4355 | 593 cl-macroexpand-all) |
594 ("cl-seq" nil | |
595 reduce fill replace remq remove remove* remove-if remove-if-not | |
596 delete delete* delete-if delete-if-not remove-duplicates | |
597 delete-duplicates substitute substitute-if substitute-if-not | |
598 nsubstitute nsubstitute-if nsubstitute-if-not find find-if | |
599 find-if-not position position-if position-if-not count count-if | |
600 count-if-not mismatch search sort* stable-sort merge member* | |
601 member-if member-if-not cl-adjoin assoc* assoc-if assoc-if-not | |
602 rassoc* rassoc rassoc-if rassoc-if-not union nunion intersection | |
603 nintersection set-difference nset-difference set-exclusive-or | |
604 nset-exclusive-or subsetp subst-if subst-if-not nsubst nsubst-if | |
605 nsubst-if-not sublis nsublis tree-equal) | |
606 ("cl-macs" nil | |
607 gensym gentemp typep cl-do-pop get-setf-method | |
608 cl-struct-setf-expander compiler-macroexpand cl-compile-time-init) | |
609 ("cl-macs" t | |
610 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
|
611 load-time-value case ecase typecase etypecase |
4355 | 612 block return return-from loop do do* dolist dotimes do-symbols |
613 do-all-symbols psetq progv flet labels macrolet symbol-macrolet | |
614 lexical-let lexical-let* multiple-value-bind multiple-value-setq | |
615 locally the declare define-setf-method defsetf define-modify-macro | |
616 setf psetf remf shiftf rotatef letf letf* callf callf2 defstruct | |
617 check-type assert ignore-errors define-compiler-macro))) | |
618 | |
619 ;;; Define data for indentation and edebug. | |
620 (mapcar (function | |
621 (lambda (entry) | |
622 (mapcar (function | |
623 (lambda (func) | |
624 (put func 'lisp-indent-function (nth 1 entry)) | |
625 (put func 'lisp-indent-hook (nth 1 entry)) | |
626 (or (get func 'edebug-form-spec) | |
627 (put func 'edebug-form-spec (nth 2 entry))))) | |
628 (car entry)))) | |
629 '(((defun* defmacro*) 2) | |
630 ((function*) nil | |
631 (&or symbolp ([&optional 'macro] 'lambda (&rest sexp) &rest form))) | |
632 ((eval-when) 1 (sexp &rest form)) | |
633 ((declare) nil (&rest sexp)) | |
634 ((the) 1 (sexp &rest form)) | |
635 ((case ecase typecase etypecase) 1 (form &rest (sexp &rest form))) | |
636 ((block return-from) 1 (sexp &rest form)) | |
637 ((return) nil (&optional form)) | |
638 ((do do*) 2 ((&rest &or symbolp (symbolp &optional form form)) | |
639 (form &rest form) | |
640 &rest form)) | |
641 ((dolist dotimes) 1 ((symbolp form &rest form) &rest form)) | |
642 ((do-symbols) 1 ((symbolp form &optional form form) &rest form)) | |
643 ((do-all-symbols) 1 ((symbolp form &optional form) &rest form)) | |
644 ((psetq setf psetf) nil edebug-setq-form) | |
645 ((progv) 2 (&rest form)) | |
646 ((flet labels macrolet) 1 | |
647 ((&rest (sexp sexp &rest form)) &rest form)) | |
648 ((symbol-macrolet lexical-let lexical-let*) 1 | |
649 ((&rest &or symbolp (symbolp form)) &rest form)) | |
650 ((multiple-value-bind) 2 ((&rest symbolp) &rest form)) | |
651 ((multiple-value-setq) 1 ((&rest symbolp) &rest form)) | |
652 ((incf decf remf pop push pushnew shiftf rotatef) nil (&rest form)) | |
653 ((letf letf*) 1 ((&rest (&rest form)) &rest form)) | |
654 ((callf destructuring-bind) 2 (sexp form &rest form)) | |
655 ((callf2) 3 (sexp form form &rest form)) | |
656 ((loop) nil (&rest &or symbolp form)) | |
657 ((ignore-errors) 0 (&rest form)))) | |
658 | |
659 | |
660 ;;; This goes here so that cl-macs can find it if it loads right now. | |
661 (provide 'cl-19) ; usage: (require 'cl-19 "cl") | |
662 | |
663 | |
664 ;;; Things to do after byte-compiler is loaded. | |
665 ;;; As a side effect, we cause cl-macs to be loaded when compiling, so | |
666 ;;; that the compiler-macros defined there will be present. | |
667 | |
668 (defvar cl-hacked-flag nil) | |
669 (defun cl-hack-byte-compiler () | |
670 (if (and (not cl-hacked-flag) (fboundp 'byte-compile-file-form)) | |
671 (progn | |
672 (cl-compile-time-init) ; in cl-macs.el | |
673 (setq cl-hacked-flag t)))) | |
674 | |
675 ;;; Try it now in case the compiler has already been loaded. | |
676 (cl-hack-byte-compiler) | |
677 | |
678 ;;; Also make a hook in case compiler is loaded after this file. | |
679 ;;; The compiler doesn't call any hooks when it loads or runs, but | |
680 ;;; we can take advantage of the fact that emacs-lisp-mode will be | |
681 ;;; called when the compiler reads in the file to be compiled. | |
682 ;;; BUG: If the first compilation is `byte-compile' rather than | |
683 ;;; `byte-compile-file', we lose. Oh, well. | |
684 (add-hook 'emacs-lisp-mode-hook 'cl-hack-byte-compiler) | |
685 | |
686 | |
687 ;;; The following ensures that packages which expect the old-style cl.el | |
688 ;;; will be happy with this one. | |
689 | |
690 (provide 'cl) | |
691 | |
692 (run-hooks 'cl-load-hook) | |
693 | |
694 ;;; cl.el ends here |