aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-03-07 19:45:56 +0000
committerDave Love2000-03-07 19:45:56 +0000
commit76162e12c84d2957230a29d6a4224433c68421dd (patch)
treea42ca48b21f6d6d3218dddccb7df214a606cc070
parenta599ac7c8f834900ac9041133ef5fa3d3c25cf75 (diff)
downloademacs-76162e12c84d2957230a29d6a4224433c68421dd.tar.gz
emacs-76162e12c84d2957230a29d6a4224433c68421dd.zip
Remove references to rassoc, delete, expt.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--man/cl.texi13
2 files changed, 12 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1123b83c357..d9374996379 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,12 @@
12000-03-07 Dave Love <fx@gnu.org>
2
3 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads
4 lists.
5
6 * files.el (auto-mode-alist): Add configure.in.
7
8 * progmodes/autoconf.el: New file.
9
12000-03-07 Gerd Moellmann <gerd@gnu.org> 102000-03-07 Gerd Moellmann <gerd@gnu.org>
2 11
3 * mail/mh-e.el: Change maintainer to `none'. 12 * mail/mh-e.el: Change maintainer to `none'.
diff --git a/man/cl.texi b/man/cl.texi
index 17c92d970df..a2f7b78e758 100644
--- a/man/cl.texi
+++ b/man/cl.texi
@@ -300,8 +300,8 @@ by @code{cl-}. Here is a complete list of functions @emph{not}
300prefixed by @code{cl-} which were not taken from Common Lisp: 300prefixed by @code{cl-} which were not taken from Common Lisp:
301 301
302@example 302@example
303member delete remove remq 303member remove remq
304rassoc floatp-safe lexical-let lexical-let* 304floatp-safe lexical-let lexical-let*
305callf callf2 letf letf* 305callf callf2 letf letf*
306defsubst* defalias add-hook eval-when-compile 306defsubst* defalias add-hook eval-when-compile
307@end example 307@end example
@@ -3419,7 +3419,7 @@ which were left out of Emacs Lisp.
3419 3419
3420@menu 3420@menu
3421* Predicates on Numbers:: `plusp', `oddp', `floatp-safe', etc. 3421* Predicates on Numbers:: `plusp', `oddp', `floatp-safe', etc.
3422* Numerical Functions:: `abs', `expt', `floor*', etc. 3422* Numerical Functions:: `abs', `floor*', etc.
3423* Random Numbers:: `random*', `make-random-state' 3423* Random Numbers:: `random*', `make-random-state'
3424* Implementation Parameters:: `most-positive-fixnum', `most-positive-float' 3424* Implementation Parameters:: `most-positive-fixnum', `most-positive-float'
3425@end menu 3425@end menu
@@ -4523,13 +4523,6 @@ This function searches for an element whose @code{cdr} matches
4523the inverse of the mapping to @var{item}. 4523the inverse of the mapping to @var{item}.
4524@end defun 4524@end defun
4525 4525
4526@defun rassoc item a-list
4527This function searches like @code{rassoc*} with a @code{:test}
4528argument of @code{equal}. It is analogous to Emacs Lisp's
4529standard @code{assoc} function, which derives from the MacLisp
4530rather than the Common Lisp tradition.
4531@end defun
4532
4533@findex assoc-if 4526@findex assoc-if
4534@findex assoc-if-not 4527@findex assoc-if-not
4535@findex rassoc-if 4528@findex rassoc-if