fix rendering of transparent structures
This commit is contained in:
parent
37c43c23d6
commit
3a51e80751
|
@ -571,10 +571,14 @@
|
|||
(if (struct-proxy? (syntax-e c))
|
||||
(syntax-e (struct-proxy-name (syntax-e c)))
|
||||
(object-name (syntax-e c))))])])
|
||||
(set! src-col (+ src-col (string-length s)))
|
||||
(set! src-col (+ src-col (if (struct-proxy? (syntax-e c))
|
||||
1
|
||||
(string-length s))))
|
||||
s)
|
||||
symbol-color)
|
||||
(out " " no-color)))
|
||||
(unless (and (struct-proxy? (syntax-e c))
|
||||
(null? (struct-proxy-content (syntax-e c))))
|
||||
(out " " no-color))))
|
||||
(when (vector? (syntax-e c))
|
||||
(unless (and expr? (zero? quote-depth))
|
||||
(let ([vec (syntax-e c)])
|
||||
|
|
Loading…
Reference in New Issue
Block a user