Function: image-backward-hscroll

image-backward-hscroll is an interactive and byte-compiled function defined in image-mode.el.gz.

Signature

(image-backward-hscroll &optional N)

Documentation

Scroll image in current window to the right by N character widths.

Stop if the left edge of the image is reached.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image-mode.el.gz
(defun image-backward-hscroll (&optional n)
  "Scroll image in current window to the right by N character widths.
Stop if the left edge of the image is reached."
  (interactive "p" image-mode)
  (image-forward-hscroll (- n)))