Changed ucode-type fixnum -> positive-fixnum
authorStephen Adams <edu/mit/csail/zurich/adams>
Sat, 29 Jan 1994 22:08:15 +0000 (22:08 +0000)
committerStephen Adams <edu/mit/csail/zurich/adams>
Sat, 29 Jan 1994 22:08:15 +0000 (22:08 +0000)
v7/src/runtime/hashtb.scm

index 45cab699bf55e689d9b323a6cddbfdb6a9a9aa9f..30060c5ea0590bd153e2078bf327750a96876fac 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: hashtb.scm,v 1.17 1993/12/08 21:13:14 cph Exp $
+$Id: hashtb.scm,v 1.18 1994/01/29 22:08:15 adams Exp $
 
 Copyright (c) 1990-93 Massachusetts Institute of Technology
 
@@ -729,8 +729,9 @@ MIT in each case. |#
 \f
 (define-integrable (eq-hash object)
   (let ((n
-        ((ucode-primitive primitive-object-set-type) (ucode-type fixnum)
-                                                     object)))
+        ((ucode-primitive primitive-object-set-type)
+         (ucode-type positive-fixnum)
+         object)))
     (if (fix:< n 0)
        (fix:not n)
        n)))