aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorDave Love1999-01-26 18:52:46 +0000
committerDave Love1999-01-26 18:52:46 +0000
commit99728db9d28a7cb342233ce4ed788a420cb383fb (patch)
treeca3df96a2a59f2da1bf2e95e0ff1b7409bfbbb9a /lisp
parent171321202579d7a7e1eaaf6bf377a390a50fb01a (diff)
downloademacs-99728db9d28a7cb342233ce4ed788a420cb383fb.tar.gz
emacs-99728db9d28a7cb342233ce4ed788a420cb383fb.zip
(Info-default-directory-list): Use configdir twice.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/paths.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/paths.el b/lisp/paths.el
index b2b32ac2e4f..f2284fc8443 100644
--- a/lisp/paths.el
+++ b/lisp/paths.el
@@ -51,7 +51,9 @@
51 (not (string= configure-info-directory usrdir)) 51 (not (string= configure-info-directory usrdir))
52 (list usrdir))) 52 (list usrdir)))
53 (configdir (file-name-as-directory configure-info-directory))) 53 (configdir (file-name-as-directory configure-info-directory)))
54 (setq start (nconc start sysdir (list configdir))) 54 ;; configdir comes last so that we can identify it as such, but we
55 ;; also we override sysdir, hence the two occurrences.
56 (setq start (nconc start (list configdir) sysdir (list configdir)))
55 start) 57 start)
56 "Default list of directories to search for Info documentation files. 58 "Default list of directories to search for Info documentation files.
57They are searched in the order they are given in the list. 59They are searched in the order they are given in the list.