.
original commit: a4a55158e53e53aeabe8890d1c1a1216dffbfcc8
This commit is contained in:
parent
47ec3f28ac
commit
1ce1ea870a
|
@ -16,7 +16,14 @@
|
|||
(require-library "url.ss" "net")
|
||||
|
||||
(define startup-url
|
||||
(string-append "file:" (build-path (collection-path "helpdoc") "helpdesk.html")))
|
||||
(string-append "file:"
|
||||
(with-handlers ([void
|
||||
(lambda (x)
|
||||
(build-path (collection-path "help") "index.htm"))])
|
||||
(let ([f (build-path (collection-path "doc") "help" "index.html")])
|
||||
(if (file-exists? f)
|
||||
f
|
||||
(error "not there"))))))
|
||||
|
||||
(invoke-unit/sig
|
||||
(require-relative-library "helpr.ss")
|
||||
|
|
Loading…
Reference in New Issue
Block a user