Function: mail-abbrev-end-of-buffer

mail-abbrev-end-of-buffer is an interactive and byte-compiled function defined in mailabbrev.el.gz.

Signature

(mail-abbrev-end-of-buffer &optional ARG)

Documentation

Expand a mail abbrev before point, then move to the end of the buffer.

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 other respects, this behaves like end-of-buffer, which see.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/mailabbrev.el.gz
(defun mail-abbrev-end-of-buffer (&optional arg)
  "Expand a mail abbrev before point, then move to the end of the buffer.
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 other respects, this behaves like `end-of-buffer', which see."
  (interactive "P")
  (if (looking-at "[ \t]*\n") (expand-abbrev))
  (setq this-command 'end-of-buffer)
  (with-no-warnings (end-of-buffer arg)))