1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(hexl-find-file): Treat windows-nt like ms-dos.

This commit is contained in:
Richard M. Stallman 1994-11-01 05:51:58 +00:00
parent 59fc41e547
commit 23fa904007

View 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))