Function: picture-movement-nw
picture-movement-nw is an interactive and byte-compiled function
defined in picture.el.gz.
Signature
(picture-movement-nw &optional ARG)
Documentation
Move up and left after self-inserting character in Picture mode.
With prefix argument ARG, move up and two-column left.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/picture.el.gz
(defun picture-movement-nw (&optional arg)
"Move up and left after self-inserting character in Picture mode.
With prefix argument ARG, move up and two-column left."
(interactive "P")
(picture-set-motion -1 (if arg -2 -1)))