diff options
author | Daniel Colascione <dancol@dancol.org> | 2014-03-21 14:27:25 -0700 |
---|---|---|
committer | Daniel Colascione <dancol@dancol.org> | 2014-03-21 14:27:25 -0700 |
commit | 0d8ac93e1cb206efbc76c213ac8d45d69d150de2 (patch) | |
tree | fbb73f866357841319270590140a9a54f6c5805f /lisp/mail/emacsbug.el | |
parent | 5671dc515946c8a27b09d060bc34345d42a8fa6e (diff) | |
parent | aa4659075414a2730535eeb419847d761eb76f0d (diff) | |
download | emacs-0d8ac93e1cb206efbc76c213ac8d45d69d150de2.tar.gz |
Add memory information to bug reports
Diffstat (limited to 'lisp/mail/emacsbug.el')
-rw-r--r-- | lisp/mail/emacsbug.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index 0f72d24ed1e..b994949e94d 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el @@ -322,6 +322,10 @@ usually do not have translators for other languages.\n\n"))) shadows))) (insert (format "\nFeatures:\n%s\n" features)) (fill-region (line-beginning-position 0) (point)) + + (insert (format "\nMemory information:\n")) + (pp (garbage-collect) (current-buffer)) + ;; This is so the user has to type something in order to send easily. (use-local-map (nconc (make-sparse-keymap) (current-local-map))) (define-key (current-local-map) "\C-c\C-i" 'info-emacs-bug) |