Fix typo in bignum =.
authorChris Hanson <org/chris-hanson/cph>
Wed, 6 Mar 1991 00:32:59 +0000 (00:32 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 6 Mar 1991 00:32:59 +0000 (00:32 +0000)
v7/src/microcode/bignum.c
v7/src/microcode/version.h
v8/src/microcode/version.h

index fd02cf2423eed5aa491cd767b6b94b769032a3bb..a22b88120f7bbcaa76d957af4b750eaeba9e1bfe 100644 (file)
@@ -1,8 +1,8 @@
 /* -*-C-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/bignum.c,v 9.34 1991/02/21 16:17:48 jinx Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/bignum.c,v 9.35 1991/03/06 00:32:43 cph Exp $
 
-Copyright (c) 1989, 1990 Massachusetts Institute of Technology
+Copyright (c) 1989-91 Massachusetts Institute of Technology
 
 This material was developed by the Scheme project at the Massachusetts
 Institute of Technology, Department of Electrical Engineering and
@@ -130,11 +130,11 @@ bignum_equal_p (x, y)
   return
     ((BIGNUM_ZERO_P (x))
      ? (BIGNUM_ZERO_P (y))
-     : ((! (BIGNUM_ZERO_P (y))) &&
-       ((BIGNUM_NEGATIVE_P (x))
-        ? (BIGNUM_NEGATIVE_P (x))
-        : (! (BIGNUM_NEGATIVE_P (x)))) &&
-       (bignum_equal_p_unsigned (x, y))));
+     : ((! (BIGNUM_ZERO_P (y)))
+       && ((BIGNUM_NEGATIVE_P (x))
+           ? (BIGNUM_NEGATIVE_P (y))
+           : (! (BIGNUM_NEGATIVE_P (y))))
+       && (bignum_equal_p_unsigned (x, y))));
 }
 
 enum bignum_comparison
index 6664604be41f6f4f57f6c55b1a85316162e392fc..e28ee83f3b79908559a506ef77e3a3391b901b4f 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/version.h,v 11.63 1991/03/01 00:56:27 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/version.h,v 11.64 1991/03/06 00:32:59 cph Exp $
 
 Copyright (c) 1988-91 Massachusetts Institute of Technology
 
@@ -46,5 +46,5 @@ MIT in each case. */
 #define VERSION                11
 #endif
 #ifndef SUBVERSION
-#define SUBVERSION     63
+#define SUBVERSION     64
 #endif
index 1ff20fe11195dad395c6c153a2fb4931fea42c64..4036d1241f295c7ce7ca9519602efed73c106e7d 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/version.h,v 11.63 1991/03/01 00:56:27 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/version.h,v 11.64 1991/03/06 00:32:59 cph Exp $
 
 Copyright (c) 1988-91 Massachusetts Institute of Technology
 
@@ -46,5 +46,5 @@ MIT in each case. */
 #define VERSION                11
 #endif
 #ifndef SUBVERSION
-#define SUBVERSION     63
+#define SUBVERSION     64
 #endif