Variable: mail-abbrevs-mode
mail-abbrevs-mode is a customizable variable defined in
mailabbrev.el.gz.
Value
nil
Documentation
Non-nil if Mail-Abbrevs mode is enabled.
See the mail-abbrevs-mode(var)/mail-abbrevs-mode(fun) command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node (emacs)Easy Customization)
or call the function mail-abbrevs-mode(var)/mail-abbrevs-mode(fun).
This variable was added, or its default value changed, in Emacs 20.3.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/mailabbrev.el.gz
;;;###autoload
(define-minor-mode mail-abbrevs-mode
"Toggle abbrev expansion of mail aliases (Mail Abbrevs mode).
Mail Abbrevs mode is a global minor mode. When enabled,
abbrev-like expansion is performed when editing certain mail
headers (those specified by `mail-abbrev-mode-regexp'), based on
the entries in your `mail-personal-alias-file'."
:global t
:version "20.3"
(if mail-abbrevs-mode (mail-abbrevs-enable) (mail-abbrevs-disable)))