aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorAndreas Schwab2007-08-08 11:51:48 +0000
committerAndreas Schwab2007-08-08 11:51:48 +0000
commitece1116442ad1858cf122f0725a4650ef3d5e88e (patch)
treeea89e96368a232e5bdcb12c816b88efba781f560 /lisp
parent42be947978e697c7f7fb124261a52c624c76d583 (diff)
downloademacs-ece1116442ad1858cf122f0725a4650ef3d5e88e.tar.gz
emacs-ece1116442ad1858cf122f0725a4650ef3d5e88e.zip
(sendmail-pre-abbrev-expand-hook): Check for
self-insert-command, not self-insert.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/mail/mailabbrev.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 29e9027e54e..f817d235f57 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12007-08-08 Andreas Schwab <schwab@suse.de>
2
3 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook): Check for
4 self-insert-command, not self-insert.
5
12007-08-08 Glenn Morris <rgm@gnu.org> 62007-08-08 Glenn Morris <rgm@gnu.org>
2 7
3 * emacs-lisp/checkdoc.el (checkdoc-ispell-lisp-words): Remove `iff'. 8 * emacs-lisp/checkdoc.el (checkdoc-ispell-lisp-words): Remove `iff'.
diff --git a/lisp/mail/mailabbrev.el b/lisp/mail/mailabbrev.el
index b3e2c051e7d..8862e6ca2d2 100644
--- a/lisp/mail/mailabbrev.el
+++ b/lisp/mail/mailabbrev.el
@@ -495,7 +495,7 @@ of a mail alias. The value is set up, buffer-local, when first needed.")
495 495
496 (or (and (integerp last-command-char) 496 (or (and (integerp last-command-char)
497 ;; Some commands such as M-> may want to expand first. 497 ;; Some commands such as M-> may want to expand first.
498 (equal this-command 'self-insert) 498 (equal this-command 'self-insert-command)
499 (or (eq (char-syntax last-command-char) ?_) 499 (or (eq (char-syntax last-command-char) ?_)
500 ;; Don't expand on @. 500 ;; Don't expand on @.
501 (memq last-command-char '(?@ ?. ?% ?! ?_ ?-)))) 501 (memq last-command-char '(?@ ?. ?% ?! ?_ ?-))))