diff options
| author | Glenn Morris | 2009-10-09 06:29:56 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-10-09 06:29:56 +0000 |
| commit | 9656d87b30a34bce0f126735ed302f1035cc9248 (patch) | |
| tree | f464fa7cc936555bb8748a84d2e8fbcf256a1ef4 | |
| parent | e6227f0652c761c30f6e79c4ade9d1b077b8e496 (diff) | |
| download | emacs-9656d87b30a34bce0f126735ed302f1035cc9248.tar.gz emacs-9656d87b30a34bce0f126735ed302f1035cc9248.zip | |
(report-emacs-bug): Also print `features'.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/mail/emacsbug.el | 5 |
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 @@ | |||
| 1 | 2009-10-09 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * mail/emacsbug.el (report-emacs-bug): Also print `features'. | ||
| 4 | |||
| 1 | 2009-10-09 Karl Fogel <kfogel@red-bean.com> | 5 | 2009-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 |