changeset 24194:ed72bbcad0b4

(Info-default-directory-list): Use configdir twice.
author Dave Love <fx@gnu.org>
date Tue, 26 Jan 1999 18:52:46 +0000
parents 2cc3642eb734
children 5ca1f849155f
files lisp/paths.el
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/paths.el	Tue Jan 26 12:56:01 1999 +0000
+++ b/lisp/paths.el	Tue Jan 26 18:52:46 1999 +0000
@@ -51,7 +51,9 @@
 		      (not (string= configure-info-directory usrdir))
 		      (list usrdir)))
 	 (configdir (file-name-as-directory configure-info-directory)))
-    (setq start (nconc start sysdir (list configdir)))
+    ;; configdir comes last so that we can identify it as such, but we
+    ;; also we override sysdir, hence the two occurrences.
+    (setq start (nconc start (list configdir) 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.