diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-05-31 04:17:17 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-05-31 04:17:17 +0000 |
commit | c4d570b2eee0bd06cf15e316ca38ad7c1cd891ae (patch) | |
tree | f550c08d54e7a94bb334a3d54a39af08c9f39abf /lisp/mail/reporter.el | |
parent | 7b9f06576be1283e3a0a31c23ce916d788efb152 (diff) | |
download | emacs-c4d570b2eee0bd06cf15e316ca38ad7c1cd891ae.tar.gz |
(reporter-submit-bug-report):
Use display-buffer to re-show the original buffer.
Diffstat (limited to 'lisp/mail/reporter.el')
-rw-r--r-- | lisp/mail/reporter.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mail/reporter.el b/lisp/mail/reporter.el index 1b7d40a14c7..53b9b1b7b6f 100644 --- a/lisp/mail/reporter.el +++ b/lisp/mail/reporter.el @@ -352,8 +352,8 @@ composed.") mailer))) (current-buffer)))) (require 'sendmail) - (pop-to-buffer reporter-eval-buffer) (pop-to-buffer mailbuf) + (display-buffer reporter-eval-buffer) (goto-char (point-min)) ;; different mailers use different separators, some may not even ;; use m-h-s, but sendmail.el stuff must have m-h-s bound. @@ -400,7 +400,7 @@ composed.") (killkey (if killkey-whereis (key-description killkey-whereis) "M-x kill-buffer"))) - (message "Please type in your report. Hit %s to send, %s to abort." + (message "Please type in your report. Hit %s to send, %s to abort." sendkey killkey)) )) |