Fixed a paren mismatch in "macro?" helper in printer.
This commit is contained in:
parent
5d3ab96c2c
commit
6511dd1002
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -1 +1 @@
|
|||
1475
|
||||
1476
|
||||
|
|
Loading…
Reference in New Issue