diff options
| author | Dave Love | 2000-03-07 19:45:56 +0000 |
|---|---|---|
| committer | Dave Love | 2000-03-07 19:45:56 +0000 |
| commit | 76162e12c84d2957230a29d6a4224433c68421dd (patch) | |
| tree | a42ca48b21f6d6d3218dddccb7df214a606cc070 | |
| parent | a599ac7c8f834900ac9041133ef5fa3d3c25cf75 (diff) | |
| download | emacs-76162e12c84d2957230a29d6a4224433c68421dd.tar.gz emacs-76162e12c84d2957230a29d6a4224433c68421dd.zip | |
Remove references to rassoc, delete, expt.
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | man/cl.texi | 13 |
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 @@ | |||
| 1 | 2000-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 | |||
| 1 | 2000-03-07 Gerd Moellmann <gerd@gnu.org> | 10 | 2000-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} | |||
| 300 | prefixed by @code{cl-} which were not taken from Common Lisp: | 300 | prefixed by @code{cl-} which were not taken from Common Lisp: |
| 301 | 301 | ||
| 302 | @example | 302 | @example |
| 303 | member delete remove remq | 303 | member remove remq |
| 304 | rassoc floatp-safe lexical-let lexical-let* | 304 | floatp-safe lexical-let lexical-let* |
| 305 | callf callf2 letf letf* | 305 | callf callf2 letf letf* |
| 306 | defsubst* defalias add-hook eval-when-compile | 306 | defsubst* 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 | |||
| 4523 | the inverse of the mapping to @var{item}. | 4523 | the inverse of the mapping to @var{item}. |
| 4524 | @end defun | 4524 | @end defun |
| 4525 | 4525 | ||
| 4526 | @defun rassoc item a-list | ||
| 4527 | This function searches like @code{rassoc*} with a @code{:test} | ||
| 4528 | argument of @code{equal}. It is analogous to Emacs Lisp's | ||
| 4529 | standard @code{assoc} function, which derives from the MacLisp | ||
| 4530 | rather 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 |