From: Guillermo J. Rozas Date: Wed, 21 Aug 1991 16:57:02 +0000 (+0000) Subject: Make fields of pretty-printer-highlight structure mutable. X-Git-Tag: 20090517-FFI~10341 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=d24d33f33435daa21377722647bbe4e9993c7d3f;p=mit-scheme.git Make fields of pretty-printer-highlight structure mutable. --- diff --git a/v7/src/runtime/pp.scm b/v7/src/runtime/pp.scm index 7d1e9b04a..3910b6ee2 100644 --- a/v7/src/runtime/pp.scm +++ b/v7/src/runtime/pp.scm @@ -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)