Function: picture-move-up

picture-move-up is an interactive and byte-compiled function defined in picture.el.gz.

Signature

(picture-move-up ARG)

Documentation

Move vertically up, making whitespace if necessary.

With prefix argument ARG, move that many lines.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/picture.el.gz
(defun picture-move-up (arg)
  "Move vertically up, making whitespace if necessary.
With prefix argument ARG, move that many lines."
  (interactive "^p")
  (picture-update-desired-column nil)
  (picture-move-down (- arg)))