diff options
author | Dave Love <fx@gnu.org> | 1999-01-22 22:18:01 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 1999-01-22 22:18:01 +0000 |
commit | 6d4e95cbf63b2d56479431fde63eeb8e25768602 (patch) | |
tree | 5136cb3b9401f9f1a195359a059eae1018f48000 /lisp/paths.el | |
parent | 4439cce1e76d70b56e963e0f29bdf790c59ca1a0 (diff) | |
download | emacs-6d4e95cbf63b2d56479431fde63eeb8e25768602.tar.gz |
#Oops in last change.
(Info-default-directory-list): Put sysdir after start.
Diffstat (limited to 'lisp/paths.el')
-rw-r--r-- | lisp/paths.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/paths.el b/lisp/paths.el index 08911c8be7d..b2b32ac2e4f 100644 --- a/lisp/paths.el +++ b/lisp/paths.el @@ -51,7 +51,7 @@ (not (string= configure-info-directory usrdir)) (list usrdir))) (configdir (file-name-as-directory configure-info-directory))) - (setq start (nconc start (list configdir) sysdir)) + (setq start (nconc start sysdir (list configdir))) start) "Default list of directories to search for Info documentation files. They are searched in the order they are given in the list. |