#| -*-Scheme-*-
-$Id: runtime.pkg,v 14.249 1995/03/03 23:40:44 cph Exp $
+$Id: runtime.pkg,v 14.250 1995/04/12 21:15:35 cph Exp $
Copyright (c) 1988-95 Massachusetts Institute of Technology
(files "unpars")
(parent ())
(export ()
+ *unparse-abbreviate-quotations?*
*unparse-compound-procedure-names?*
*unparse-disambiguate-null-as-itself?*
*unparse-disambiguate-null-lambda-list?*
#| -*-Scheme-*-
-$Id: unpars.scm,v 14.41 1995/03/04 00:37:55 cph Exp $
+$Id: unpars.scm,v 14.42 1995/04/12 21:14:45 cph Exp $
Copyright (c) 1988-95 Massachusetts Institute of Technology
(set! *unparse-disambiguate-null-lambda-list?* false)
(set! *unparse-compound-procedure-names?* true)
(set! *unparse-with-datum?* false)
+ (set! *unparse-abbreviate-quotations?* #f)
(set! system-global-unparser-table (make-system-global-unparser-table))
(set! *default-list-depth* 0)
(set-current-unparser-table! system-global-unparser-table))
(define *unparse-disambiguate-null-lambda-list?*)
(define *unparse-compound-procedure-names?*)
(define *unparse-with-datum?*)
+(define *unparse-abbreviate-quotations?*)
(define system-global-unparser-table)
(define *default-list-depth*)
(define *current-unparser-table*)
(*unparse-object (cadr pair)))
(define (unparse-list/prefix-pair? object)
- (and (not (future? (car object)))
+ (and *unparse-abbreviate-quotations?*
+ (not (future? (car object)))
(pair? (cdr object))
(null? (cddr object))
(case (car object)
#| -*-Scheme-*-
-$Id: runtime.pkg,v 14.249 1995/03/03 23:40:44 cph Exp $
+$Id: runtime.pkg,v 14.250 1995/04/12 21:15:35 cph Exp $
Copyright (c) 1988-95 Massachusetts Institute of Technology
(files "unpars")
(parent ())
(export ()
+ *unparse-abbreviate-quotations?*
*unparse-compound-procedure-names?*
*unparse-disambiguate-null-as-itself?*
*unparse-disambiguate-null-lambda-list?*