]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove references to rassoc, delete, expt.
authorDave Love <fx@gnu.org>
Tue, 7 Mar 2000 19:45:56 +0000 (19:45 +0000)
committerDave Love <fx@gnu.org>
Tue, 7 Mar 2000 19:45:56 +0000 (19:45 +0000)
lisp/ChangeLog
man/cl.texi

index 1123b83c357ca4cc8f6a6ce8d3aa8aafb00b279a..d93749963790f3de677fbbe68fb21c0a6c9b0015 100644 (file)
@@ -1,3 +1,12 @@
+2000-03-07  Dave Love  <fx@gnu.org>
+
+       * 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  <gerd@gnu.org>
 
        * mail/mh-e.el: Change maintainer to `none'.
index 17c92d970df9ba29e9442bdbc9de843aee382471..a2f7b78e758d56d5f8c744abca2d540c11309934 100644 (file)
@@ -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