X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcode%2Fnumbers.lisp;h=d525b8a38dcd1f6be93f10afc0225e044c566ed4;hb=f3f677703e37f5a335b3be7fa64f7748ad969517;hp=2b26643bc3cf141f5a186c3f5fec04fbca0297b5;hpb=60beb67fb92c33a934ad7710692d779760bcc39a;p=sbcl.git diff --git a/src/code/numbers.lisp b/src/code/numbers.lisp index 2b26643..d525b8a 100644 --- a/src/code/numbers.lisp +++ b/src/code/numbers.lisp @@ -388,7 +388,7 @@ (cond ((eql t1 0) 0) ((eql g2 1) (%make-ratio t1 (* t2 dy))) - (T (let* ((nn (truncate t1 g2)) + (t (let* ((nn (truncate t1 g2)) (t3 (truncate dy g2)) (nd (if (eql t2 1) t3 (* t2 t3)))) (if (eql nd 1) nn (%make-ratio nn nd)))))))))))) @@ -744,7 +744,7 @@ "Return T if all of its arguments are numerically equal, NIL otherwise." (the number number) (do ((nlist more-numbers (cdr nlist))) - ((atom nlist) T) + ((atom nlist) t) (declare (list nlist)) (if (not (= (car nlist) number)) (return nil)))) @@ -756,7 +756,7 @@ ((atom nlist) t) (declare (list nlist)) (unless (do* ((nl nlist (cdr nl))) - ((atom nl) T) + ((atom nl) t) (declare (list nl)) (if (= head (car nl)) (return nil))) (return nil))))