diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2012-01-06 05:48:48 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2012-01-06 05:48:48 +0000 |
commit | 98cc61deb661bdde495656bb95d0e728c1f360ac (patch) | |
tree | 8359dbbc698e9d6ef0d69d5a019678096883aec2 /lisp/gnus/gnus-msg.el | |
parent | 536aea70db923989849e0ebf2cb77571d06bb6d5 (diff) | |
download | emacs-98cc61deb661bdde495656bb95d0e728c1f360ac.tar.gz emacs-98cc61deb661bdde495656bb95d0e728c1f360ac.tar.bz2 emacs-98cc61deb661bdde495656bb95d0e728c1f360ac.zip |
gnus-msg.el (gnus-summary-reply): Do not give a `switch-to-buffer' argument to `message-reply'. This broke `special-display-*' frame pop-uping (bug#10238).
Diffstat (limited to 'lisp/gnus/gnus-msg.el')
-rw-r--r-- | lisp/gnus/gnus-msg.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el index 0498e2df320..c825c4251bb 100644 --- a/lisp/gnus/gnus-msg.el +++ b/lisp/gnus/gnus-msg.el @@ -1129,7 +1129,7 @@ If VERY-WIDE, make a very wide reply." (insert headers)) (goto-char (point-max))) (mml-quote-region (point) (point-max)) - (message-reply nil wide 'switch-to-buffer) + (message-reply nil wide) (when yank (gnus-inews-yank-articles yank)) (gnus-summary-handle-replysign))))) |