Function: mail-split-line

mail-split-line is an interactive and byte-compiled function defined in sendmail.el.gz.

Signature

(mail-split-line)

Documentation

Split current line, moving portion beyond point vertically down.

If the current line has mail-yank-prefix, insert it on the new line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/sendmail.el.gz
(defun mail-split-line ()
  "Split current line, moving portion beyond point vertically down.
If the current line has `mail-yank-prefix', insert it on the new line."
  (interactive "*")
  (split-line mail-yank-prefix))