Skip to content
Snippets Groups Projects
Commit 6be2b1a4 authored by ram's avatar ram
Browse files

Fix compilex rational subtract.

parent c7baada2
No related branches found
No related tags found
No related merge requests found
...@@ -5,11 +5,11 @@ ...@@ -5,11 +5,11 @@
;;; 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/numbers.lisp,v 1.25 1994/10/31 04:11:27 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/numbers.lisp,v 1.26 1995/02/17 18:04:08 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/numbers.lisp,v 1.25 1994/10/31 04:11:27 ram Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/numbers.lisp,v 1.26 1995/02/17 18:04:08 ram Exp $
;;; ;;;
;;; This file contains the definitions of most number functions. ;;; This file contains the definitions of most number functions.
;;; ;;;
...@@ -353,7 +353,7 @@ ...@@ -353,7 +353,7 @@
(canonical-complex (,op (realpart x) (realpart y)) (canonical-complex (,op (realpart x) (realpart y))
(,op (imagpart x) (imagpart y)))) (,op (imagpart x) (imagpart y))))
(((foreach bignum fixnum ratio single-float double-float) complex) (((foreach bignum fixnum ratio single-float double-float) complex)
(complex (,op x (realpart y)) (imagpart y))) (complex (,op x (realpart y)) (,op (imagpart y))))
((complex (or rational float)) ((complex (or rational float))
(complex (,op (realpart x) y) (imagpart x))) (complex (,op (realpart x) y) (imagpart x)))
......
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