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).

This commit is contained in:
Lars Magne Ingebrigtsen 2012-01-06 05:48:48 +00:00 committed by Katsumi Yamaoka
parent 536aea70db
commit 98cc61deb6
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2012-01-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
* 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).
2012-01-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
* starttls.el (starttls-available-p): Return nil on Windows/MS-DOS

View file

@ -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)))))