Make fields of pretty-printer-highlight structure mutable.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Wed, 21 Aug 1991 16:57:02 +0000 (16:57 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Wed, 21 Aug 1991 16:57:02 +0000 (16:57 +0000)
v7/src/runtime/pp.scm

index 7d1e9b04ad354100bed85a4892a50e65eca636e6..3910b6ee222dae78b6e6ab66bad70bd0ccf20f56 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/pp.scm,v 14.18 1991/08/17 16:07:23 jinx Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/pp.scm,v 14.19 1991/08/21 16:57:02 jinx Exp $
 
 Copyright (c) 1988-1991 Massachusetts Institute of Technology
 
@@ -64,12 +64,12 @@ MIT in each case. |#
                            start-string end-string
                            as-code? depth-limit
                            breadth-limit)))
-  (object false read-only true)
-  (start-string "*=>" read-only true)
-  (end-string "<=*" read-only true)
-  (as-code? 'DEFAULT read-only true)
-  (depth-limit 'DEFAULT read-only true)
-  (breadth-limit 'DEFAULT read-only true))
+  (object false)
+  (start-string "*=>")
+  (end-string "<=*")
+  (as-code? 'DEFAULT)
+  (depth-limit 'DEFAULT)
+  (breadth-limit 'DEFAULT))
 
 (define *pp-named-lambda->define?* true)
 (define *pp-primitives-by-name* true)