Variable: mh-alias-insertion-location
mh-alias-insertion-location is a customizable variable defined in
mh-e.el.gz.
Value
sorted
Documentation
Specifies where new aliases are entered in alias files.
This option is set to "Alphabetical" by default. If you organize your alias file in other ways, then adding aliases to the "Top" or "Bottom" of your alias file might be more appropriate.
This variable was added, or its default value changed, in MH-E version
7.1.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom-mh mh-alias-insertion-location 'sorted
"Specifies where new aliases are entered in alias files.
This option is set to \"Alphabetical\" by default. If you organize
your alias file in other ways, then adding aliases to the \"Top\"
or \"Bottom\" of your alias file might be more appropriate."
:type '(choice (const :tag "Alphabetical" sorted)
(const :tag "Top" top)
(const :tag "Bottom" bottom))
:group 'mh-alias
:package-version '(MH-E . "7.1"))