Function: artist-previous-line
artist-previous-line is an interactive and byte-compiled function
defined in artist.el.gz.
Signature
(artist-previous-line &optional N)
Documentation
Move cursor up N lines (default is 1), updating current shape.
If N is negative, move cursor down.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
;;
;; Key navigation
;;
(defun artist-previous-line (&optional n)
"Move cursor up N lines (default is 1), updating current shape.
If N is negative, move cursor down."
(interactive "p")
(let ((col (artist-current-column)))
(forward-line (- n))
(move-to-column col t))
(when artist-key-is-drawing
(artist-key-do-continuously-common)))