# HG changeset patch # User Dave Love # Date 917042832 0 # Node ID 461616523a163a2140fe3c2f1010c26396487588 # Parent 123fd862314c8013b4fb16e20cb3013c56395ceb (Info-default-directory-list): Add sysdir last. diff -r 123fd862314c -r 461616523a16 lisp/paths.el --- a/lisp/paths.el Fri Jan 22 21:58:42 1999 +0000 +++ b/lisp/paths.el Fri Jan 22 22:07:12 1999 +0000 @@ -43,12 +43,15 @@ "/usr/local/info/")) ;; Typically on a GNU system, installed info files are found ;; in /usr/info, but the default prefix is /usr/local. + ;; (Standalone info has a long list of alternative + ;; directories to search; perhaps we should try to be more + ;; consistent.) (usrdir "/usr/info") (sysdir (and (file-directory-p usrdir) (not (string= configure-info-directory usrdir)) (list usrdir))) (configdir (file-name-as-directory configure-info-directory))) - (setq start (nconc sysdir start (list configdir))) + (setq start (nconc start (list configdir) sysdir)) start) "Default list of directories to search for Info documentation files. They are searched in the order they are given in the list.