Function: picture-open-line

picture-open-line is an interactive and byte-compiled function defined in picture.el.gz.

Signature

(picture-open-line ARG)

Documentation

Insert ARG empty lines after the current line.

ARG must be positive. Interactively, ARG is the numeric argument, and defaults to 1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/picture.el.gz
(defun picture-open-line (arg)
  "Insert ARG empty lines after the current line.
ARG must be positive.
Interactively, ARG is the numeric argument, and defaults to 1."
  (interactive "p")
  (save-excursion
   (end-of-line)
   (open-line arg)))