summaryrefslogtreecommitdiff
path: root/lisp/hexl.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-11-01 05:51:58 +0000
committerRichard M. Stallman <rms@gnu.org>1994-11-01 05:51:58 +0000
commit410f2b633c2760e02fc85ea93cc79dbeacf10001 (patch)
tree93947a81af8493ca3e04c91bea9dd8cc6e25ea3b /lisp/hexl.el
parentc6a77c65487f49de43d248412c914e488c04940f (diff)
downloademacs-410f2b633c2760e02fc85ea93cc79dbeacf10001.tar.gz
(hexl-find-file): Treat windows-nt like ms-dos.
Diffstat (limited to 'lisp/hexl.el')
-rw-r--r--lisp/hexl.el2
1 files changed, 1 insertions, 1 deletions
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))