when searching for docs, follow module chains only through .zo, and bail out when files are unavailable or inconsistent
svn: r9589 original commit: 119c09a27e47c0a85d87c3f04688d48381469518
This commit is contained in:
parent
bc815b0a14
commit
1032bb867b
|
@ -123,8 +123,12 @@
|
|||
rmp
|
||||
(lambda ()
|
||||
(let-values ([(valss stxess)
|
||||
(module-compiled-exports
|
||||
(get-module-code (resolved-module-path-name rmp)))])
|
||||
(with-handlers ([exn:fail?
|
||||
(lambda (exn)
|
||||
(values null null))])
|
||||
(module-compiled-exports
|
||||
(get-module-code (resolved-module-path-name rmp)
|
||||
#:choose (lambda (src zo so) 'zo))))])
|
||||
(let ([t
|
||||
;; Merge the two association lists:
|
||||
(let loop ([base valss]
|
||||
|
@ -164,8 +168,14 @@
|
|||
0)))
|
||||
(cadr a))
|
||||
rqueue))
|
||||
(error 'find-scheme-tag
|
||||
"dead end when looking for binding source: ~e"
|
||||
id))))
|
||||
(begin
|
||||
;; A dead end may not be our fault: the files could
|
||||
;; have changed in inconsistent ways. So just say #f
|
||||
;; for now.
|
||||
#;
|
||||
(error 'find-scheme-tag
|
||||
"dead end when looking for binding source: ~e"
|
||||
id)
|
||||
#f))))
|
||||
;; Can't get the module source, so continue with queue:
|
||||
(loop queue rqueue)))))))])))))))
|
||||
|
|
Loading…
Reference in New Issue
Block a user