2002-01-12 Eli Zaretskii <eliz@is.elta.co.il>
+ * files.el (find-file-noselect): Don't consider a buffer as
+ visiting a file literally if it is in hexl-mode.
+
* faces.el (minibuffer-prompt): A better face definition for MS-DOS.
2002-01-11 Richard M. Stallman <rms@gnu.org>
(setq buffer-read-only read-only)))
(setq buffer-file-read-only read-only))
- (when (not (eq (not (null rawfile))
- (not (null find-file-literally))))
+ (when (and (not (eq (not (null rawfile))
+ (not (null find-file-literally))))
+ ;; It is confusing to ask whether to visit
+ ;; non-literally if they have the file in
+ ;; hexl-mode.
+ (not (eq major-mode 'hexl-mode)))
(if (buffer-modified-p)
(if (y-or-n-p (if rawfile
"Save file and revisit literally? "