Function: image-mouse-decrease-size
image-mouse-decrease-size is an interactive and byte-compiled function
defined in image.el.gz.
Signature
(image-mouse-decrease-size &optional EVENT)
Documentation
Decrease the image size using the mouse.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/image.el.gz
(defun image-mouse-decrease-size (&optional event)
"Decrease the image size using the mouse."
(interactive "e")
(when (listp event)
(save-window-excursion
(posn-set-point (event-start event))
(image-decrease-size nil (point-marker)))))