# HG changeset patch # User Richard M. Stallman # Date 783669298 0 # Node ID 7224fba93c27c40d53aa4c770324e2b4d6f24541 # Parent ae6fed248fb9c6a2fd9f4019acc212344108a113 (Info-directory-list): Treat windows-nt like ms-dos. diff -r ae6fed248fb9 -r 7224fba93c27 lisp/info.el --- a/lisp/info.el Tue Nov 01 05:52:42 1994 +0000 +++ b/lisp/info.el Tue Nov 01 05:54:58 1994 +0000 @@ -55,7 +55,9 @@ (defvar Info-directory-list (let ((path (getenv "INFOPATH")) - (sep (if (eq system-type 'ms-dos) ";" ":")) + (sep (if (or (eq system-type 'ms-dos) + (eq system-type 'windows-nt)) + ";" ":")) (sibling (expand-file-name "../info/" (invocation-directory)))) (if path (let ((list nil) @@ -68,9 +70,9 @@ (nreverse list)) (if (or (member sibling Info-default-directory-list) (not (file-exists-p sibling)) - ;; On MS-DOS, we use movable executables always, + ;; On DOS/NT, we use movable executables always, ;; and we must always find the Info dir at run time. - (if (eq system-type 'ms-dos) + (if (or (eq system-type 'ms-dos) (eq system-type 'windows-nt)) nil ;; Use invocation-directory for Info only if we used it for ;; exec-directory also.