Function: picture-move-down
picture-move-down is an interactive and byte-compiled function defined
in picture.el.gz.
Signature
(picture-move-down ARG)
Documentation
Move vertically down, making whitespace if necessary.
With argument, move that many lines.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/picture.el.gz
(defun picture-move-down (arg)
"Move vertically down, making whitespace if necessary.
With argument, move that many lines."
(interactive "^p")
(let (deactivate-mark)
(picture-update-desired-column nil)
(picture-newline arg)
(let ((current-column (move-to-column picture-desired-column t)))
(if (> current-column picture-desired-column)
(forward-char -1)))))