aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/gnus/ChangeLog6
-rw-r--r--lisp/gnus/gnus-msg.el2
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 446cc4f272e..70eb599c015 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,9 @@
12012-01-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * gnus-msg.el (gnus-summary-reply): Do not give a `switch-to-buffer'
4 argument to `message-reply'. This broke `special-display-*' frame
5 pop-uping (bug#10238).
6
12012-01-05 Lars Magne Ingebrigtsen <larsi@gnus.org> 72012-01-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 8
3 * starttls.el (starttls-available-p): Return nil on Windows/MS-DOS 9 * starttls.el (starttls-available-p): Return nil on Windows/MS-DOS
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."
1129 (insert headers)) 1129 (insert headers))
1130 (goto-char (point-max))) 1130 (goto-char (point-max)))
1131 (mml-quote-region (point) (point-max)) 1131 (mml-quote-region (point) (point-max))
1132 (message-reply nil wide 'switch-to-buffer) 1132 (message-reply nil wide)
1133 (when yank 1133 (when yank
1134 (gnus-inews-yank-articles yank)) 1134 (gnus-inews-yank-articles yank))
1135 (gnus-summary-handle-replysign))))) 1135 (gnus-summary-handle-replysign)))))