From: Miles Bader Date: Tue, 4 Jul 2000 04:50:20 +0000 (+0000) Subject: (info-initialize): Use prune-directory-list to remove non-existant X-Git-Tag: emacs-pretest-21.0.90~3000 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=78e7e8a0454255e97764027389d3faaa476faa99;p=emacs.git (info-initialize): Use prune-directory-list to remove non-existant directories from Info-directory-list. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2742992a4fc..3df176e418a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,24 @@ +2000-06-29 Miles Bader + + * paths.el (prune-directory-list): New function. + (Info-default-directory-list): Rewritten to more methodically + enumerate a big list of possible info directories (based on the + list used by the standalone info reader). + * info.el (info-initialize): Use prune-directory-list to remove + non-existant directories from Info-directory-list. + +2000-06-27 Miles Bader + + * paths.el (Info-default-directory-list): Try a list of possible + info-directories instead of a single one. Add the possible + info directory "/usr/share/info". + + * woman.el (woman-man.conf-path): Explicitly include the debian + man-db config file "/etc/manpath.config". + (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as + are present in `manpath.config'. + (woman-manpath): Include "/usr/share/man". + 2000-07-03 Gerd Moellmann * frame.el (blink-cursor-mode): Don't hide cursor initially. diff --git a/lisp/info.el b/lisp/info.el index 78c2193f005..2f5d6744496 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -259,30 +259,31 @@ Do the right thing if the file has been compressed or zipped." (expand-file-name "info/" installation-directory))) alternative) (setq Info-directory-list - (if path - (split-string path (regexp-quote path-separator)) - (if (and sibling (file-exists-p sibling)) - ;; Uninstalled, Emacs builddir != srcdir. - (setq alternative sibling) - ;; Uninstalled, builddir == srcdir - (setq alternative source)) - (if (or (member alternative Info-default-directory-list) - ;; On DOS/NT, we use movable executables always, - ;; and we must always find the Info dir at run time. - (if (memq system-type '(ms-dos windows-nt)) - nil - ;; Use invocation-directory for Info - ;; only if we used it for exec-directory also. - (not (string= exec-directory - (expand-file-name "lib-src/" - installation-directory)))) - (not (file-exists-p alternative))) - Info-default-directory-list - ;; `alternative' contains the Info files that came with this - ;; version, so we should look there first. `Info-insert-dir' - ;; currently expects to find `alternative' first on the list. - (cons alternative - (reverse (cdr (reverse Info-default-directory-list)))))))))) + (prune-directory-list + (if path + (split-string path (regexp-quote path-separator)) + (if (and sibling (file-exists-p sibling)) + ;; Uninstalled, Emacs builddir != srcdir. + (setq alternative sibling) + ;; Uninstalled, builddir == srcdir + (setq alternative source)) + (if (or (member alternative Info-default-directory-list) + ;; On DOS/NT, we use movable executables always, + ;; and we must always find the Info dir at run time. + (if (memq system-type '(ms-dos windows-nt)) + nil + ;; Use invocation-directory for Info + ;; only if we used it for exec-directory also. + (not (string= exec-directory + (expand-file-name "lib-src/" + installation-directory)))) + (not (file-exists-p alternative))) + Info-default-directory-list + ;; `alternative' contains the Info files that came with this + ;; version, so we should look there first. `Info-insert-dir' + ;; currently expects to find `alternative' first on the list. + (cons alternative + (reverse (cdr (reverse Info-default-directory-list))))))))))) ;;;###autoload (defun info-other-window (&optional file)