annotate lisp/cl/cl.el @ 0:376386a54a3c r19-14

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