From 6be2b1a4b85ee1b6c3158f2e6ef03b8d63bd0216 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Fri, 17 Feb 1995 18:04:08 +0000 Subject: [PATCH] Fix compilex rational subtract. --- code/numbers.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/numbers.lisp b/code/numbers.lisp index 352db06dc..09b496e94 100644 --- a/code/numbers.lisp +++ b/code/numbers.lisp @@ -5,11 +5,11 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (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. ;;; @@ -353,7 +353,7 @@ (canonical-complex (,op (realpart x) (realpart y)) (,op (imagpart x) (imagpart y)))) (((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 (,op (realpart x) y) (imagpart x))) -- GitLab