]> git.eshelyaron.com Git - emacs.git/commitdiff
(hexl-find-file): Ignore user's value of default-major-mode.
authorRichard M. Stallman <rms@gnu.org>
Thu, 3 Apr 2003 23:01:12 +0000 (23:01 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 3 Apr 2003 23:01:12 +0000 (23:01 +0000)
lisp/hexl.el

index 9330de1a600d91afdc480396e84217bf3d5de370..f34c0f5dc498ef0ab70a2b5618b4615703e9c2a1 100644 (file)
@@ -296,7 +296,9 @@ Switch to a buffer visiting file FILENAME, creating one in none exists."
    (list
     (let ((completion-ignored-extensions nil))
       (read-file-name "Filename: " nil nil 'ret-must-match))))
-  (find-file-literally filename)
+  ;; Ignore the user's setting of default-major-mode.
+  (let ((default-major-mode 'hexl-mode))
+    (find-file-literally filename))
   (if (not (eq major-mode 'hexl-mode))
       (hexl-mode)))