From: Dave Love Date: Tue, 26 Jan 1999 18:52:46 +0000 (+0000) Subject: (Info-default-directory-list): Use configdir twice. X-Git-Tag: emacs-20.4~755 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=99728db9d28a7cb342233ce4ed788a420cb383fb;p=emacs.git (Info-default-directory-list): Use configdir twice. --- 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 @@ (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.