From 4439cce1e76d70b56e963e0f29bdf790c59ca1a0 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Fri, 22 Jan 1999 22:07:12 +0000 Subject: [PATCH] (Info-default-directory-list): Add sysdir last. --- lisp/paths.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/paths.el b/lisp/paths.el index 76c56765d81..08911c8be7d 100644 --- a/lisp/paths.el +++ b/lisp/paths.el @@ -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. -- 2.39.2