aboutsummaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorDave Love2000-03-07 19:45:56 +0000
committerDave Love2000-03-07 19:45:56 +0000
commit76162e12c84d2957230a29d6a4224433c68421dd (patch)
treea42ca48b21f6d6d3218dddccb7df214a606cc070 /man
parenta599ac7c8f834900ac9041133ef5fa3d3c25cf75 (diff)
downloademacs-76162e12c84d2957230a29d6a4224433c68421dd.tar.gz
emacs-76162e12c84d2957230a29d6a4224433c68421dd.zip
Remove references to rassoc, delete, expt.
Diffstat (limited to 'man')
-rw-r--r--man/cl.texi13
1 files changed, 3 insertions, 10 deletions
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