From: Dave Love Date: Tue, 7 Mar 2000 19:45:56 +0000 (+0000) Subject: Remove references to rassoc, delete, expt. X-Git-Tag: emacs-pretest-21.0.90~4733 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=76162e12c84d2957230a29d6a4224433c68421dd;p=emacs.git Remove references to rassoc, delete, expt. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1123b83c357..d9374996379 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2000-03-07 Dave Love + + * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads + lists. + + * files.el (auto-mode-alist): Add configure.in. + + * progmodes/autoconf.el: New file. + 2000-03-07 Gerd Moellmann * 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} prefixed by @code{cl-} which were not taken from Common Lisp: @example -member delete remove remq -rassoc floatp-safe lexical-let lexical-let* +member remove remq +floatp-safe lexical-let lexical-let* callf callf2 letf letf* defsubst* defalias add-hook eval-when-compile @end example @@ -3419,7 +3419,7 @@ which were left out of Emacs Lisp. @menu * Predicates on Numbers:: `plusp', `oddp', `floatp-safe', etc. -* Numerical Functions:: `abs', `expt', `floor*', etc. +* Numerical Functions:: `abs', `floor*', etc. * Random Numbers:: `random*', `make-random-state' * Implementation Parameters:: `most-positive-fixnum', `most-positive-float' @end menu @@ -4523,13 +4523,6 @@ This function searches for an element whose @code{cdr} matches the inverse of the mapping to @var{item}. @end defun -@defun rassoc item a-list -This function searches like @code{rassoc*} with a @code{:test} -argument of @code{equal}. It is analogous to Emacs Lisp's -standard @code{assoc} function, which derives from the MacLisp -rather than the Common Lisp tradition. -@end defun - @findex assoc-if @findex assoc-if-not @findex rassoc-if