diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2007-01-18 16:07:36 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2007-01-18 16:07:36 +0000 |
commit | cd4496efc898253c6cd5fe9f3ee54b158f7420f3 (patch) | |
tree | df735774552670e82149e6ea5bbfe9da7279cfe1 /lisp/paths.el | |
parent | d77153c5aafb2b9ea4a3b112698dbb5d1e5aa498 (diff) | |
download | emacs-cd4496efc898253c6cd5fe9f3ee54b158f7420f3.tar.gz |
(Info-default-directory-list): Change default info dir to
share/info.
Diffstat (limited to 'lisp/paths.el')
-rw-r--r-- | lisp/paths.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/paths.el b/lisp/paths.el index 1d8f8c45ed7..61c82e6718b 100644 --- a/lisp/paths.el +++ b/lisp/paths.el @@ -68,7 +68,7 @@ comparison." (suffixes ;; Subdirectories in each directory tree that may contain info ;; directories. - '("" "share/" "gnu/" "gnu/lib/" "gnu/lib/emacs/" + '("share/" "" "gnu/" "gnu/lib/" "gnu/lib/emacs/" "emacs/" "lib/" "lib/emacs/")) (standard-info-dirs (apply #'nconc @@ -81,10 +81,10 @@ comparison." dirs (prune-directory-list dirs config)))) prefixes)))) - ;; If $(prefix)/info is not one of the standard info directories, - ;; they are probably installing an experimental version of Emacs, - ;; so make sure that experimental version's Info files override - ;; the ones in standard directories. + ;; If $(prefix)/share/info is not one of the standard info + ;; directories, they are probably installing an experimental + ;; version of Emacs, so make sure that experimental version's Info + ;; files override the ones in standard directories. (if (member config-dir standard-info-dirs) (nconc standard-info-dirs config) (cons config-dir standard-info-dirs))) |