diff options
| author | Richard M. Stallman | 1994-11-01 05:51:58 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-11-01 05:51:58 +0000 |
| commit | 23fa904007f1b08f917ff9629366fc4c8b4bbf6b (patch) | |
| tree | ab354dd43405322f5d94bc557372d1a412d9284d | |
| parent | 59fc41e5478ebe7fbefdedc6cb14b9b252448527 (diff) | |
| download | emacs-23fa904007f1b08f917ff9629366fc4c8b4bbf6b.tar.gz emacs-23fa904007f1b08f917ff9629366fc4c8b4bbf6b.zip | |
(hexl-find-file): Treat windows-nt like ms-dos.
| -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)) |