Jeff Miller <jmiller(a)smart.net> writes:
It used to be when I typed in an alias in a vm-mail buffer, then hit
the
down arrow key, the alias would expand.
Now it doesn't expand the alias, though using tab seems to work
i see that mail-abbrevs.el was one of the files changes in the
latest
package updates.
was this a deliberate or accidental changes?
Deliberate. mail-abbrevs no longer installs itself on load (as per
Lisp package coding standards we've been starting to enforce). To
initialize the keymaps, you need to call `mail-abbrev-init-keys':
(mail-abbrev-init-keys mail-mode-map)
(mail-abbrev-init-keys message-mode-map)