From 92f2f154ba5caf8b457807df17cb2214eabcd1b0 Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Tue, 28 Aug 2007 23:55:46 +0000 Subject: [PATCH] Ticket #11 Add case for double-double-float. --- code/numbers.lisp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/numbers.lisp b/code/numbers.lisp index 6ee980f57..49efeeb9c 100644 --- a/code/numbers.lisp +++ b/code/numbers.lisp @@ -5,7 +5,7 @@ ;;; 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.62 2007/01/23 16:21:11 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/numbers.lisp,v 1.63 2007/08/28 23:55:46 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1089,6 +1089,8 @@ (lambda (x y) (and (eql (numerator x) (numerator y)) (eql (denominator x) (denominator y))))) + #+double-double + (double-double-float eql) (complex (lambda (x y) (and (eql (realpart x) (realpart y)) -- GitLab