Function: mail-abbrev-complete-alias
mail-abbrev-complete-alias is an interactive and byte-compiled
function defined in mailabbrev.el.gz.
Signature
(mail-abbrev-complete-alias)
Documentation
Perform completion on alias preceding point.
Probably introduced at or before Emacs version 21.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/mailabbrev.el.gz
(defun mail-abbrev-complete-alias ()
"Perform completion on alias preceding point."
(interactive)
(mail-abbrev-make-syntax-table)
(let ((end (point))
(beg (with-syntax-table mail-abbrev-syntax-table
(save-excursion
(backward-word-strictly 1)
(point)))))
(completion-in-region beg end mail-abbrevs)))