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)
|
(unless (symbol? x)
|
||||||
(die 'pretty-format "not a symbol" x))
|
(die 'pretty-format "not a symbol" x))
|
||||||
(case-lambda
|
(case-lambda
|
||||||
[() (hashtable-ref h x)]
|
[() (hashtable-ref h x #f)]
|
||||||
[(v) (hashtable-set! h x v)])))
|
[(v) (hashtable-set! h x v)])))
|
||||||
|
|
||||||
;;; standard formats
|
;;; standard formats
|
||||||
|
|
|
@ -462,8 +462,8 @@
|
||||||
(let ([p (get-fmt a)])
|
(let ([p (get-fmt a)])
|
||||||
(and (pair? p)
|
(and (pair? p)
|
||||||
(eq? (car p) 'read-macro)
|
(eq? (car p) 'read-macro)
|
||||||
(string? (cdr p)))
|
(string? (cdr p))
|
||||||
p))))))
|
p)))))))
|
||||||
|
|
||||||
(define write-pair
|
(define write-pair
|
||||||
(lambda (x p m h i)
|
(lambda (x p m h i)
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
1475
|
1476
|
||||||
|
|
Loading…
Reference in New Issue