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