Print #!aux as itself.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Thu, 24 Mar 1994 18:29:08 +0000 (18:29 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Thu, 24 Mar 1994 18:29:08 +0000 (18:29 +0000)
v7/src/runtime/unpars.scm

index e0f969416de3795e185923d0659297d0f263d3c1..2975744a758f981c37efcddc7ceef6b5fd48e9fb 100644 (file)
@@ -1,8 +1,8 @@
 #| -*-Scheme-*-
 
-$Id: unpars.scm,v 14.33 1993/10/21 15:04:31 cph Exp $
+$Id: unpars.scm,v 14.34 1994/03/24 18:29:08 gjr Exp $
 
-Copyright (c) 1988-93 Massachusetts Institute of Technology
+Copyright (c) 1988-1994 Massachusetts Institute of Technology
 
 This material was developed by the Scheme project at the Massachusetts
 Institute of Technology, Department of Electrical Engineering and
@@ -312,6 +312,7 @@ MIT in each case. |#
        ((null? object) (*unparse-string "()"))
        ((eq? object #t) (*unparse-string "#t"))
        ((undefined-value? object) (*unparse-string "#[undefined-value]"))
+       ((eq? object lambda-auxiliary-tag) (*unparse-string "#!aux"))
        ((eq? object lambda-optional-tag) (*unparse-string "#!optional"))
        ((eq? object lambda-rest-tag) (*unparse-string "#!rest"))
        (else (unparse/default object))))