annotate lisp/emacs-lisp/cl.el @ 90729:6588c6259dfb

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 545-562) - Update from CVS - Update from erc--emacs--22 - Merge from gnus--rel--5.10 - erc-iswitchb: Temporarily enable iswitchb mode * gnus--rel--5.10 (patch 172-176) - Merge from emacs--devo--0 - Update from CVS - Update from CVS: lisp/legacy-gnus-agent.el: Add Copyright notice. Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-156
author Miles Bader <miles@gnu.org>
date Sat, 16 Dec 2006 01:29:26 +0000
parents 8dd8c8286063 1d4b1a32fd66
children 95d0cdf160ea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2
74466
1d4b1a32fd66 Update copyright years.
Glenn Morris <rgm@gnu.org>
parents: 73227
diff changeset
3 ;; Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005,
68648
067115a6e738 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 68493
diff changeset
4 ;; 2006 Free Software Foundation, Inc.
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 ;; Author: Dave Gillespie <daveg@synaptics.com>
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7 ;; Version: 2.02
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8 ;; Keywords: extensions
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10 ;; This file is part of GNU Emacs.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 ;; it under the terms of the GNU General Public License as published by
12244
ac7375e60931 Update GPL to version 2.
Karl Heuer <kwzh@gnu.org>
parents: 9769
diff changeset
14 ;; the Free Software Foundation; either version 2, or (at your option)
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15 ;; any later version.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 ;; GNU Emacs is distributed in the hope that it will be useful,
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20 ;; GNU General Public License for more details.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13337
diff changeset
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
64085
18a818a2ee7c Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 62642
diff changeset
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18a818a2ee7c Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 62642
diff changeset
25 ;; Boston, MA 02110-1301, USA.
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26
7942
bc5dccc5375f Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 4355
diff changeset
27 ;;; Commentary:
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
28
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29 ;; These are extensions to Emacs Lisp that provide a degree of
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30 ;; Common Lisp compatibility, beyond what is already built-in
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31 ;; in Emacs Lisp.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32 ;;
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33 ;; This package was written by Dave Gillespie; it is a complete
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34 ;; rewrite of Cesar Quiroz's original cl.el package of December 1986.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35 ;;
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36 ;; Bug reports, comments, and suggestions are welcome!
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38 ;; This file contains the portions of the Common Lisp extensions
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39 ;; package which should always be present.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41
7942
bc5dccc5375f Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 4355
diff changeset
42 ;;; Future notes:
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
44 ;; Once Emacs 19 becomes standard, many things in this package which are
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45 ;; messy for reasons of compatibility can be greatly simplified. For now,
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46 ;; I prefer to maintain one unified version.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48
7942
bc5dccc5375f Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 4355
diff changeset
49 ;;; Change Log:
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
50
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
51 ;; Version 2.02 (30 Jul 93):
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
52 ;; * Added "cl-compat.el" file, extra compatibility with old package.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
53 ;; * Added `lexical-let' and `lexical-let*'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
54 ;; * Added `define-modify-macro', `callf', and `callf2'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
55 ;; * Added `ignore-errors'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
56 ;; * Changed `(setf (nthcdr N PLACE) X)' to work when N is zero.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
57 ;; * Merged `*gentemp-counter*' into `*gensym-counter*'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
58 ;; * Extended `subseq' to allow negative START and END like `substring'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
59 ;; * Added `in-ref', `across-ref', `elements of-ref' loop clauses.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
60 ;; * Added `concat', `vconcat' loop clauses.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
61 ;; * Cleaned up a number of compiler warnings.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
62
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
63 ;; Version 2.01 (7 Jul 93):
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
64 ;; * Added support for FSF version of Emacs 19.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
65 ;; * Added `add-hook' for Emacs 18 users.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
66 ;; * Added `defsubst*' and `symbol-macrolet'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
67 ;; * Added `maplist', `mapc', `mapl', `mapcan', `mapcon'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
68 ;; * Added `map', `concatenate', `reduce', `merge'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
69 ;; * Added `revappend', `nreconc', `tailp', `tree-equal'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
70 ;; * Added `assert', `check-type', `typecase', `typep', and `deftype'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
71 ;; * Added destructuring and `&environment' support to `defmacro*'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
72 ;; * Added destructuring to `loop', and added the following clauses:
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
73 ;; `elements', `frames', `overlays', `intervals', `buffers', `key-seqs'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
74 ;; * Renamed `delete' to `delete*' and `remove' to `remove*'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
75 ;; * Completed support for all keywords in `remove*', `substitute', etc.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
76 ;; * Added `most-positive-float' and company.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
77 ;; * Fixed hash tables to work with latest Lucid Emacs.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
78 ;; * `proclaim' forms are no longer compile-time-evaluating; use `declaim'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
79 ;; * Syntax for `warn' declarations has changed.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
80 ;; * Improved implementation of `random*'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
81 ;; * Moved most sequence functions to a new file, cl-seq.el.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
82 ;; * Moved `eval-when' into cl-macs.el.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
83 ;; * Moved `pushnew' and `adjoin' to cl.el for most common cases.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
84 ;; * Moved `provide' forms down to ends of files.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
85 ;; * Changed expansion of `pop' to something that compiles to better code.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
86 ;; * Changed so that no patch is required for Emacs 19 byte compiler.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
87 ;; * Made more things dependent on `optimize' declarations.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
88 ;; * Added a partial implementation of struct print functions.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
89 ;; * Miscellaneous minor changes.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
90
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
91 ;; Version 2.00:
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
92 ;; * First public release of this package.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
93
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
94
7942
bc5dccc5375f Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 4355
diff changeset
95 ;;; Code:
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
96
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
97 (defvar cl-optimize-speed 1)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
98 (defvar cl-optimize-safety 1)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
99
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
100
24790
a6b268f4dfc7 (custom-print-functions): Add autoload cookie.
Karl Heuer <kwzh@gnu.org>
parents: 21465
diff changeset
101 ;;;###autoload
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
102 (defvar custom-print-functions nil
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
103 "This is a list of functions that format user objects for printing.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
104 Each function is called in turn with three arguments: the object, the
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
105 stream, and the print level (currently ignored). If it is able to
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
106 print the object it returns true; otherwise it returns nil and the
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
107 printer proceeds to the next function on the list.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
108
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
109 This variable is not used at present, but it is defined in hopes that
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
110 a future Emacs interpreter will be able to use it.")
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
111
57519
817362bee028 (cl-unload-hook): Don't defvar it, just set it.
Richard M. Stallman <rms@gnu.org>
parents: 53597
diff changeset
112 (add-hook 'cl-unload-hook 'cl-cannot-unload)
53597
c2d405bc6059 (cl-cannot-unload): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53595
diff changeset
113 (defun cl-cannot-unload ()
c2d405bc6059 (cl-cannot-unload): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53595
diff changeset
114 (error "Cannot unload the feature `cl'"))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
115
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
116 ;;; Generalized variables. These macros are defined here so that they
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
117 ;;; can safely be used in .emacs files.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
118
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
119 (defmacro incf (place &optional x)
28824
add63b27c709 Doc fixes; mainly avoid duplicating arg
Dave Love <fx@gnu.org>
parents: 28038
diff changeset
120 "Increment PLACE by X (1 by default).
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
121 PLACE may be a symbol, or any generalized variable allowed by `setf'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
122 The return value is the incremented value of PLACE."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
123 (if (symbolp place)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
124 (list 'setq place (if x (list '+ place x) (list '1+ place)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
125 (list 'callf '+ place (or x 1))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
126
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
127 (defmacro decf (place &optional x)
28824
add63b27c709 Doc fixes; mainly avoid duplicating arg
Dave Love <fx@gnu.org>
parents: 28038
diff changeset
128 "Decrement PLACE by X (1 by default).
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
129 PLACE may be a symbol, or any generalized variable allowed by `setf'.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
130 The return value is the decremented value of PLACE."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
131 (if (symbolp place)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
132 (list 'setq place (if x (list '- place x) (list '1- place)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
133 (list 'callf '- place (or x 1))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
134
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
135 (defmacro pop (place)
28824
add63b27c709 Doc fixes; mainly avoid duplicating arg
Dave Love <fx@gnu.org>
parents: 28038
diff changeset
136 "Remove and return the head of the list stored in PLACE.
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
137 Analogous to (prog1 (car PLACE) (setf PLACE (cdr PLACE))), though more
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
138 careful about evaluating each argument only once and in the right order.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
139 PLACE may be a symbol, or any generalized variable allowed by `setf'."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
140 (if (symbolp place)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
141 (list 'car (list 'prog1 place (list 'setq place (list 'cdr place))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
142 (cl-do-pop place)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
143
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
144 (defmacro push (x place)
28824
add63b27c709 Doc fixes; mainly avoid duplicating arg
Dave Love <fx@gnu.org>
parents: 28038
diff changeset
145 "Insert X at the head of the list stored in PLACE.
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
146 Analogous to (setf PLACE (cons X PLACE)), though more careful about
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
147 evaluating each argument only once and in the right order. PLACE may
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
148 be a symbol, or any generalized variable allowed by `setf'."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
149 (if (symbolp place) (list 'setq place (list 'cons x place))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
150 (list 'callf2 'cons x place)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
151
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
152 (defmacro pushnew (x place &rest keys)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
153 "(pushnew X PLACE): insert X at the head of the list if not already there.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
154 Like (push X PLACE), except that the list is unmodified if X is `eql' to
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
155 an element already on the list.
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
156 \nKeywords supported: :test :test-not :key
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
157 \n(fn X PLACE [KEYWORD VALUE]...)"
72785
a384943e84d7 (pushnew): Use add-to-list when convenient.
Richard M. Stallman <rms@gnu.org>
parents: 68648
diff changeset
158 (if (symbolp place)
a384943e84d7 (pushnew): Use add-to-list when convenient.
Richard M. Stallman <rms@gnu.org>
parents: 68648
diff changeset
159 (if (null keys)
73227
79c3587798b4 (pushnew-internal): Remove defvar.
Kim F. Storm <storm@cua.dk>
parents: 73030
diff changeset
160 `(let ((x ,x))
79c3587798b4 (pushnew-internal): Remove defvar.
Kim F. Storm <storm@cua.dk>
parents: 73030
diff changeset
161 (if (memql x ,place) ,place (setq ,place (cons x ,place))))
72785
a384943e84d7 (pushnew): Use add-to-list when convenient.
Richard M. Stallman <rms@gnu.org>
parents: 68648
diff changeset
162 (list 'setq place (list* 'adjoin x place keys)))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
163 (list* 'callf2 'adjoin x place keys)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
164
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
165 (defun cl-set-elt (seq n val)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
166 (if (listp seq) (setcar (nthcdr n seq) val) (aset seq n val)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
167
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
168 (defun cl-set-nthcdr (n list x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
169 (if (<= n 0) x (setcdr (nthcdr (1- n) list) x) list))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
170
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
171 (defun cl-set-buffer-substring (start end val)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
172 (save-excursion (delete-region start end)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
173 (goto-char start)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
174 (insert val)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
175 val))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
176
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
177 (defun cl-set-substring (str start end val)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
178 (if end (if (< end 0) (incf end (length str)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
179 (setq end (length str)))
46356
35f0290a4079 (cl-set-substring): Fix thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46325
diff changeset
180 (if (< start 0) (incf start (length str)))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
181 (concat (and (> start 0) (substring str 0 start))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
182 val
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
183 (and (< end (length str)) (substring str end))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
184
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
185
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
186 ;;; Control structures.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
187
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
188 ;;; These macros are so simple and so often-used that it's better to have
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
189 ;;; them all the time than to load them from cl-macs.el.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
190
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
191 (defun cl-map-extents (&rest cl-args)
26939
672e75118c0f Remove Emacs 18 compatibility code. Prepend `cl-' to autoload names
Dave Love <fx@gnu.org>
parents: 24790
diff changeset
192 (apply 'cl-map-overlays cl-args))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
193
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
194
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
195 ;;; Blocks and exits.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
196
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
197 (defalias 'cl-block-wrapper 'identity)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
198 (defalias 'cl-block-throw 'throw)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
199
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
200
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
201 ;;; Multiple values. True multiple values are not supported, or even
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
202 ;;; simulated. Instead, multiple-value-bind and friends simply expect
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
203 ;;; the target form to return the values as a list.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
204
41109
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
205 (defsubst values (&rest values)
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
206 "Return multiple values, Common Lisp style.
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
207 The arguments of `values' are the values
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
208 that the containing function should return."
46027
38072df535c8 (values): Simplify definition.
Richard M. Stallman <rms@gnu.org>
parents: 45739
diff changeset
209 values)
41109
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
210
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
211 (defsubst values-list (list)
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
212 "Return multiple values, Common Lisp style, taken from a list.
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
213 LIST specifies the list of values
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
214 that the containing function should return."
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
215 list)
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
216
41109
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
217 (defsubst multiple-value-list (expression)
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
218 "Return a list of the multiple values produced by EXPRESSION.
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
219 This handles multiple values in Common Lisp style, but it does not
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
220 work right when EXPRESSION calls an ordinary Emacs Lisp function
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
221 that returns just one value."
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
222 expression)
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
223
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
224 (defsubst multiple-value-apply (function expression)
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
225 "Evaluate EXPRESSION to get multiple values and apply FUNCTION to them.
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
226 This handles multiple values in Common Lisp style, but it does not work
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
227 right when EXPRESSION calls an ordinary Emacs Lisp function that returns just
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
228 one value."
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
229 (apply function expression))
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
230
48462
b9d1a3c5291e (multiple-value-call): Add docstring.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46356
diff changeset
231 (defalias 'multiple-value-call 'apply
b9d1a3c5291e (multiple-value-call): Add docstring.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46356
diff changeset
232 "Apply FUNCTION to ARGUMENTS, taking multiple values into account.
b9d1a3c5291e (multiple-value-call): Add docstring.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46356
diff changeset
233 This implementation only handles the case where there is only one argument.")
46325
606fc43dc51e (multiple-value-call): Add alias.
Richard M. Stallman <rms@gnu.org>
parents: 46027
diff changeset
234
41109
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
235 (defsubst nth-value (n expression)
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
236 "Evaluate EXPRESSION to get multiple values and return the Nth one.
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
237 This handles multiple values in Common Lisp style, but it does not work
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
238 right when EXPRESSION calls an ordinary Emacs Lisp function that returns just
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
239 one value."
0bcf2d7f0112 (values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Richard M. Stallman <rms@gnu.org>
parents: 39630
diff changeset
240 (nth n expression))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
241
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
242 ;;; Macros.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
243
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
244 (defvar cl-macro-environment nil)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
245 (defvar cl-old-macroexpand (prog1 (symbol-function 'macroexpand)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
246 (defalias 'macroexpand 'cl-macroexpand)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
247
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
248 (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
249 "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
250 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
251 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
252 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
253
30998
0a223a2b9a06 (cl-macroexpand): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 30617
diff changeset
254 The second optional arg ENVIRONMENT specifies an environment of macro
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
255 definitions to shadow the loaded ones for use in file byte-compilation.
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
256 \n(fn FORM &optional ENVIRONMENT)"
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
257 (let ((cl-macro-environment cl-env))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
258 (while (progn (setq cl-macro (funcall cl-old-macroexpand cl-macro cl-env))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
259 (and (symbolp cl-macro)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
260 (cdr (assq (symbol-name cl-macro) cl-env))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
261 (setq cl-macro (cadr (assq (symbol-name cl-macro) cl-env))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
262 cl-macro))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
263
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
264
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
265 ;;; Declarations.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
266
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
267 (defvar cl-compiling-file nil)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
268 (defun cl-compiling-file ()
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
269 (or cl-compiling-file
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
270 (and (boundp 'outbuffer) (bufferp (symbol-value 'outbuffer))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
271 (equal (buffer-name (symbol-value 'outbuffer))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
272 " *Compiler Output*"))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
273
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
274 (defvar cl-proclaims-deferred nil)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
275
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
276 (defun proclaim (spec)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
277 (if (fboundp 'cl-do-proclaim) (cl-do-proclaim spec t)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
278 (push spec cl-proclaims-deferred))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
279 nil)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
280
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
281 (defmacro declaim (&rest specs)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
282 (let ((body (mapcar (function (lambda (x) (list 'proclaim (list 'quote x))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
283 specs)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
284 (if (cl-compiling-file) (list* 'eval-when '(compile load eval) body)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
285 (cons 'progn body)))) ; avoid loading cl-macs.el for eval-when
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
286
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
287
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
288 ;;; Symbols.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
289
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
290 (defun cl-random-time ()
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
291 (let* ((time (copy-sequence (current-time-string))) (i (length time)) (v 0))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
292 (while (>= (decf i) 0) (setq v (+ (* v 3) (aref time i))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
293 v))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
294
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
295 (defvar *gensym-counter* (* (logand (cl-random-time) 1023) 100))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
296
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
297
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
298 ;;; Numbers.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
299
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
300 (defun floatp-safe (object)
62424
ecbd5b866b1d (eql, floatp-safe, plusp, minusp, oddp, evenp, list*): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 57519
diff changeset
301 "Return t if OBJECT is a floating point number.
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
302 On Emacs versions that lack floating-point support, this function
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
303 always returns nil."
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
304 (and (numberp object) (not (integerp object))))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
305
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
306 (defun plusp (number)
62424
ecbd5b866b1d (eql, floatp-safe, plusp, minusp, oddp, evenp, list*): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 57519
diff changeset
307 "Return t if NUMBER is positive."
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
308 (> number 0))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
309
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
310 (defun minusp (number)
62424
ecbd5b866b1d (eql, floatp-safe, plusp, minusp, oddp, evenp, list*): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 57519
diff changeset
311 "Return t if NUMBER is negative."
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
312 (< number 0))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
313
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
314 (defun oddp (integer)
62424
ecbd5b866b1d (eql, floatp-safe, plusp, minusp, oddp, evenp, list*): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 57519
diff changeset
315 "Return t if INTEGER is odd."
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
316 (eq (logand integer 1) 1))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
317
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
318 (defun evenp (integer)
62424
ecbd5b866b1d (eql, floatp-safe, plusp, minusp, oddp, evenp, list*): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 57519
diff changeset
319 "Return t if INTEGER is even."
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
320 (eq (logand integer 1) 0))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
321
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
322 (defvar *random-state* (vector 'cl-random-state-tag -1 30 (cl-random-time)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
323
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
324 ;;; The following are actually set by cl-float-limits.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
325 (defconst most-positive-float nil)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
326 (defconst most-negative-float nil)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
327 (defconst least-positive-float nil)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
328 (defconst least-negative-float nil)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
329 (defconst least-positive-normalized-float nil)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
330 (defconst least-negative-normalized-float nil)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
331 (defconst float-epsilon nil)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
332 (defconst float-negative-epsilon nil)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
333
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
334
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
335 ;;; Sequence functions.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
336
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
337 (defalias 'copy-seq 'copy-sequence)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
338
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
339 (defun mapcar* (cl-func cl-x &rest cl-rest)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
340 "Apply FUNCTION to each element of SEQ, and make a list of the results.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
341 If there are several SEQs, FUNCTION is called with that many arguments,
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
342 and mapping stops as soon as the shortest list runs out. With just one
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
343 SEQ, this is like `mapcar'. With several, it is like the Common Lisp
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
344 `mapcar' function extended to arbitrary sequence types.
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
345 \n(fn FUNCTION SEQ...)"
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
346 (if cl-rest
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
347 (if (or (cdr cl-rest) (nlistp cl-x) (nlistp (car cl-rest)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
348 (cl-mapcar-many cl-func (cons cl-x cl-rest))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
349 (let ((cl-res nil) (cl-y (car cl-rest)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
350 (while (and cl-x cl-y)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
351 (push (funcall cl-func (pop cl-x) (pop cl-y)) cl-res))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
352 (nreverse cl-res)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
353 (mapcar cl-func cl-x)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
354
41776
2682c3f36a6a (svref): New alias.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41109
diff changeset
355 (defalias 'svref 'aref)
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
356
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
357 ;;; List functions.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
358
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
359 (defalias 'first 'car)
30617
5e28cf8a757a (third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents: 30613
diff changeset
360 (defalias 'second 'cadr)
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
361 (defalias 'rest 'cdr)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
362 (defalias 'endp 'null)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
363
30617
5e28cf8a757a (third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents: 30613
diff changeset
364 (defun third (x)
34027
5fc589b932e9 (third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 30998
diff changeset
365 "Return the third element of the list X."
5fc589b932e9 (third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 30998
diff changeset
366 (car (cdr (cdr x))))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
367
30617
5e28cf8a757a (third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents: 30613
diff changeset
368 (defun fourth (x)
34027
5fc589b932e9 (third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 30998
diff changeset
369 "Return the fourth element of the list X."
5fc589b932e9 (third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 30998
diff changeset
370 (nth 3 x))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
371
30617
5e28cf8a757a (third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents: 30613
diff changeset
372 (defun fifth (x)
34027
5fc589b932e9 (third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 30998
diff changeset
373 "Return the fifth element of the list X."
5fc589b932e9 (third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 30998
diff changeset
374 (nth 4 x))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
375
30617
5e28cf8a757a (third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents: 30613
diff changeset
376 (defun sixth (x)
34027
5fc589b932e9 (third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 30998
diff changeset
377 "Return the sixth element of the list X."
5fc589b932e9 (third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 30998
diff changeset
378 (nth 5 x))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
379
30617
5e28cf8a757a (third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents: 30613
diff changeset
380 (defun seventh (x)
34027
5fc589b932e9 (third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 30998
diff changeset
381 "Return the seventh element of the list X."
5fc589b932e9 (third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 30998
diff changeset
382 (nth 6 x))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
383
30617
5e28cf8a757a (third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents: 30613
diff changeset
384 (defun eighth (x)
34027
5fc589b932e9 (third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 30998
diff changeset
385 "Return the eighth element of the list X."
5fc589b932e9 (third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 30998
diff changeset
386 (nth 7 x))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
387
30617
5e28cf8a757a (third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents: 30613
diff changeset
388 (defun ninth (x)
34027
5fc589b932e9 (third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 30998
diff changeset
389 "Return the ninth element of the list X."
5fc589b932e9 (third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 30998
diff changeset
390 (nth 8 x))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
391
30617
5e28cf8a757a (third...tenth): Undo change of 2000-08-05.
Gerd Moellmann <gerd@gnu.org>
parents: 30613
diff changeset
392 (defun tenth (x)
34027
5fc589b932e9 (third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 30998
diff changeset
393 "Return the tenth element of the list X."
5fc589b932e9 (third...tenth): Really undo change of 2000-08-05.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 30998
diff changeset
394 (nth 9 x))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
395
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
396 (defun caaar (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
397 "Return the `car' of the `car' of the `car' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
398 (car (car (car x))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
399
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
400 (defun caadr (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
401 "Return the `car' of the `car' of the `cdr' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
402 (car (car (cdr x))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
403
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
404 (defun cadar (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
405 "Return the `car' of the `cdr' of the `car' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
406 (car (cdr (car x))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
407
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
408 (defun caddr (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
409 "Return the `car' of the `cdr' of the `cdr' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
410 (car (cdr (cdr x))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
411
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
412 (defun cdaar (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
413 "Return the `cdr' of the `car' of the `car' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
414 (cdr (car (car x))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
415
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
416 (defun cdadr (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
417 "Return the `cdr' of the `car' of the `cdr' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
418 (cdr (car (cdr x))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
419
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
420 (defun cddar (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
421 "Return the `cdr' of the `cdr' of the `car' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
422 (cdr (cdr (car x))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
423
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
424 (defun cdddr (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
425 "Return the `cdr' of the `cdr' of the `cdr' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
426 (cdr (cdr (cdr x))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
427
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
428 (defun caaaar (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
429 "Return the `car' of the `car' of the `car' of the `car' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
430 (car (car (car (car x)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
431
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
432 (defun caaadr (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
433 "Return the `car' of the `car' of the `car' of the `cdr' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
434 (car (car (car (cdr x)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
435
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
436 (defun caadar (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
437 "Return the `car' of the `car' of the `cdr' of the `car' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
438 (car (car (cdr (car x)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
439
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
440 (defun caaddr (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
441 "Return the `car' of the `car' of the `cdr' of the `cdr' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
442 (car (car (cdr (cdr x)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
443
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
444 (defun cadaar (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
445 "Return the `car' of the `cdr' of the `car' of the `car' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
446 (car (cdr (car (car x)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
447
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
448 (defun cadadr (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
449 "Return the `car' of the `cdr' of the `car' of the `cdr' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
450 (car (cdr (car (cdr x)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
451
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
452 (defun caddar (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
453 "Return the `car' of the `cdr' of the `cdr' of the `car' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
454 (car (cdr (cdr (car x)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
455
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
456 (defun cadddr (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
457 "Return the `car' of the `cdr' of the `cdr' of the `cdr' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
458 (car (cdr (cdr (cdr x)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
459
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
460 (defun cdaaar (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
461 "Return the `cdr' of the `car' of the `car' of the `car' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
462 (cdr (car (car (car x)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
463
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
464 (defun cdaadr (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
465 "Return the `cdr' of the `car' of the `car' of the `cdr' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
466 (cdr (car (car (cdr x)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
467
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
468 (defun cdadar (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
469 "Return the `cdr' of the `car' of the `cdr' of the `car' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
470 (cdr (car (cdr (car x)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
471
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
472 (defun cdaddr (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
473 "Return the `cdr' of the `car' of the `cdr' of the `cdr' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
474 (cdr (car (cdr (cdr x)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
475
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
476 (defun cddaar (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
477 "Return the `cdr' of the `cdr' of the `car' of the `car' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
478 (cdr (cdr (car (car x)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
479
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
480 (defun cddadr (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
481 "Return the `cdr' of the `cdr' of the `car' of the `cdr' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
482 (cdr (cdr (car (cdr x)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
483
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
484 (defun cdddar (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
485 "Return the `cdr' of the `cdr' of the `cdr' of the `car' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
486 (cdr (cdr (cdr (car x)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
487
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
488 (defun cddddr (x)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
489 "Return the `cdr' of the `cdr' of the `cdr' of the `cdr' of X."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
490 (cdr (cdr (cdr (cdr x)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
491
19585
3d2741d4fabc (last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents: 19512
diff changeset
492 ;;(defun last* (x &optional n)
3d2741d4fabc (last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents: 19512
diff changeset
493 ;; "Returns the last link in the list LIST.
3d2741d4fabc (last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents: 19512
diff changeset
494 ;;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
495 ;; (if n
3d2741d4fabc (last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents: 19512
diff changeset
496 ;; (let ((m 0) (p x))
3d2741d4fabc (last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents: 19512
diff changeset
497 ;; (while (consp p) (incf m) (pop p))
3d2741d4fabc (last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents: 19512
diff changeset
498 ;; (if (<= n 0) p
3d2741d4fabc (last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents: 19512
diff changeset
499 ;; (if (< n m) (nthcdr (- m n) x) x)))
3d2741d4fabc (last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents: 19512
diff changeset
500 ;; (while (consp (cdr x)) (pop x))
3d2741d4fabc (last*): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents: 19512
diff changeset
501 ;; x))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
502
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
503 (defun list* (arg &rest rest) ; See compiler macro in cl-macs.el
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
504 "Return a new list with specified ARGs as elements, consed to last ARG.
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
505 Thus, `(list* A B C D)' is equivalent to `(nconc (list A B C) D)', or to
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
506 `(cons A (cons B (cons C D)))'.
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
507 \n(fn ARG...)"
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
508 (cond ((not rest) arg)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
509 ((not (cdr rest)) (cons arg (car rest)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
510 (t (let* ((n (length rest))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
511 (copy (copy-sequence rest))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
512 (last (nthcdr (- n 2) copy)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
513 (setcdr last (car (cdr last)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
514 (cons arg copy)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
515
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
516 (defun ldiff (list sublist)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
517 "Return a copy of LIST with the tail SUBLIST removed."
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
518 (let ((res nil))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
519 (while (and (consp list) (not (eq list sublist)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
520 (push (pop list) res))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
521 (nreverse res)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
522
45739
af30a5644ebc (copy-list): Moved back from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 45695
diff changeset
523 (defun copy-list (list)
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
524 "Return a copy of LIST, which may be a dotted list.
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
525 The elements of LIST are not copied, just the list structure itself."
45739
af30a5644ebc (copy-list): Moved back from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 45695
diff changeset
526 (if (consp list)
af30a5644ebc (copy-list): Moved back from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 45695
diff changeset
527 (let ((res nil))
af30a5644ebc (copy-list): Moved back from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 45695
diff changeset
528 (while (consp list) (push (pop list) res))
af30a5644ebc (copy-list): Moved back from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 45695
diff changeset
529 (prog1 (nreverse res) (setcdr res list)))
af30a5644ebc (copy-list): Moved back from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 45695
diff changeset
530 (car list)))
af30a5644ebc (copy-list): Moved back from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 45695
diff changeset
531
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
532 (defun cl-maclisp-member (item list)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
533 (while (and list (not (equal item (car list)))) (setq list (cdr list)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
534 list)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
535
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
536 (defalias 'cl-member 'memq) ; for compatibility with old CL package
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
537 (defalias 'cl-floor 'floor*)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
538 (defalias 'cl-ceiling 'ceiling*)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
539 (defalias 'cl-truncate 'truncate*)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
540 (defalias 'cl-round 'round*)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
541 (defalias 'cl-mod 'mod*)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
542
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
543 (defun adjoin (cl-item cl-list &rest cl-keys) ; See compiler macro in cl-macs
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
544 "Return ITEM consed onto the front of LIST only if it's not already there.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
545 Otherwise, return LIST unmodified.
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
546 \nKeywords supported: :test :test-not :key
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
547 \n(fn ITEM LIST [KEYWORD VALUE]...)"
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
548 (cond ((or (equal cl-keys '(:test eq))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
549 (and (null cl-keys) (not (numberp cl-item))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
550 (if (memq cl-item cl-list) cl-list (cons cl-item cl-list)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
551 ((or (equal cl-keys '(:test equal)) (null cl-keys))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
552 (if (member cl-item cl-list) cl-list (cons cl-item cl-list)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
553 (t (apply 'cl-adjoin cl-item cl-list cl-keys))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
554
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
555 (defun subst (cl-new cl-old cl-tree &rest cl-keys)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
556 "Substitute NEW for OLD everywhere in TREE (non-destructively).
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
557 Return a copy of TREE with all elements `eql' to OLD replaced by NEW.
62626
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
558 \nKeywords supported: :test :test-not :key
970aed705a2a (pushnew, cl-macroexpand, floatp-safe, plusp, minusp, oddp, evenp, mapcar*,
Juanma Barranquero <lekktu@gmail.com>
parents: 62424
diff changeset
559 \n(fn NEW OLD TREE [KEYWORD VALUE]...)"
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
560 (if (or cl-keys (and (numberp cl-old) (not (integerp cl-old))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
561 (apply 'sublis (list (cons cl-old cl-new)) cl-tree cl-keys)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
562 (cl-do-subst cl-new cl-old cl-tree)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
563
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
564 (defun cl-do-subst (cl-new cl-old cl-tree)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
565 (cond ((eq cl-tree cl-old) cl-new)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
566 ((consp cl-tree)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
567 (let ((a (cl-do-subst cl-new cl-old (car cl-tree)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
568 (d (cl-do-subst cl-new cl-old (cdr cl-tree))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
569 (if (and (eq a (car cl-tree)) (eq d (cdr cl-tree)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
570 cl-tree (cons a d))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
571 (t cl-tree)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
572
62642
59b6666e38f9 (acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 62630
diff changeset
573 (defun acons (key value alist)
59b6666e38f9 (acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 62630
diff changeset
574 "Add KEY and VALUE to ALIST.
59b6666e38f9 (acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 62630
diff changeset
575 Return a new list with (cons KEY VALUE) as car and ALIST as cdr."
59b6666e38f9 (acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 62630
diff changeset
576 (cons (cons key value) alist))
59b6666e38f9 (acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 62630
diff changeset
577
59b6666e38f9 (acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 62630
diff changeset
578 (defun pairlis (keys values &optional alist)
59b6666e38f9 (acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 62630
diff changeset
579 "Make an alist from KEYS and VALUES.
59b6666e38f9 (acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 62630
diff changeset
580 Return a new alist composed by associating KEYS to corresponding VALUES;
59b6666e38f9 (acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 62630
diff changeset
581 the process stops as soon as KEYS or VALUES run out.
59b6666e38f9 (acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 62630
diff changeset
582 If ALIST is non-nil, the new pairs are prepended to it."
59b6666e38f9 (acons, pairlis): Add docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 62630
diff changeset
583 (nconc (mapcar* 'cons keys values) alist))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
584
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
585
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
586 ;;; Miscellaneous.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
587
30613
a262f769fc3d (first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents: 28824
diff changeset
588 (defvar cl-fake-autoloads nil
a262f769fc3d (first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents: 28824
diff changeset
589 "Non-nil means don't make CL functions autoload.")
a262f769fc3d (first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents: 28824
diff changeset
590
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
591 ;;; Autoload the other portions of the package.
53595
7ea1b7196d49 *** empty log message ***
Luc Teirlinck <teirllm@auburn.edu>
parents: 53594
diff changeset
592 ;; We want to replace the basic versions of dolist, dotimes, declare below.
36551
54fe96bd9530 (dotimes, dolist): Undef prior to autoloading
Dave Love <fx@gnu.org>
parents: 34899
diff changeset
593 (fmakunbound 'dolist)
54fe96bd9530 (dotimes, dolist): Undef prior to autoloading
Dave Love <fx@gnu.org>
parents: 34899
diff changeset
594 (fmakunbound 'dotimes)
53594
587ca9eaf25e Add `fmakunbound' for `declare'.
Luc Teirlinck <teirllm@auburn.edu>
parents: 52401
diff changeset
595 (fmakunbound 'declare)
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
596 (mapcar (function
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
597 (lambda (set)
30613
a262f769fc3d (first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents: 28824
diff changeset
598 (let ((file (if cl-fake-autoloads "<none>" (car set))))
a262f769fc3d (first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents: 28824
diff changeset
599 (mapcar (function
a262f769fc3d (first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents: 28824
diff changeset
600 (lambda (func)
a262f769fc3d (first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents: 28824
diff changeset
601 (autoload func (car set) nil nil (nth 1 set))))
a262f769fc3d (first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents: 28824
diff changeset
602 (cddr set)))))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
603 '(("cl-extra" nil
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
604 coerce equalp cl-map-keymap maplist mapc mapl mapcan mapcon
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
605 cl-map-keymap cl-map-keymap-recursively cl-map-intervals
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
606 cl-map-overlays cl-set-frame-visible-p cl-float-limits
28038
5ef76039360b Remove expt, delete, rassoc from autoloads
Dave Love <fx@gnu.org>
parents: 27586
diff changeset
607 gcd lcm isqrt floor* ceiling* truncate* round*
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
608 mod* rem* signum random* make-random-state random-state-p
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
609 subseq concatenate cl-mapcar-many map some every notany
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
610 notevery revappend nreconc list-length tailp copy-tree get* getf
26939
672e75118c0f Remove Emacs 18 compatibility code. Prepend `cl-' to autoload names
Dave Love <fx@gnu.org>
parents: 24790
diff changeset
611 cl-set-getf cl-do-remf remprop cl-make-hash-table cl-hash-lookup
672e75118c0f Remove Emacs 18 compatibility code. Prepend `cl-' to autoload names
Dave Love <fx@gnu.org>
parents: 24790
diff changeset
612 cl-gethash cl-puthash cl-remhash cl-clrhash cl-maphash cl-hash-table-p
672e75118c0f Remove Emacs 18 compatibility code. Prepend `cl-' to autoload names
Dave Love <fx@gnu.org>
parents: 24790
diff changeset
613 cl-hash-table-count cl-progv-before cl-prettyexpand
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
614 cl-macroexpand-all)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
615 ("cl-seq" nil
30613
a262f769fc3d (first, ..., tenth): Make them macros.
Gerd Moellmann <gerd@gnu.org>
parents: 28824
diff changeset
616 reduce fill replace remove* remove-if remove-if-not
28038
5ef76039360b Remove expt, delete, rassoc from autoloads
Dave Love <fx@gnu.org>
parents: 27586
diff changeset
617 delete* delete-if delete-if-not remove-duplicates
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
618 delete-duplicates substitute substitute-if substitute-if-not
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
619 nsubstitute nsubstitute-if nsubstitute-if-not find find-if
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
620 find-if-not position position-if position-if-not count count-if
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
621 count-if-not mismatch search sort* stable-sort merge member*
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
622 member-if member-if-not cl-adjoin assoc* assoc-if assoc-if-not
28038
5ef76039360b Remove expt, delete, rassoc from autoloads
Dave Love <fx@gnu.org>
parents: 27586
diff changeset
623 rassoc* rassoc-if rassoc-if-not union nunion intersection
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
624 nintersection set-difference nset-difference set-exclusive-or
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
625 nset-exclusive-or subsetp subst-if subst-if-not nsubst nsubst-if
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
626 nsubst-if-not sublis nsublis tree-equal)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
627 ("cl-macs" nil
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
628 gensym gentemp typep cl-do-pop get-setf-method
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
629 cl-struct-setf-expander compiler-macroexpand cl-compile-time-init)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
630 ("cl-macs" t
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
631 defun* defmacro* function* destructuring-bind eval-when
26939
672e75118c0f Remove Emacs 18 compatibility code. Prepend `cl-' to autoload names
Dave Love <fx@gnu.org>
parents: 24790
diff changeset
632 load-time-value case ecase typecase etypecase
27509
3911c25d526f Replace autoloads for dolist, dotimes.
Dave Love <fx@gnu.org>
parents: 27485
diff changeset
633 block return return-from loop do do* dolist dotimes do-symbols
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
634 do-all-symbols psetq progv flet labels macrolet symbol-macrolet
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
635 lexical-let lexical-let* multiple-value-bind multiple-value-setq
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
636 locally the declare define-setf-method defsetf define-modify-macro
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
637 setf psetf remf shiftf rotatef letf letf* callf callf2 defstruct
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
638 check-type assert ignore-errors define-compiler-macro)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
639
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
640 ;;; Define data for indentation and edebug.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
641 (mapcar (function
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
642 (lambda (entry)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
643 (mapcar (function
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
644 (lambda (func)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
645 (put func 'lisp-indent-function (nth 1 entry))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
646 (put func 'lisp-indent-hook (nth 1 entry))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
647 (or (get func 'edebug-form-spec)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
648 (put func 'edebug-form-spec (nth 2 entry)))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
649 (car entry))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
650 '(((defun* defmacro*) 2)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
651 ((function*) nil
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
652 (&or symbolp ([&optional 'macro] 'lambda (&rest sexp) &rest form)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
653 ((eval-when) 1 (sexp &rest form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
654 ((declare) nil (&rest sexp))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
655 ((the) 1 (sexp &rest form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
656 ((case ecase typecase etypecase) 1 (form &rest (sexp &rest form)))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
657 ((block return-from) 1 (sexp &rest form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
658 ((return) nil (&optional form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
659 ((do do*) 2 ((&rest &or symbolp (symbolp &optional form form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
660 (form &rest form)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
661 &rest form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
662 ((do-symbols) 1 ((symbolp form &optional form form) &rest form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
663 ((do-all-symbols) 1 ((symbolp form &optional form) &rest form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
664 ((psetq setf psetf) nil edebug-setq-form)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
665 ((progv) 2 (&rest form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
666 ((flet labels macrolet) 1
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
667 ((&rest (sexp sexp &rest form)) &rest form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
668 ((symbol-macrolet lexical-let lexical-let*) 1
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
669 ((&rest &or symbolp (symbolp form)) &rest form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
670 ((multiple-value-bind) 2 ((&rest symbolp) &rest form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
671 ((multiple-value-setq) 1 ((&rest symbolp) &rest form))
27485
82ee2e8bf67c Remove stuff for dotimes, dolist, push, pop.
Dave Love <fx@gnu.org>
parents: 26939
diff changeset
672 ((incf decf remf pushnew shiftf rotatef) nil (&rest form))
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
673 ((letf letf*) 1 ((&rest (&rest form)) &rest form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
674 ((callf destructuring-bind) 2 (sexp form &rest form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
675 ((callf2) 3 (sexp form form &rest form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
676 ((loop) nil (&rest &or symbolp form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
677 ((ignore-errors) 0 (&rest form))))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
678
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
679
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
680 ;;; This goes here so that cl-macs can find it if it loads right now.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
681 (provide 'cl-19) ; usage: (require 'cl-19 "cl")
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
682
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
683
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
684 ;;; Things to do after byte-compiler is loaded.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
685 ;;; As a side effect, we cause cl-macs to be loaded when compiling, so
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
686 ;;; that the compiler-macros defined there will be present.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
687
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
688 (defvar cl-hacked-flag nil)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
689 (defun cl-hack-byte-compiler ()
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
690 (if (and (not cl-hacked-flag) (fboundp 'byte-compile-file-form))
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
691 (progn
46356
35f0290a4079 (cl-set-substring): Fix thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46325
diff changeset
692 (setq cl-hacked-flag t) ; Do it first, to prevent recursion.
35f0290a4079 (cl-set-substring): Fix thinko.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46325
diff changeset
693 (cl-compile-time-init)))) ; In cl-macs.el.
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
694
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
695 ;;; Try it now in case the compiler has already been loaded.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
696 (cl-hack-byte-compiler)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
697
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
698 ;;; Also make a hook in case compiler is loaded after this file.
27586
5d6eb73b10d0 Use bytecomp-load-hook, not emacs-lisp-mode-hook.
Dave Love <fx@gnu.org>
parents: 27509
diff changeset
699 (add-hook 'bytecomp-load-hook 'cl-hack-byte-compiler)
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
700
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
701
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
702 ;;; The following ensures that packages which expect the old-style cl.el
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
703 ;;; will be happy with this one.
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
704
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
705 (provide 'cl)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
706
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
707 (run-hooks 'cl-load-hook)
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
708
62630
630219b07e90 (eql): Remove. It's a builtin already.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 62626
diff changeset
709 ;; arch-tag: 5f07fa74-f153-4524-9303-21f5be125851
4355
691a28818487 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
710 ;;; cl.el ends here