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