Skip to content
Snippets Groups Projects
Commit 8de4d134 authored by pw's avatar pw
Browse files

From Eric Marsden:

FLOAT-RADIX should signal an error if arg is not a FLOAT.
parent 45a54c42
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/float.lisp,v 1.23 2001/03/04 20:12:36 pw Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/float.lisp,v 1.24 2001/06/17 19:08:35 pw Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -361,7 +361,7 @@ ...@@ -361,7 +361,7 @@
(defun float-radix (f) (defun float-radix (f)
"Returns (as an integer) the radix b of its floating-point "Returns (as an integer) the radix b of its floating-point
argument." argument."
(declare (ignore f)) (declare (float f)(ignorable f))
2) 2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment