diff options
| -rw-r--r-- | lisp/hexl.el | 2 |
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. | |||
| 223 | "Edit file FILENAME in hexl-mode. | 223 | "Edit file FILENAME in hexl-mode. |
| 224 | Switch to a buffer visiting file FILENAME, creating one in none exists." | 224 | Switch to a buffer visiting file FILENAME, creating one in none exists." |
| 225 | (interactive "fFilename: ") | 225 | (interactive "fFilename: ") |
| 226 | (if (eq system-type 'ms-dos) | 226 | (if (or (eq system-type 'ms-dos) (eq system-type 'windows-nt)) |
| 227 | (find-file-binary filename) | 227 | (find-file-binary filename) |
| 228 | (find-file filename)) | 228 | (find-file filename)) |
| 229 | (if (not (eq major-mode 'hexl-mode)) | 229 | (if (not (eq major-mode 'hexl-mode)) |