diff options
| author | Stefan Monnier | 2011-02-10 14:35:35 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2011-02-10 14:35:35 -0500 |
| commit | 665addc97b7d74ac2456ec14448bc1c3f3d21471 (patch) | |
| tree | 5460ca97edeb9824d83bb22b5d172a48a1d196ee | |
| parent | 49ffc0786e71f1659f87a9ea9cc321d83b1a1d68 (diff) | |
| download | emacs-665addc97b7d74ac2456ec14448bc1c3f3d21471.tar.gz emacs-665addc97b7d74ac2456ec14448bc1c3f3d21471.zip | |
* lisp/gnus/message.el (message-bury): Don't pop up a new window when selected
window is dedicated.
| -rw-r--r-- | lisp/gnus/ChangeLog | 13 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 10 |
2 files changed, 14 insertions, 9 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index ba4d270951b..7f362030586 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-02-10 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * message.el (message-bury): Don't pop up a new window when selected | ||
| 4 | window is dedicated. | ||
| 5 | |||
| 1 | 2011-02-09 Lars Ingebrigtsen <larsi@gnus.org> | 6 | 2011-02-09 Lars Ingebrigtsen <larsi@gnus.org> |
| 2 | 7 | ||
| 3 | * nntp.el (nntp-retrieve-group-data-early-disabled): Disable the async | 8 | * nntp.el (nntp-retrieve-group-data-early-disabled): Disable the async |
| @@ -22,7 +27,7 @@ | |||
| 22 | (nnimap-update-info): Clean up slightly. | 27 | (nnimap-update-info): Clean up slightly. |
| 23 | (nnimap-quirk): Add quirk for Gmail IMAP which bugs out on NUL | 28 | (nnimap-quirk): Add quirk for Gmail IMAP which bugs out on NUL |
| 24 | characters. | 29 | characters. |
| 25 | (nnimap-process-quirk): Renamed function to avoid collision. | 30 | (nnimap-process-quirk): Rename function to avoid collision. |
| 26 | (nnimap-update-info): Fix macrology bug-out. | 31 | (nnimap-update-info): Fix macrology bug-out. |
| 27 | (nnimap-update-info): Simplify split history test. | 32 | (nnimap-update-info): Simplify split history test. |
| 28 | 33 | ||
| @@ -43,7 +48,7 @@ | |||
| 43 | * message.el (message-setup-1): Remove the read-only stuff, since it | 48 | * message.el (message-setup-1): Remove the read-only stuff, since it |
| 44 | doesn't work under XEmacs, for some reason. | 49 | doesn't work under XEmacs, for some reason. |
| 45 | 50 | ||
| 46 | * gnus-sum.el (gnus-user-date): Renamed back from | 51 | * gnus-sum.el (gnus-user-date): Rename back from |
| 47 | gnus-summary-user-date since user code refers to it. | 52 | gnus-summary-user-date since user code refers to it. |
| 48 | 53 | ||
| 49 | * shr.el (shr-render-td): Store the actual background colour used. | 54 | * shr.el (shr-render-td): Store the actual background colour used. |
| @@ -228,8 +233,8 @@ | |||
| 228 | 233 | ||
| 229 | 2011-01-28 Daiki Ueno <ueno@unixuser.org> | 234 | 2011-01-28 Daiki Ueno <ueno@unixuser.org> |
| 230 | 235 | ||
| 231 | * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Give | 236 | * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): |
| 232 | mml2015-signers higher precedence over mml2015-sign-with-sender. | 237 | Give mml2015-signers higher precedence over mml2015-sign-with-sender. |
| 233 | 238 | ||
| 234 | 2011-01-27 Lars Ingebrigtsen <larsi@gnus.org> | 239 | 2011-01-27 Lars Ingebrigtsen <larsi@gnus.org> |
| 235 | 240 | ||
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index e30f7f2c973..42b61950986 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -4011,11 +4011,11 @@ Instead, just auto-save the buffer and then bury it." | |||
| 4011 | 4011 | ||
| 4012 | (defun message-bury (buffer) | 4012 | (defun message-bury (buffer) |
| 4013 | "Bury this mail BUFFER." | 4013 | "Bury this mail BUFFER." |
| 4014 | (let ((newbuf (other-buffer buffer))) | 4014 | (if message-return-action |
| 4015 | (bury-buffer buffer) | 4015 | (progn |
| 4016 | (if message-return-action | 4016 | (bury-buffer buffer) |
| 4017 | (apply (car message-return-action) (cdr message-return-action)) | 4017 | (apply (car message-return-action) (cdr message-return-action))) |
| 4018 | (switch-to-buffer newbuf)))) | 4018 | (with-current-buffer buffer (bury-buffer)))) |
| 4019 | 4019 | ||
| 4020 | (defun message-send (&optional arg) | 4020 | (defun message-send (&optional arg) |
| 4021 | "Send the message in the current buffer. | 4021 | "Send the message in the current buffer. |