(Info-find-file): Fall back on the installation directory if we can't find the info node anywhere else.
This commit is contained in:
parent
2ad77c9dd4
commit
1c4dd947d6
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* info.el (Info-find-file): Fall back on the installation
|
||||
directory if we can't find the info node anywhere else.
|
||||
|
||||
2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
|
||||
|
||||
* vc/vc.el (vc-revert-file):
|
||||
|
|
|
@ -728,6 +728,11 @@ just return nil (no error)."
|
|||
(append Info-directory-list
|
||||
Info-additional-directory-list)
|
||||
Info-directory-list)))))
|
||||
;; Fall back on the installation directory if we can't find
|
||||
;; the info node anywhere else.
|
||||
(when installation-directory
|
||||
(setq dirs (append dirs (list (expand-file-name
|
||||
"info" installation-directory)))))
|
||||
;; Search the directory list for file FILENAME.
|
||||
(while (and dirs (not found))
|
||||
(setq temp (expand-file-name filename (car dirs)))
|
||||
|
|
Loading…
Add table
Reference in a new issue