minor cleanup
svn: r15885
This commit is contained in:
parent
33680c1b9c
commit
8838409b44
|
@ -1898,7 +1898,8 @@ If the namespace does not, they are colored the unbound color.
|
||||||
(let ([handle-var-ref
|
(let ([handle-var-ref
|
||||||
(λ (var index binders varsets)
|
(λ (var index binders varsets)
|
||||||
(color-variable var index varsets)
|
(color-variable var index varsets)
|
||||||
(document-variable var index)
|
(when (syntax-original? var)
|
||||||
|
(document-variable var index))
|
||||||
(connect-identifier var
|
(connect-identifier var
|
||||||
rename-ht
|
rename-ht
|
||||||
binders
|
binders
|
||||||
|
@ -2152,7 +2153,7 @@ If the namespace does not, they are colored the unbound color.
|
||||||
(and (not a)
|
(and (not a)
|
||||||
(not b)))))))])
|
(not b)))))))])
|
||||||
(cond
|
(cond
|
||||||
[(module-identifier-mapping-get varsets var (λ () #f))
|
[(get-ids varsets var (λ () #f))
|
||||||
(color var set!d-variable-style-name)]
|
(color var set!d-variable-style-name)]
|
||||||
[lexical? (color var lexically-bound-variable-style-name)]
|
[lexical? (color var lexically-bound-variable-style-name)]
|
||||||
[(pair? b) (color var imported-variable-style-name)])))
|
[(pair? b) (color var imported-variable-style-name)])))
|
||||||
|
@ -2607,9 +2608,8 @@ If the namespace does not, they are colored the unbound color.
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
||||||
;; document-variable : stx phase-level -> void
|
;; document-variable : stx[identifier,original] phase-level -> void
|
||||||
(define (document-variable stx phase-level)
|
(define (document-variable stx phase-level)
|
||||||
(when (syntax-original? stx)
|
|
||||||
(let ([defs-text (currently-processing-definitions-text)])
|
(let ([defs-text (currently-processing-definitions-text)])
|
||||||
(when defs-text
|
(when defs-text
|
||||||
(let ([binding-info (identifier-binding stx phase-level)])
|
(let ([binding-info (identifier-binding stx phase-level)])
|
||||||
|
@ -2651,7 +2651,7 @@ If the namespace does not, they are colored the unbound color.
|
||||||
(url-query url)
|
(url-query url)
|
||||||
tag)
|
tag)
|
||||||
url)])
|
url)])
|
||||||
(send-url (url->string url2))))))))))))))))))))))
|
(send-url (url->string url2)))))))))))))))))))))
|
||||||
|
|
||||||
(define (build-docs-label desc)
|
(define (build-docs-label desc)
|
||||||
(let ([libs (exported-index-desc-from-libs desc)])
|
(let ([libs (exported-index-desc-from-libs desc)])
|
||||||
|
|
Loading…
Reference in New Issue
Block a user