diff options
author | Glenn Morris <rgm@gnu.org> | 2013-02-19 21:07:07 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-02-19 21:07:07 -0500 |
commit | 1dfcc79e83d3db031b45e9f6b9314dc1f0697b1d (patch) | |
tree | a2b4c595e8c665d19759bcc0f5a0a8dfa0439f7f /doc/misc/cl.texi | |
parent | 81ed22e4cad625e297314bc609d146e7e62695db (diff) | |
download | emacs-1dfcc79e83d3db031b45e9f6b9314dc1f0697b1d.tar.gz |
Make cl-floatp-safe just an alias for floatp
* lisp/emacs-lisp/cl-lib.el (cl-floatp-safe): Make it an alias for floatp.
* lisp/emacs-lisp/cl-macs.el (cl--make-type-test)
(cl--compiler-macro-assoc): Use floatp rather than cl-floatp-safe.
* doc/misc/cl.texi: Remove commented out sections about cl-floatp-safe.
Diffstat (limited to 'doc/misc/cl.texi')
-rw-r--r-- | doc/misc/cl.texi | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi index 11f19c8df06..83df411cb23 100644 --- a/doc/misc/cl.texi +++ b/doc/misc/cl.texi @@ -703,14 +703,6 @@ The type symbol @code{real} is a synonym for @code{number}, and The type symbols @code{character} and @code{string-char} match integers in the range from 0 to 255. -@c No longer relevant, so covered by first item above (float -> floatp). -@ignore -@item -The type symbol @code{float} uses the @code{cl-floatp-safe} predicate -defined by this package rather than @code{floatp}, so it will work -correctly even in Emacs versions without floating-point support. -@end ignore - @item The type list @code{(integer @var{low} @var{high})} represents all integers between @var{low} and @var{high}, inclusive. Either bound @@ -2921,14 +2913,6 @@ This predicate tests whether @var{integer} is even. It is an error if the argument is not an integer. @end defun -@ignore -@defun cl-floatp-safe object -This predicate tests whether @var{object} is a floating-point -number. On systems that support floating-point, this is equivalent -to @code{floatp}. On other systems, this always returns @code{nil}. -@end defun -@end ignore - @node Numerical Functions @section Numerical Functions |