# HG changeset patch # User Phillip Rulon # Date 938181526 0 # Node ID c3cb1d8414647c03993cd7da3822951d8c4ae12b # Parent f1417ed050c0793a39e33aef6a0a2b408c37ef56 (info-initialize): Don't test existence of ALTERNATIVE if we know for some other reason it should not be used. diff -r f1417ed050c0 -r c3cb1d841464 lisp/info.el --- a/lisp/info.el Fri Sep 24 13:55:29 1999 +0000 +++ b/lisp/info.el Fri Sep 24 13:58:46 1999 +0000 @@ -256,7 +256,6 @@ ;; Uninstalled, builddir == srcdir (setq alternative source)) (if (or (member alternative Info-default-directory-list) - (not (file-exists-p alternative)) ;; 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)) @@ -265,7 +264,8 @@ ;; only if we used it for exec-directory also. (not (string= exec-directory (expand-file-name "lib-src/" - installation-directory))))) + 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'