Function: mail-abbrev-next-line
mail-abbrev-next-line is an interactive and byte-compiled function
defined in mailabbrev.el.gz.
Signature
(mail-abbrev-next-line &optional ARG)
Documentation
Expand a mail abbrev before point, then move vertically down ARG lines.
This only expands an abbrev (if one is present) if called with point at the end of a line, or on whitespace before the end of a line.
In terms of line motion, this behaves like next-line, which see.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/mailabbrev.el.gz
(defun mail-abbrev-next-line (&optional arg)
"Expand a mail abbrev before point, then move vertically down ARG lines.
This only expands an abbrev (if one is present) if called with
point at the end of a line, or on whitespace before the end of a line.
In terms of line motion, this behaves like `next-line', which see."
(interactive "p")
(if (looking-at "[ \t]*\n") (expand-abbrev))
(setq this-command 'next-line)
(with-no-warnings (next-line arg)))