Function: artist-backward-char

artist-backward-char is an interactive and byte-compiled function defined in artist.el.gz.

Signature

(artist-backward-char &optional N)

Documentation

Move cursor backward N chars (default is 1), updating current shape.

If N is negative, move forward.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-backward-char (&optional n)
  "Move cursor backward N chars (default is 1), updating current shape.
If N is negative, move forward."
  (interactive "p")
  (if (> n 0)
      (artist-forward-char (- n))
    (artist-forward-char n)))