diff options
| author | Glenn Morris | 2012-12-04 13:08:01 -0500 |
|---|---|---|
| committer | Glenn Morris | 2012-12-04 13:08:01 -0500 |
| commit | 52d129cd62f502a855031c7cf5b6959a4a6e33da (patch) | |
| tree | f3035ffe8f3f2a1bcebfe66a7f055fdd03a2286e | |
| parent | 68bf4e0964f28642ec035e5ebd0b4c567bb9f739 (diff) | |
| download | emacs-52d129cd62f502a855031c7cf5b6959a4a6e33da.tar.gz emacs-52d129cd62f502a855031c7cf5b6959a4a6e33da.zip | |
rmail-new-summary fix for bug#13066
* lisp/mail/rmailsum.el (rmail-new-summary):
Tweak for rmail-maybe-display-summary changing buffer.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/mail/rmailsum.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6154c25e6db..7fc65d2bb3e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-12-04 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * mail/rmailsum.el (rmail-new-summary): Tweak for | ||
| 4 | rmail-maybe-display-summary changing buffer. (Bug#13066) | ||
| 5 | |||
| 1 | 2012-12-03 Juri Linkov <juri@jurta.org> | 6 | 2012-12-03 Juri Linkov <juri@jurta.org> |
| 2 | 7 | ||
| 3 | * info.el (Info-fontify-node): Don't hide the last newline. | 8 | * info.el (Info-fontify-node): Don't hide the last newline. |
diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el index 612ccbdfd9e..cacc6e19416 100644 --- a/lisp/mail/rmailsum.el +++ b/lisp/mail/rmailsum.el | |||
| @@ -428,7 +428,7 @@ nil for FUNCTION means all messages." | |||
| 428 | ;; This is how rmail makes the summary buffer reappear. | 428 | ;; This is how rmail makes the summary buffer reappear. |
| 429 | ;; We do this here to make the window the proper size. | 429 | ;; We do this here to make the window the proper size. |
| 430 | (rmail-select-summary nil) | 430 | (rmail-select-summary nil) |
| 431 | (set-buffer rmail-summary-buffer)) | 431 | (set-buffer sumbuf)) |
| 432 | (rmail-summary-goto-msg mesg t t) | 432 | (rmail-summary-goto-msg mesg t t) |
| 433 | (rmail-summary-construct-io-menu) | 433 | (rmail-summary-construct-io-menu) |
| 434 | (message "Computing summary lines...done"))) | 434 | (message "Computing summary lines...done"))) |