Omit warning message if INFOPATH is not set.
This commit is contained in:
parent
e13ad264bc
commit
7a04cf81d5
|
@ -119,7 +119,13 @@
|
|||
(values parse-info
|
||||
(unescape-uri (http-url-search url)))))
|
||||
(else
|
||||
(let ((info-path ((infix-splitter ":") (getenv "INFOPATH"))))
|
||||
(let ((info-path
|
||||
((infix-splitter ":")
|
||||
(or (getenv "INFOPATH")
|
||||
(begin
|
||||
(format (current-error-port)
|
||||
"~%Warning: environment variable INFOPATH is unset.~%")
|
||||
"")))))
|
||||
(lambda (url)
|
||||
(values info-path
|
||||
(unescape-uri (http-url-search url))))))))
|
||||
|
|
Loading…
Reference in New Issue