Fixed a paren mismatch in "macro?" helper in printer.

This commit is contained in:
Abdulaziz Ghuloum 2008-05-13 06:09:58 -07:00
parent 5d3ab96c2c
commit 6511dd1002
3 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@
(unless (symbol? x)
(die 'pretty-format "not a symbol" x))
(case-lambda
[() (hashtable-ref h x)]
[() (hashtable-ref h x #f)]
[(v) (hashtable-set! h x v)])))
;;; standard formats

View File

@ -462,8 +462,8 @@
(let ([p (get-fmt a)])
(and (pair? p)
(eq? (car p) 'read-macro)
(string? (cdr p)))
p))))))
(string? (cdr p))
p)))))))
(define write-pair
(lambda (x p m h i)

View File

@ -1 +1 @@
1475
1476