summaryrefslogtreecommitdiff
path: root/lisp/image-mode.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2007-10-30 17:09:41 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2007-10-30 17:09:41 +0000
commit1a59edfc37434dd4420bd481ced2648678970187 (patch)
tree7684b02cd46cfcb67a688699e51401a9aa5c663e /lisp/image-mode.el
parentbec9b2f50688ad46deec2b76332cc7289be85940 (diff)
downloademacs-1a59edfc37434dd4420bd481ced2648678970187.tar.gz
emacs-1a59edfc37434dd4420bd481ced2648678970187.tar.bz2
emacs-1a59edfc37434dd4420bd481ced2648678970187.zip
(image-forward-hscroll, image-next-line, image-eol)
(image-eob, image-mode, image-minor-mode, image-toggle-display-text) (image-toggle-display): Take overlays into account and don't assume point-min==1.
Diffstat (limited to 'lisp/image-mode.el')
-rw-r--r--lisp/image-mode.el20
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/image-mode.el b/lisp/image-mode.el
index 3cf57ca7c4d..283f6ae3ff1 100644
--- a/lisp/image-mode.el
+++ b/lisp/image-mode.el
@@ -59,7 +59,7 @@ Stop if the right edge of the image is reached."
(set-window-hscroll (selected-window)
(max 0 (+ (window-hscroll) n))))
(t
- (let* ((image (get-text-property 1 'display))
+ (let* ((image (get-char-property (point-min) 'display))
(edges (window-inside-edges))
(win-width (- (nth 2 edges) (nth 0 edges)))
(img-width (ceiling (car (image-size image)))))
@@ -82,7 +82,7 @@ Stop if the bottom edge of the image is reached."
(set-window-vscroll (selected-window)
(max 0 (+ (window-vscroll) n))))
(t
- (let* ((image (get-text-property 1 'display))
+ (let* ((image (get-char-property (point-min) 'display))
(edges (window-inside-edges))
(win-height (- (nth 3 edges) (nth 1 edges)))
(img-height (ceiling (cdr (image-size image)))))
@@ -156,7 +156,7 @@ stopping if the top or bottom edge of the image is reached."
(and arg
(/= (setq arg (prefix-numeric-value arg)) 1)
(image-next-line (- arg 1)))
- (let* ((image (get-text-property 1 'display))
+ (let* ((image (get-char-property (point-min) 'display))
(edges (window-inside-edges))
(win-width (- (nth 2 edges) (nth 0 edges)))
(img-width (ceiling (car (image-size image)))))
@@ -172,7 +172,7 @@ stopping if the top or bottom edge of the image is reached."
(defun image-eob ()
"Scroll to the bottom-right corner of the image in the current window."
(interactive)
- (let* ((image (get-text-property 1 'display))
+ (let* ((image (get-char-property (point-min) 'display))
(edges (window-inside-edges))
(win-width (- (nth 2 edges) (nth 0 edges)))
(img-width (ceiling (car (image-size image))))
@@ -221,7 +221,7 @@ to toggle between display as an image and display as text."
(setq major-mode 'image-mode)
(add-hook 'change-major-mode-hook 'image-toggle-display-text nil t)
(if (and (display-images-p)
- (not (get-text-property (point-min) 'display)))
+ (not (get-char-property (point-min) 'display)))
(image-toggle-display)
;; Set next vars when image is already displayed but local
;; variables were cleared by kill-all-local-variables
@@ -232,7 +232,7 @@ to toggle between display as an image and display as text."
(message "%s" (concat
(substitute-command-keys
"Type \\[image-toggle-display] to view as ")
- (if (get-text-property (point-min) 'display)
+ (if (get-char-property (point-min) 'display)
"text" "an image") "."))))
;;;###autoload
@@ -245,13 +245,13 @@ See the command `image-mode' for more information on this mode."
:version "22.1"
(if (not image-minor-mode)
(image-toggle-display-text)
- (if (get-text-property (point-min) 'display)
+ (if (get-char-property (point-min) 'display)
(setq cursor-type nil truncate-lines t)
(setq image-type "text"))
(add-hook 'change-major-mode-hook (lambda () (image-minor-mode -1)) nil t)
(message "%s" (concat (substitute-command-keys
"Type \\[image-toggle-display] to view the image as ")
- (if (get-text-property (point-min) 'display)
+ (if (get-char-property (point-min) 'display)
"text" "an image") "."))))
;;;###autoload
@@ -281,7 +281,7 @@ information on these modes."
(defun image-toggle-display-text ()
"Showing the text of the image file."
- (if (get-text-property (point-min) 'display)
+ (if (get-char-property (point-min) 'display)
(image-toggle-display)))
(defvar archive-superior-buffer)
@@ -292,7 +292,7 @@ information on these modes."
This command toggles between showing the text of the image file
and showing the image as an image."
(interactive)
- (if (get-text-property (point-min) 'display)
+ (if (get-char-property (point-min) 'display)
(let ((inhibit-read-only t)
(buffer-undo-list t)
(modified (buffer-modified-p)))