From: Chris Hanson Date: Fri, 16 Sep 1994 21:21:09 +0000 (+0000) Subject: Treat LET* and LETREC specially, just like LET. X-Git-Tag: 20090517-FFI~7111 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=e5da962f4942e8ab7d196569998cf39faa0a90d8;p=mit-scheme.git Treat LET* and LETREC specially, just like LET. --- diff --git a/v7/src/runtime/pp.scm b/v7/src/runtime/pp.scm index d205f3d93..40baf51c6 100644 --- a/v7/src/runtime/pp.scm +++ b/v7/src/runtime/pp.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: pp.scm,v 14.29 1994/08/19 06:08:32 cph Exp $ +$Id: pp.scm,v 14.30 1994/09/16 21:21:09 cph Exp $ Copyright (c) 1988-94 Massachusetts Institute of Technology @@ -48,6 +48,8 @@ MIT in each case. |# (OR . ,forced-indentation) (AND . ,forced-indentation) (LET . ,print-let-expression) + (LET* . ,print-let-expression) + (LETREC . ,print-let-expression) (FLUID-LET . ,print-let-expression) (DEFINE . ,print-procedure) (LAMBDA . ,print-procedure)