From: Richard M. Stallman Date: Tue, 1 Nov 1994 05:51:58 +0000 (+0000) Subject: (hexl-find-file): Treat windows-nt like ms-dos. X-Git-Tag: emacs-19.34~6075 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=23fa904007f1b08f917ff9629366fc4c8b4bbf6b;p=emacs.git (hexl-find-file): Treat windows-nt like ms-dos. --- diff --git a/lisp/hexl.el b/lisp/hexl.el index 2043196a637..669724506b0 100644 --- a/lisp/hexl.el +++ b/lisp/hexl.el @@ -223,7 +223,7 @@ You can use \\[hexl-find-file] to visit a file in hexl-mode. "Edit file FILENAME in hexl-mode. Switch to a buffer visiting file FILENAME, creating one in none exists." (interactive "fFilename: ") - (if (eq system-type 'ms-dos) + (if (or (eq system-type 'ms-dos) (eq system-type 'windows-nt)) (find-file-binary filename) (find-file filename)) (if (not (eq major-mode 'hexl-mode))