Mercurial > emacs
annotate lisp/emacs-lisp/cl.el @ 23634:f6ab39ac9c55
Initial revision
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 04 Nov 1998 10:54:59 +0000 |
parents | 6b9a783d0eed |
children | a6b268f4dfc7 |
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 ;; This package works with Emacs 18, Emacs 19, and Lucid Emacs 19. | |
36 ;; | |
37 ;; Bug reports, comments, and suggestions are welcome! | |
38 | |
39 ;; This file contains the portions of the Common Lisp extensions | |
40 ;; package which should always be present. | |
41 | |
42 | |
7942 | 43 ;;; Future notes: |
4355 | 44 |
45 ;; Once Emacs 19 becomes standard, many things in this package which are | |
46 ;; messy for reasons of compatibility can be greatly simplified. For now, | |
47 ;; I prefer to maintain one unified version. | |
48 | |
49 | |
7942 | 50 ;;; Change Log: |
4355 | 51 |
52 ;; Version 2.02 (30 Jul 93): | |
53 ;; * Added "cl-compat.el" file, extra compatibility with old package. | |
54 ;; * Added `lexical-let' and `lexical-let*'. | |
55 ;; * Added `define-modify-macro', `callf', and `callf2'. | |
56 ;; * Added `ignore-errors'. | |
57 ;; * Changed `(setf (nthcdr N PLACE) X)' to work when N is zero. | |
58 ;; * Merged `*gentemp-counter*' into `*gensym-counter*'. | |
59 ;; * Extended `subseq' to allow negative START and END like `substring'. | |
60 ;; * Added `in-ref', `across-ref', `elements of-ref' loop clauses. | |
61 ;; * Added `concat', `vconcat' loop clauses. | |
62 ;; * Cleaned up a number of compiler warnings. | |
63 | |
64 ;; Version 2.01 (7 Jul 93): | |
65 ;; * Added support for FSF version of Emacs 19. | |
66 ;; * Added `add-hook' for Emacs 18 users. | |
67 ;; * Added `defsubst*' and `symbol-macrolet'. | |
68 ;; * Added `maplist', `mapc', `mapl', `mapcan', `mapcon'. | |
69 ;; * Added `map', `concatenate', `reduce', `merge'. | |
70 ;; * Added `revappend', `nreconc', `tailp', `tree-equal'. | |
71 ;; * Added `assert', `check-type', `typecase', `typep', and `deftype'. | |
72 ;; * Added destructuring and `&environment' support to `defmacro*'. | |
73 ;; * Added destructuring to `loop', and added the following clauses: | |
74 ;; `elements', `frames', `overlays', `intervals', `buffers', `key-seqs'. | |
75 ;; * Renamed `delete' to `delete*' and `remove' to `remove*'. | |
76 ;; * Completed support for all keywords in `remove*', `substitute', etc. | |
77 ;; * Added `most-positive-float' and company. | |
78 ;; * Fixed hash tables to work with latest Lucid Emacs. | |
79 ;; * `proclaim' forms are no longer compile-time-evaluating; use `declaim'. | |
80 ;; * Syntax for `warn' declarations has changed. | |
81 ;; * Improved implementation of `random*'. | |
82 ;; * Moved most sequence functions to a new file, cl-seq.el. | |
83 ;; * Moved `eval-when' into cl-macs.el. | |
84 ;; * Moved `pushnew' and `adjoin' to cl.el for most common cases. | |
85 ;; * Moved `provide' forms down to ends of files. | |
86 ;; * Changed expansion of `pop' to something that compiles to better code. | |
87 ;; * Changed so that no patch is required for Emacs 19 byte compiler. | |
88 ;; * Made more things dependent on `optimize' declarations. | |
89 ;; * Added a partial implementation of struct print functions. | |
90 ;; * Miscellaneous minor changes. | |
91 | |
92 ;; Version 2.00: | |
93 ;; * First public release of this package. | |
94 | |
95 | |
7942 | 96 ;;; Code: |
4355 | 97 |
98 (defvar cl-emacs-type (cond ((or (and (fboundp 'epoch::version) | |
99 (symbol-value 'epoch::version)) | |
100 (string-lessp emacs-version "19")) 18) | |
101 ((string-match "Lucid" emacs-version) 'lucid) | |
102 (t 19))) | |
103 | |
104 (or (fboundp 'defalias) (fset 'defalias 'fset)) | |
105 | |
106 (defvar cl-optimize-speed 1) | |
107 (defvar cl-optimize-safety 1) | |
108 | |
109 | |
110 (defvar custom-print-functions nil | |
111 "This is a list of functions that format user objects for printing. | |
112 Each function is called in turn with three arguments: the object, the | |
113 stream, and the print level (currently ignored). If it is able to | |
114 print the object it returns true; otherwise it returns nil and the | |
115 printer proceeds to the next function on the list. | |
116 | |
117 This variable is not used at present, but it is defined in hopes that | |
118 a future Emacs interpreter will be able to use it.") | |
119 | |
120 | |
121 ;;; Predicates. | |
122 | |
123 (defun eql (a b) ; See compiler macro in cl-macs.el | |
124 "T if the two args are the same Lisp object. | |
125 Floating-point numbers of equal value are `eql', but they may not be `eq'." | |
126 (if (numberp a) | |
127 (equal a b) | |
128 (eq a b))) | |
129 | |
130 | |
131 ;;; Generalized variables. These macros are defined here so that they | |
132 ;;; can safely be used in .emacs files. | |
133 | |
134 (defmacro incf (place &optional x) | |
135 "(incf PLACE [X]): increment PLACE by X (1 by default). | |
136 PLACE may be a symbol, or any generalized variable allowed by `setf'. | |
137 The return value is the incremented value of PLACE." | |
138 (if (symbolp place) | |
139 (list 'setq place (if x (list '+ place x) (list '1+ place))) | |
140 (list 'callf '+ place (or x 1)))) | |
141 | |
142 (defmacro decf (place &optional x) | |
143 "(decf PLACE [X]): decrement PLACE by X (1 by default). | |
144 PLACE may be a symbol, or any generalized variable allowed by `setf'. | |
145 The return value is the decremented value of PLACE." | |
146 (if (symbolp place) | |
147 (list 'setq place (if x (list '- place x) (list '1- place))) | |
148 (list 'callf '- place (or x 1)))) | |
149 | |
150 (defmacro pop (place) | |
151 "(pop PLACE): remove and return the head of the list stored in PLACE. | |
152 Analogous to (prog1 (car PLACE) (setf PLACE (cdr PLACE))), though more | |
153 careful about evaluating each argument only once and in the right order. | |
154 PLACE may be a symbol, or any generalized variable allowed by `setf'." | |
155 (if (symbolp place) | |
156 (list 'car (list 'prog1 place (list 'setq place (list 'cdr place)))) | |
157 (cl-do-pop place))) | |
158 | |
159 (defmacro push (x place) | |
160 "(push X PLACE): insert X at the head of the list stored in PLACE. | |
161 Analogous to (setf PLACE (cons X PLACE)), though more careful about | |
162 evaluating each argument only once and in the right order. PLACE may | |
163 be a symbol, or any generalized variable allowed by `setf'." | |
164 (if (symbolp place) (list 'setq place (list 'cons x place)) | |
165 (list 'callf2 'cons x place))) | |
166 | |
167 (defmacro pushnew (x place &rest keys) | |
168 "(pushnew X PLACE): insert X at the head of the list if not already there. | |
169 Like (push X PLACE), except that the list is unmodified if X is `eql' to | |
170 an element already on the list. | |
171 Keywords supported: :test :test-not :key" | |
172 (if (symbolp place) (list 'setq place (list* 'adjoin x place keys)) | |
173 (list* 'callf2 'adjoin x place keys))) | |
174 | |
175 (defun cl-set-elt (seq n val) | |
176 (if (listp seq) (setcar (nthcdr n seq) val) (aset seq n val))) | |
177 | |
178 (defun cl-set-nthcdr (n list x) | |
179 (if (<= n 0) x (setcdr (nthcdr (1- n) list) x) list)) | |
180 | |
181 (defun cl-set-buffer-substring (start end val) | |
182 (save-excursion (delete-region start end) | |
183 (goto-char start) | |
184 (insert val) | |
185 val)) | |
186 | |
187 (defun cl-set-substring (str start end val) | |
188 (if end (if (< end 0) (incf end (length str))) | |
189 (setq end (length str))) | |
190 (if (< start 0) (incf start str)) | |
191 (concat (and (> start 0) (substring str 0 start)) | |
192 val | |
193 (and (< end (length str)) (substring str end)))) | |
194 | |
195 | |
196 ;;; Control structures. | |
197 | |
198 ;;; These macros are so simple and so often-used that it's better to have | |
199 ;;; them all the time than to load them from cl-macs.el. | |
200 | |
201 (defun cl-map-extents (&rest cl-args) | |
202 (if (fboundp 'next-overlay-at) (apply 'cl-map-overlays cl-args) | |
203 (if (fboundp 'map-extents) (apply 'map-extents cl-args)))) | |
204 | |
205 | |
206 ;;; Blocks and exits. | |
207 | |
208 (defalias 'cl-block-wrapper 'identity) | |
209 (defalias 'cl-block-throw 'throw) | |
210 | |
211 | |
212 ;;; Multiple values. True multiple values are not supported, or even | |
213 ;;; simulated. Instead, multiple-value-bind and friends simply expect | |
214 ;;; the target form to return the values as a list. | |
215 | |
216 (defalias 'values 'list) | |
217 (defalias 'values-list 'identity) | |
218 (defalias 'multiple-value-list 'identity) | |
219 (defalias 'multiple-value-call 'apply) ; only works for one arg | |
220 (defalias 'nth-value 'nth) | |
221 | |
222 | |
223 ;;; Macros. | |
224 | |
225 (defvar cl-macro-environment nil) | |
226 (defvar cl-old-macroexpand (prog1 (symbol-function 'macroexpand) | |
227 (defalias 'macroexpand 'cl-macroexpand))) | |
228 | |
229 (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
|
230 "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
|
231 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
|
232 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
|
233 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
|
234 |
6a9124f418db
(cl-macroexpand): keep documentation from `macroexpand'.
Richard M. Stallman <rms@gnu.org>
parents:
7942
diff
changeset
|
235 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
|
236 definitions to shadow the loaded ones for use in file byte-compilation." |
4355 | 237 (let ((cl-macro-environment cl-env)) |
238 (while (progn (setq cl-macro (funcall cl-old-macroexpand cl-macro cl-env)) | |
239 (and (symbolp cl-macro) | |
240 (cdr (assq (symbol-name cl-macro) cl-env)))) | |
241 (setq cl-macro (cadr (assq (symbol-name cl-macro) cl-env)))) | |
242 cl-macro)) | |
243 | |
244 | |
245 ;;; Declarations. | |
246 | |
247 (defvar cl-compiling-file nil) | |
248 (defun cl-compiling-file () | |
249 (or cl-compiling-file | |
250 (and (boundp 'outbuffer) (bufferp (symbol-value 'outbuffer)) | |
251 (equal (buffer-name (symbol-value 'outbuffer)) | |
252 " *Compiler Output*")))) | |
253 | |
254 (defvar cl-proclaims-deferred nil) | |
255 | |
256 (defun proclaim (spec) | |
257 (if (fboundp 'cl-do-proclaim) (cl-do-proclaim spec t) | |
258 (push spec cl-proclaims-deferred)) | |
259 nil) | |
260 | |
261 (defmacro declaim (&rest specs) | |
262 (let ((body (mapcar (function (lambda (x) (list 'proclaim (list 'quote x)))) | |
263 specs))) | |
264 (if (cl-compiling-file) (list* 'eval-when '(compile load eval) body) | |
265 (cons 'progn body)))) ; avoid loading cl-macs.el for eval-when | |
266 | |
267 | |
268 ;;; Symbols. | |
269 | |
270 (defun cl-random-time () | |
271 (let* ((time (copy-sequence (current-time-string))) (i (length time)) (v 0)) | |
272 (while (>= (decf i) 0) (setq v (+ (* v 3) (aref time i)))) | |
273 v)) | |
274 | |
275 (defvar *gensym-counter* (* (logand (cl-random-time) 1023) 100)) | |
276 | |
277 | |
278 ;;; Numbers. | |
279 | |
280 (defun floatp-safe (x) | |
281 "T if OBJECT is a floating point number. | |
282 On Emacs versions that lack floating-point support, this function | |
283 always returns nil." | |
284 (and (numberp x) (not (integerp x)))) | |
285 | |
286 (defun plusp (x) | |
287 "T if NUMBER is positive." | |
288 (> x 0)) | |
289 | |
290 (defun minusp (x) | |
291 "T if NUMBER is negative." | |
292 (< x 0)) | |
293 | |
294 (defun oddp (x) | |
295 "T if INTEGER is odd." | |
296 (eq (logand x 1) 1)) | |
297 | |
298 (defun evenp (x) | |
299 "T if INTEGER is even." | |
300 (eq (logand x 1) 0)) | |
301 | |
302 (defun cl-abs (x) | |
303 "Return the absolute value of ARG." | |
304 (if (>= x 0) x (- x))) | |
305 (or (fboundp 'abs) (defalias 'abs 'cl-abs)) ; This is built-in to Emacs 19 | |
306 | |
307 (defvar *random-state* (vector 'cl-random-state-tag -1 30 (cl-random-time))) | |
308 | |
309 ;;; We use `eval' in case VALBITS differs from compile-time to load-time. | |
310 (defconst most-positive-fixnum (eval '(lsh -1 -1))) | |
311 (defconst most-negative-fixnum (eval '(- -1 (lsh -1 -1)))) | |
312 | |
313 ;;; The following are actually set by cl-float-limits. | |
314 (defconst most-positive-float nil) | |
315 (defconst most-negative-float nil) | |
316 (defconst least-positive-float nil) | |
317 (defconst least-negative-float nil) | |
318 (defconst least-positive-normalized-float nil) | |
319 (defconst least-negative-normalized-float nil) | |
320 (defconst float-epsilon nil) | |
321 (defconst float-negative-epsilon nil) | |
322 | |
323 | |
324 ;;; Sequence functions. | |
325 | |
326 (defalias 'copy-seq 'copy-sequence) | |
327 | |
328 (defun mapcar* (cl-func cl-x &rest cl-rest) | |
329 "Apply FUNCTION to each element of SEQ, and make a list of the results. | |
330 If there are several SEQs, FUNCTION is called with that many arguments, | |
331 and mapping stops as soon as the shortest list runs out. With just one | |
332 SEQ, this is like `mapcar'. With several, it is like the Common Lisp | |
333 `mapcar' function extended to arbitrary sequence types." | |
334 (if cl-rest | |
335 (if (or (cdr cl-rest) (nlistp cl-x) (nlistp (car cl-rest))) | |
336 (cl-mapcar-many cl-func (cons cl-x cl-rest)) | |
337 (let ((cl-res nil) (cl-y (car cl-rest))) | |
338 (while (and cl-x cl-y) | |
339 (push (funcall cl-func (pop cl-x) (pop cl-y)) cl-res)) | |
340 (nreverse cl-res))) | |
341 (mapcar cl-func cl-x))) | |
342 | |
343 | |
344 ;;; List functions. | |
345 | |
346 (defalias 'first 'car) | |
347 (defalias 'rest 'cdr) | |
348 (defalias 'endp 'null) | |
349 | |
350 (defun second (x) | |
351 "Return the second element of the list LIST." | |
352 (car (cdr x))) | |
353 | |
354 (defun third (x) | |
355 "Return the third element of the list LIST." | |
356 (car (cdr (cdr x)))) | |
357 | |
358 (defun fourth (x) | |
359 "Return the fourth element of the list LIST." | |
360 (nth 3 x)) | |
361 | |
362 (defun fifth (x) | |
363 "Return the fifth element of the list LIST." | |
364 (nth 4 x)) | |
365 | |
366 (defun sixth (x) | |
367 "Return the sixth element of the list LIST." | |
368 (nth 5 x)) | |
369 | |
370 (defun seventh (x) | |
371 "Return the seventh element of the list LIST." | |
372 (nth 6 x)) | |
373 | |
374 (defun eighth (x) | |
375 "Return the eighth element of the list LIST." | |
376 (nth 7 x)) | |
377 | |
378 (defun ninth (x) | |
379 "Return the ninth element of the list LIST." | |
380 (nth 8 x)) | |
381 | |
382 (defun tenth (x) | |
383 "Return the tenth element of the list LIST." | |
384 (nth 9 x)) | |
385 | |
386 (defun caaar (x) | |
387 "Return the `car' of the `car' of the `car' of X." | |
388 (car (car (car x)))) | |
389 | |
390 (defun caadr (x) | |
391 "Return the `car' of the `car' of the `cdr' of X." | |
392 (car (car (cdr x)))) | |
393 | |
394 (defun cadar (x) | |
395 "Return the `car' of the `cdr' of the `car' of X." | |
396 (car (cdr (car x)))) | |
397 | |
398 (defun caddr (x) | |
399 "Return the `car' of the `cdr' of the `cdr' of X." | |
400 (car (cdr (cdr x)))) | |
401 | |
402 (defun cdaar (x) | |
403 "Return the `cdr' of the `car' of the `car' of X." | |
404 (cdr (car (car x)))) | |
405 | |
406 (defun cdadr (x) | |
407 "Return the `cdr' of the `car' of the `cdr' of X." | |
408 (cdr (car (cdr x)))) | |
409 | |
410 (defun cddar (x) | |
411 "Return the `cdr' of the `cdr' of the `car' of X." | |
412 (cdr (cdr (car x)))) | |
413 | |
414 (defun cdddr (x) | |
415 "Return the `cdr' of the `cdr' of the `cdr' of X." | |
416 (cdr (cdr (cdr x)))) | |
417 | |
418 (defun caaaar (x) | |
419 "Return the `car' of the `car' of the `car' of the `car' of X." | |
420 (car (car (car (car x))))) | |
421 | |
422 (defun caaadr (x) | |
423 "Return the `car' of the `car' of the `car' of the `cdr' of X." | |
424 (car (car (car (cdr x))))) | |
425 | |
426 (defun caadar (x) | |
427 "Return the `car' of the `car' of the `cdr' of the `car' of X." | |
428 (car (car (cdr (car x))))) | |
429 | |
430 (defun caaddr (x) | |
431 "Return the `car' of the `car' of the `cdr' of the `cdr' of X." | |
432 (car (car (cdr (cdr x))))) | |
433 | |
434 (defun cadaar (x) | |
435 "Return the `car' of the `cdr' of the `car' of the `car' of X." | |
436 (car (cdr (car (car x))))) | |
437 | |
438 (defun cadadr (x) | |
439 "Return the `car' of the `cdr' of the `car' of the `cdr' of X." | |
440 (car (cdr (car (cdr x))))) | |
441 | |
442 (defun caddar (x) | |
443 "Return the `car' of the `cdr' of the `cdr' of the `car' of X." | |
444 (car (cdr (cdr (car x))))) | |
445 | |
446 (defun cadddr (x) | |
447 "Return the `car' of the `cdr' of the `cdr' of the `cdr' of X." | |
448 (car (cdr (cdr (cdr x))))) | |
449 | |
450 (defun cdaaar (x) | |
451 "Return the `cdr' of the `car' of the `car' of the `car' of X." | |
452 (cdr (car (car (car x))))) | |
453 | |
454 (defun cdaadr (x) | |
455 "Return the `cdr' of the `car' of the `car' of the `cdr' of X." | |
456 (cdr (car (car (cdr x))))) | |
457 | |
458 (defun cdadar (x) | |
459 "Return the `cdr' of the `car' of the `cdr' of the `car' of X." | |
460 (cdr (car (cdr (car x))))) | |
461 | |
462 (defun cdaddr (x) | |
463 "Return the `cdr' of the `car' of the `cdr' of the `cdr' of X." | |
464 (cdr (car (cdr (cdr x))))) | |
465 | |
466 (defun cddaar (x) | |
467 "Return the `cdr' of the `cdr' of the `car' of the `car' of X." | |
468 (cdr (cdr (car (car x))))) | |
469 | |
470 (defun cddadr (x) | |
471 "Return the `cdr' of the `cdr' of the `car' of the `cdr' of X." | |
472 (cdr (cdr (car (cdr x))))) | |
473 | |
474 (defun cdddar (x) | |
475 "Return the `cdr' of the `cdr' of the `cdr' of the `car' of X." | |
476 (cdr (cdr (cdr (car x))))) | |
477 | |
478 (defun cddddr (x) | |
479 "Return the `cdr' of the `cdr' of the `cdr' of the `cdr' of X." | |
480 (cdr (cdr (cdr (cdr x))))) | |
481 | |
19585
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
482 ;;(defun last* (x &optional n) |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
483 ;; "Returns the last link in the list LIST. |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
484 ;;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
|
485 ;; (if n |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
486 ;; (let ((m 0) (p x)) |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
487 ;; (while (consp p) (incf m) (pop p)) |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
488 ;; (if (<= n 0) p |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
489 ;; (if (< n m) (nthcdr (- m n) x) x))) |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
490 ;; (while (consp (cdr x)) (pop x)) |
3d2741d4fabc
(last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
19512
diff
changeset
|
491 ;; x)) |
4355 | 492 |
493 (defun butlast (x &optional n) | |
494 "Returns a copy of LIST with the last N elements removed." | |
495 (if (and n (<= n 0)) x | |
496 (nbutlast (copy-sequence x) n))) | |
497 | |
498 (defun nbutlast (x &optional n) | |
499 "Modifies LIST to remove the last N elements." | |
500 (let ((m (length x))) | |
501 (or n (setq n 1)) | |
502 (and (< n m) | |
503 (progn | |
504 (if (> n 0) (setcdr (nthcdr (- (1- m) n) x) nil)) | |
505 x)))) | |
506 | |
507 (defun list* (arg &rest rest) ; See compiler macro in cl-macs.el | |
508 "Return a new list with specified args as elements, cons'd to last arg. | |
509 Thus, `(list* A B C D)' is equivalent to `(nconc (list A B C) D)', or to | |
510 `(cons A (cons B (cons C D)))'." | |
511 (cond ((not rest) arg) | |
512 ((not (cdr rest)) (cons arg (car rest))) | |
513 (t (let* ((n (length rest)) | |
514 (copy (copy-sequence rest)) | |
515 (last (nthcdr (- n 2) copy))) | |
516 (setcdr last (car (cdr last))) | |
517 (cons arg copy))))) | |
518 | |
519 (defun ldiff (list sublist) | |
520 "Return a copy of LIST with the tail SUBLIST removed." | |
521 (let ((res nil)) | |
522 (while (and (consp list) (not (eq list sublist))) | |
523 (push (pop list) res)) | |
524 (nreverse res))) | |
525 | |
526 (defun copy-list (list) | |
527 "Return a copy of a list, which may be a dotted list. | |
528 The elements of the list are not copied, just the list structure itself." | |
529 (if (consp list) | |
530 (let ((res nil)) | |
531 (while (consp list) (push (pop list) res)) | |
532 (prog1 (nreverse res) (setcdr res list))) | |
533 (car list))) | |
534 | |
535 (defun cl-maclisp-member (item list) | |
536 (while (and list (not (equal item (car list)))) (setq list (cdr list))) | |
537 list) | |
538 | |
539 ;;; Define an Emacs 19-compatible `member' for the benefit of Emacs 18 users. | |
540 (or (and (fboundp 'member) (subrp (symbol-function 'member))) | |
541 (defalias 'member 'cl-maclisp-member)) | |
542 | |
543 (defalias 'cl-member 'memq) ; for compatibility with old CL package | |
544 (defalias 'cl-floor 'floor*) | |
545 (defalias 'cl-ceiling 'ceiling*) | |
546 (defalias 'cl-truncate 'truncate*) | |
547 (defalias 'cl-round 'round*) | |
548 (defalias 'cl-mod 'mod*) | |
549 | |
550 (defun adjoin (cl-item cl-list &rest cl-keys) ; See compiler macro in cl-macs | |
551 "Return ITEM consed onto the front of LIST only if it's not already there. | |
552 Otherwise, return LIST unmodified. | |
553 Keywords supported: :test :test-not :key" | |
554 (cond ((or (equal cl-keys '(:test eq)) | |
555 (and (null cl-keys) (not (numberp cl-item)))) | |
556 (if (memq cl-item cl-list) cl-list (cons cl-item cl-list))) | |
557 ((or (equal cl-keys '(:test equal)) (null cl-keys)) | |
558 (if (member cl-item cl-list) cl-list (cons cl-item cl-list))) | |
559 (t (apply 'cl-adjoin cl-item cl-list cl-keys)))) | |
560 | |
561 (defun subst (cl-new cl-old cl-tree &rest cl-keys) | |
562 "Substitute NEW for OLD everywhere in TREE (non-destructively). | |
563 Return a copy of TREE with all elements `eql' to OLD replaced by NEW. | |
564 Keywords supported: :test :test-not :key" | |
565 (if (or cl-keys (and (numberp cl-old) (not (integerp cl-old)))) | |
566 (apply 'sublis (list (cons cl-old cl-new)) cl-tree cl-keys) | |
567 (cl-do-subst cl-new cl-old cl-tree))) | |
568 | |
569 (defun cl-do-subst (cl-new cl-old cl-tree) | |
570 (cond ((eq cl-tree cl-old) cl-new) | |
571 ((consp cl-tree) | |
572 (let ((a (cl-do-subst cl-new cl-old (car cl-tree))) | |
573 (d (cl-do-subst cl-new cl-old (cdr cl-tree)))) | |
574 (if (and (eq a (car cl-tree)) (eq d (cdr cl-tree))) | |
575 cl-tree (cons a d)))) | |
576 (t cl-tree))) | |
577 | |
578 (defun acons (a b c) (cons (cons a b) c)) | |
579 (defun pairlis (a b &optional c) (nconc (mapcar* 'cons a b) c)) | |
580 | |
581 | |
582 ;;; Miscellaneous. | |
583 | |
584 (put 'cl-assertion-failed 'error-conditions '(error)) | |
585 (put 'cl-assertion-failed 'error-message "Assertion failed") | |
586 | |
587 ;;; This is defined in Emacs 19; define it here for Emacs 18 users. | |
588 (defun cl-add-hook (hook func &optional append) | |
589 "Add to hook variable HOOK the function FUNC. | |
590 FUNC is not added if it already appears on the list stored in HOOK." | |
591 (let ((old (and (boundp hook) (symbol-value hook)))) | |
592 (and (listp old) (not (eq (car old) 'lambda)) | |
593 (setq old (list old))) | |
594 (and (not (member func old)) | |
595 (set hook (if append (nconc old (list func)) (cons func old)))))) | |
596 (or (fboundp 'add-hook) (defalias 'add-hook 'cl-add-hook)) | |
597 | |
598 | |
599 ;;; Autoload the other portions of the package. | |
600 (mapcar (function | |
601 (lambda (set) | |
602 (mapcar (function | |
603 (lambda (func) | |
604 (autoload func (car set) nil nil (nth 1 set)))) | |
605 (cddr set)))) | |
606 '(("cl-extra" nil | |
607 coerce equalp cl-map-keymap maplist mapc mapl mapcan mapcon | |
608 cl-map-keymap cl-map-keymap-recursively cl-map-intervals | |
609 cl-map-overlays cl-set-frame-visible-p cl-float-limits | |
610 gcd lcm isqrt expt floor* ceiling* truncate* round* | |
611 mod* rem* signum random* make-random-state random-state-p | |
612 subseq concatenate cl-mapcar-many map some every notany | |
613 notevery revappend nreconc list-length tailp copy-tree get* getf | |
614 cl-set-getf cl-do-remf remprop make-hash-table cl-hash-lookup | |
615 gethash cl-puthash remhash clrhash maphash hash-table-p | |
616 hash-table-count cl-progv-before cl-prettyexpand | |
617 cl-macroexpand-all) | |
618 ("cl-seq" nil | |
619 reduce fill replace remq remove remove* remove-if remove-if-not | |
620 delete delete* delete-if delete-if-not remove-duplicates | |
621 delete-duplicates substitute substitute-if substitute-if-not | |
622 nsubstitute nsubstitute-if nsubstitute-if-not find find-if | |
623 find-if-not position position-if position-if-not count count-if | |
624 count-if-not mismatch search sort* stable-sort merge member* | |
625 member-if member-if-not cl-adjoin assoc* assoc-if assoc-if-not | |
626 rassoc* rassoc rassoc-if rassoc-if-not union nunion intersection | |
627 nintersection set-difference nset-difference set-exclusive-or | |
628 nset-exclusive-or subsetp subst-if subst-if-not nsubst nsubst-if | |
629 nsubst-if-not sublis nsublis tree-equal) | |
630 ("cl-macs" nil | |
631 gensym gentemp typep cl-do-pop get-setf-method | |
632 cl-struct-setf-expander compiler-macroexpand cl-compile-time-init) | |
633 ("cl-macs" t | |
634 defun* defmacro* function* destructuring-bind eval-when | |
635 eval-when-compile load-time-value case ecase typecase etypecase | |
636 block return return-from loop do do* dolist dotimes do-symbols | |
637 do-all-symbols psetq progv flet labels macrolet symbol-macrolet | |
638 lexical-let lexical-let* multiple-value-bind multiple-value-setq | |
639 locally the declare define-setf-method defsetf define-modify-macro | |
640 setf psetf remf shiftf rotatef letf letf* callf callf2 defstruct | |
641 check-type assert ignore-errors define-compiler-macro))) | |
642 | |
643 ;;; Define data for indentation and edebug. | |
644 (mapcar (function | |
645 (lambda (entry) | |
646 (mapcar (function | |
647 (lambda (func) | |
648 (put func 'lisp-indent-function (nth 1 entry)) | |
649 (put func 'lisp-indent-hook (nth 1 entry)) | |
650 (or (get func 'edebug-form-spec) | |
651 (put func 'edebug-form-spec (nth 2 entry))))) | |
652 (car entry)))) | |
653 '(((defun* defmacro*) 2) | |
654 ((function*) nil | |
655 (&or symbolp ([&optional 'macro] 'lambda (&rest sexp) &rest form))) | |
656 ((eval-when) 1 (sexp &rest form)) | |
657 ((declare) nil (&rest sexp)) | |
658 ((the) 1 (sexp &rest form)) | |
659 ((case ecase typecase etypecase) 1 (form &rest (sexp &rest form))) | |
660 ((block return-from) 1 (sexp &rest form)) | |
661 ((return) nil (&optional form)) | |
662 ((do do*) 2 ((&rest &or symbolp (symbolp &optional form form)) | |
663 (form &rest form) | |
664 &rest form)) | |
665 ((dolist dotimes) 1 ((symbolp form &rest form) &rest form)) | |
666 ((do-symbols) 1 ((symbolp form &optional form form) &rest form)) | |
667 ((do-all-symbols) 1 ((symbolp form &optional form) &rest form)) | |
668 ((psetq setf psetf) nil edebug-setq-form) | |
669 ((progv) 2 (&rest form)) | |
670 ((flet labels macrolet) 1 | |
671 ((&rest (sexp sexp &rest form)) &rest form)) | |
672 ((symbol-macrolet lexical-let lexical-let*) 1 | |
673 ((&rest &or symbolp (symbolp form)) &rest form)) | |
674 ((multiple-value-bind) 2 ((&rest symbolp) &rest form)) | |
675 ((multiple-value-setq) 1 ((&rest symbolp) &rest form)) | |
676 ((incf decf remf pop push pushnew shiftf rotatef) nil (&rest form)) | |
677 ((letf letf*) 1 ((&rest (&rest form)) &rest form)) | |
678 ((callf destructuring-bind) 2 (sexp form &rest form)) | |
679 ((callf2) 3 (sexp form form &rest form)) | |
680 ((loop) nil (&rest &or symbolp form)) | |
681 ((ignore-errors) 0 (&rest form)))) | |
682 | |
683 | |
684 ;;; This goes here so that cl-macs can find it if it loads right now. | |
685 (provide 'cl-19) ; usage: (require 'cl-19 "cl") | |
686 | |
687 | |
688 ;;; Things to do after byte-compiler is loaded. | |
689 ;;; As a side effect, we cause cl-macs to be loaded when compiling, so | |
690 ;;; that the compiler-macros defined there will be present. | |
691 | |
692 (defvar cl-hacked-flag nil) | |
693 (defun cl-hack-byte-compiler () | |
694 (if (and (not cl-hacked-flag) (fboundp 'byte-compile-file-form)) | |
695 (progn | |
696 (cl-compile-time-init) ; in cl-macs.el | |
697 (setq cl-hacked-flag t)))) | |
698 | |
699 ;;; Try it now in case the compiler has already been loaded. | |
700 (cl-hack-byte-compiler) | |
701 | |
702 ;;; Also make a hook in case compiler is loaded after this file. | |
703 ;;; The compiler doesn't call any hooks when it loads or runs, but | |
704 ;;; we can take advantage of the fact that emacs-lisp-mode will be | |
705 ;;; called when the compiler reads in the file to be compiled. | |
706 ;;; BUG: If the first compilation is `byte-compile' rather than | |
707 ;;; `byte-compile-file', we lose. Oh, well. | |
708 (add-hook 'emacs-lisp-mode-hook 'cl-hack-byte-compiler) | |
709 | |
710 | |
711 ;;; The following ensures that packages which expect the old-style cl.el | |
712 ;;; will be happy with this one. | |
713 | |
714 (provide 'cl) | |
715 | |
716 (provide 'mini-cl) ; for Epoch | |
717 | |
718 (run-hooks 'cl-load-hook) | |
719 | |
720 ;;; cl.el ends here |