diff options
author | Basil L. Contovounesios <contovob@tcd.ie> | 2020-10-29 23:33:29 +0000 |
---|---|---|
committer | Basil L. Contovounesios <contovob@tcd.ie> | 2020-10-29 23:33:29 +0000 |
commit | d7a2d7250d74ab91dc7fb21325b39ea801b0796b (patch) | |
tree | e4524219d4170d5bc46b0a70ea16aee8124995c9 | |
parent | 96e371b44aa7aab13c559a908b48711364264213 (diff) | |
download | emacs-d7a2d7250d74ab91dc7fb21325b39ea801b0796b.tar.gz |
Modify only local send hook in submit-emacs-patch
* lisp/mail/emacsbug.el (submit-emacs-patch): Don't modify global
message-send-hook.
-rw-r--r-- | lisp/mail/emacsbug.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index e48c25436ee..6a3c98746b9 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el @@ -520,7 +520,7 @@ Message buffer where you can explain more about the patch." (lambda () (message-goto-body) (insert "Tags: patch\nthanks\n\n")) - t) + nil t) (message-add-action (lambda () ;; Bury the help buffer (if it's shown). |