Change SCode variable objects to unparse their name as an object
authorChris Hanson <org/chris-hanson/cph>
Fri, 20 Feb 1987 13:49:28 +0000 (13:49 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 20 Feb 1987 13:49:28 +0000 (13:49 +0000)
rather than a symbol, so as to distinguish between uninterned and
interned symbols.

v7/src/runtime/unpars.scm

index f6184e955285532c2aad612b23c375c4b01a4e73..1a76f98eb4ebc0c5043ef3320017d575e4ac23f2 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/unpars.scm,v 13.41 1987/01/23 00:21:48 jinx Exp $
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/unpars.scm,v 13.42 1987/02/20 13:49:28 cph Exp $
 ;;;
 ;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
     (unparse-with-brackets
      (lambda ()
        (*unparse-string "VARIABLE ")
-       (unparse-symbol (variable-name variable))))))
+       (*unparse-object (variable-name variable))))))
 
 (define (unparse-datum object)
   (*unparse-string (number->string (primitive-datum object) 16)))