* message.el (message-pop-to-buffer): Partially revert 2011-11-30 change (Bug#10200).

This commit is contained in:
Chong Yidong 2011-12-04 09:55:49 +08:00
parent 5e605a2e52
commit 527497423d
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2011-12-04 Chong Yidong <cyd@gnu.org>
* message.el (message-pop-to-buffer): Partially revert 2011-11-30
change (Bug#10200).
2011-12-02 Katsumi Yamaoka <yamaoka@jpl.org>
* compface.el (uncompface):

View file

@ -6327,7 +6327,6 @@ between beginning of field and beginning of line."
(defun message-pop-to-buffer (name &optional switch-function)
"Pop to buffer NAME, and warn if it already exists and is modified."
(unless switch-function (setq switch-function #'pop-to-buffer))
(let ((buffer (get-buffer name)))
(if (and buffer
(buffer-name buffer))
@ -6337,7 +6336,7 @@ between beginning of field and beginning of line."
(progn
(gnus-select-frame-set-input-focus (window-frame window))
(select-window window))
(funcall switch-function buffer)
(funcall (or switch-function #'pop-to-buffer) buffer)
(set-buffer buffer))
(when (and (buffer-modified-p)
(not (prog1
@ -6345,7 +6344,7 @@ between beginning of field and beginning of line."
"Message already being composed; erase? ")
(message nil))))
(error "Message being composed")))
(funcall switch-function name)
(funcall (or switch-function #'switch-to-buffer) name)
(set-buffer name))
(erase-buffer)
(message-mode)))