From a32c0296dd5004f80beeac37e3feb951aa84da0a Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Sat, 5 Feb 1994 11:41:36 +0000 Subject: [PATCH] Un-broke (coerce x 'single-float) --- code/seq.lisp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/code/seq.lisp b/code/seq.lisp index 250a86a3e..357f8fc65 100644 --- a/code/seq.lisp +++ b/code/seq.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/seq.lisp,v 1.16 1994/02/04 15:25:43 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/seq.lisp,v 1.17 1994/02/05 11:41:36 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -807,15 +807,15 @@ ((eq output-type-spec 'function) (eval `#',object)) ((numberp object) - (case output-type-spec - ((short-float single-float float) - (%single-float object)) - ((double-float long-float) - (%double-float object)) - (complex - (complex object)) - (t - (error "~S can't be converted to type ~S." object output-type-spec)))) + (cond + ((subtypep output-type-spec 'single-float) + (%single-float object)) + ((subtypep output-type-spec 'double-float) + (%double-float object)) + ((subtypep output-type-spec 'complex) + (complex object)) + (t + (error "~S can't be converted to type ~S." object output-type-spec)))) (t (typecase object (list -- GitLab