Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
b7e75252
Commit
b7e75252
authored
Jul 30, 1993
by
ram
Browse files
(numeric-contagion single-float real) => float, not single-float
parent
fc851239
Changes
1
Hide whitespace changes
Inline
Side-by-side
code/type.lisp
View file @
b7e75252
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/type.lisp,v 1.
9
1993/0
3/14 17:16
:1
5
ram Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/type.lisp,v 1.
10
1993/0
7/30 11:00
:1
9
ram Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -1453,9 +1453,10 @@
((
eq
class1
'float
)
(
make-numeric-type
:class
'float
:format
(
if
(
eq
class2
'float
)
(
float-format-max
format1
format2
)
format1
)
:format
(
ecase
class2
(
float
(
float-format-max
format1
format2
))
((
integer
rational
)
format1
)
((
nil
)
nil
))
:complexp
(
if
(
or
(
eq
complexp1
:complex
)
(
eq
complexp2
:complex
))
:complex
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment