aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2011-02-18 19:59:06 +0200
committerEli Zaretskii2011-02-18 19:59:06 +0200
commit4114ed61cd3edf2a0d54aff4cfc625d13abd6e0e (patch)
tree2f9a97b18e83f4fa69d3bc9d646584d7776b0dab
parentcbe81f1d96ca482c15d583cfd4a196d38af87972 (diff)
downloademacs-4114ed61cd3edf2a0d54aff4cfc625d13abd6e0e.tar.gz
emacs-4114ed61cd3edf2a0d54aff4cfc625d13abd6e0e.zip
Fix bug #8047 with require-final-newline in binary image buffers.
image-mode.el (image-toggle-display-image): Set find-file-literally non-nil in buffers visiting binary image files.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/image-mode.el5
2 files changed, 11 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f65ec67e7b8..367e685dd1d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12011-02-18 Eli Zaretskii <eliz@gnu.org>
2
3 * image-mode.el (image-toggle-display-image): Set
4 find-file-literally non-nil in buffers visiting binary image
5 files. (Bug#8047)
6
12011-02-18 Stefan Monnier <monnier@iro.umontreal.ca> 72011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
2 8
3 * files.el (cd): Make completion obey cd-path (bug#7924). 9 * files.el (cd): Make completion obey cd-path (bug#7924).
diff --git a/lisp/image-mode.el b/lisp/image-mode.el
index 190ca08722b..64dcf9076ae 100644
--- a/lisp/image-mode.el
+++ b/lisp/image-mode.el
@@ -505,6 +505,11 @@ was inserted."
505 ;; This just makes the arrow displayed in the right fringe 505 ;; This just makes the arrow displayed in the right fringe
506 ;; area look correct when the image is wider than the window. 506 ;; area look correct when the image is wider than the window.
507 (setq truncate-lines t) 507 (setq truncate-lines t)
508 ;; Disable adding a newline at the end of the image file when it
509 ;; is written with, e.g., C-x C-w.
510 (if (coding-system-equal (coding-system-base buffer-file-coding-system)
511 'no-conversion)
512 (set (make-local-variable 'find-file-literally) t))
508 ;; Allow navigation of large images 513 ;; Allow navigation of large images
509 (set (make-local-variable 'auto-hscroll-mode) nil) 514 (set (make-local-variable 'auto-hscroll-mode) nil)
510 (setq image-type type) 515 (setq image-type type)