Forgot to change > to != in last change.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Tue, 3 Apr 1990 19:57:05 +0000 (19:57 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Tue, 3 Apr 1990 19:57:05 +0000 (19:57 +0000)
v7/src/microcode/bitstr.c

index 6e95257076cee8de55b5917ecb3c184fc2b568c6..c5dbfa40163d2f2a50126265930efec806edd914 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/bitstr.c,v 9.41 1990/04/03 19:53:47 jinx Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/bitstr.c,v 9.42 1990/04/03 19:57:05 jinx Exp $
 
 Copyright (c) 1987, 1988, 1989, 1990 Massachusetts Institute of Technology
 
@@ -890,7 +890,7 @@ DEFINE_PRIMITIVE ("BIT-SUBSTRING-FIND-NEXT-SET-BIT", Prim_bitstr_find_next_set_b
       FIND_NEXT_SET_LOOP (bit);
     }
   INC_BIT_STRING_PTR (word);
-  while (word > end_word)
+  while (word != end_word)
   {
     if ((* (INC_BIT_STRING_PTR (scan))) != 0)
       {