aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-10-09 06:29:56 +0000
committerGlenn Morris2009-10-09 06:29:56 +0000
commit9656d87b30a34bce0f126735ed302f1035cc9248 (patch)
treef464fa7cc936555bb8748a84d2e8fbcf256a1ef4
parente6227f0652c761c30f6e79c4ade9d1b077b8e496 (diff)
downloademacs-9656d87b30a34bce0f126735ed302f1035cc9248.tar.gz
emacs-9656d87b30a34bce0f126735ed302f1035cc9248.zip
(report-emacs-bug): Also print `features'.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/mail/emacsbug.el5
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b2cdead3634..cb393b306ae 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12009-10-09 Glenn Morris <rgm@gnu.org>
2
3 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
4
12009-10-09 Karl Fogel <kfogel@red-bean.com> 52009-10-09 Karl Fogel <kfogel@red-bean.com>
2 6
3 * bookmark.el (bookmark-jump): Add new `display-func' parameter. 7 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index c05dbe1f80d..561852b0981 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -218,8 +218,9 @@ usually do not have translators to read other languages for them.\n\n")
218 (insert (if (zerop (length shadows)) 218 (insert (if (zerop (length shadows))
219 "None found.\n" 219 "None found.\n"
220 shadows))) 220 shadows)))
221 ;; This is so the user has to type something 221 (insert (format "\nFeatures:\n%s\n" features))
222 ;; in order to send easily. 222 (fill-region (line-beginning-position 0) (point))
223 ;; This is so the user has to type something in order to send easily.
223 (use-local-map (nconc (make-sparse-keymap) (current-local-map))) 224 (use-local-map (nconc (make-sparse-keymap) (current-local-map)))
224 (define-key (current-local-map) "\C-c\C-i" 'report-emacs-bug-info) 225 (define-key (current-local-map) "\C-c\C-i" 'report-emacs-bug-info)
225 (unless report-emacs-bug-no-explanations 226 (unless report-emacs-bug-no-explanations