Fix print wrapper to print hash number correctly.
authorChris Hanson <org/chris-hanson/cph>
Tue, 16 Dec 1986 06:25:56 +0000 (06:25 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 16 Dec 1986 06:25:56 +0000 (06:25 +0000)
v7/src/compiler/base/utils.scm

index 2739dc37aa75ac857e32a917de595f6cd6a9648c..5a2d98392126b973f91b3e5888fbb07737ca7679 100644 (file)
@@ -37,7 +37,7 @@
 
 ;;;; Compiler Utilities
 
-;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/base/utils.scm,v 1.71 1986/12/15 21:44:26 cph Exp $
+;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/base/utils.scm,v 1.72 1986/12/16 06:25:56 cph Exp $
 
 (declare (usual-integrations))
 (using-syntax (access compiler-syntax-table compiler-package)
@@ -56,7 +56,7 @@
            ((vector-method object ':UNPARSE) object))
          (write-string " ")
          (fluid-let ((*unparser-radix* 10))
-           (write-string (object-hash object)))))))
+           (write (object-hash object)))))))
     tag))
 
 (define (vector-tag-put! tag key value)