fixing spacing in definition highlighting

This commit is contained in:
Alex Shinn 2011-05-11 06:59:15 +09:00
parent d60c8e5aa6
commit 33f7600640

View file

@ -209,8 +209,8 @@
(sym (string->symbol id)))
(cond
((highlight-scheme-definition? sym)
(let* ((res (cons (read-whitespace in) res))
(res (cons (highlight-class "keyword" id) res))
(let* ((res (cons (highlight-class "keyword" id) res))
(res (cons (read-whitespace in) res))
(res (if (eqv? #\( (peek-char in))
(cons (string (read-char in)) res)
res)))