]> git.eshelyaron.com Git - emacs.git/commitdiff
(insert-image-file): When visiting an image, set `truncate-lines' to t
authorMiles Bader <miles@gnu.org>
Mon, 5 Feb 2001 04:10:38 +0000 (04:10 +0000)
committerMiles Bader <miles@gnu.org>
Mon, 5 Feb 2001 04:10:38 +0000 (04:10 +0000)
so that any fringe arrow looks correct.

lisp/ChangeLog
lisp/image-file.el

index cc38fee5c995194c0592eca1b8b5a114ef96be8a..fb98d98b7e6cba8a62510083b1395a3724c7aa7c 100644 (file)
@@ -1,3 +1,8 @@
+2001-02-05  Miles Bader  <miles@gnu.org>
+
+       * image-file.el (insert-image-file): When visiting an image, also
+       set `truncate-lines' to t so that any fringe arrow looks correct.
+
 2001-02-05  Kenichi Handa  <handa@etl.go.jp>
 
        * isearch.el (isearch-forward): Add description about input method
index afee88d1346326eec5fed7a1da90944da2eddff8..052cea8232b65dc112e8ec0dde820f822e53d1b8 100644 (file)
@@ -1,6 +1,6 @@
 ;;; image-file.el --- Support for visiting image files
 ;;
-;; Copyright (C) 2000 Free Software Foundation, Inc.
+;; Copyright (C) 2000, 2001 Free Software Foundation, Inc.
 ;;
 ;; Author: Miles Bader <miles@gnu.org>
 ;; Keywords: multimedia
@@ -129,7 +129,10 @@ the command `insert-file-contents'."
        (when visitingp
          ;; Inhibit the cursor when the buffer contains only an image,
          ;; because cursors look very strange on top of images.
-         (setq cursor-type nil))))
+         (setq cursor-type nil)
+         ;; This just makes the arrow displayed in the right fringe
+         ;; area look correct when the image is wider than the window.
+         (setq truncate-lines t))))
     rval))
 
 (defun image-file-handler (operation &rest args)