]> git.eshelyaron.com Git - emacs.git/commitdiff
(hexl-find-file): Treat windows-nt like ms-dos.
authorRichard M. Stallman <rms@gnu.org>
Tue, 1 Nov 1994 05:51:58 +0000 (05:51 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 1 Nov 1994 05:51:58 +0000 (05:51 +0000)
lisp/hexl.el

index 2043196a637c34edd161e129c200288124cd5b01..669724506b0ed82559a094accee0c41b2e4f77b4 100644 (file)
@@ -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))