diff options
| author | Daniel Colascione | 2014-03-21 14:27:25 -0700 |
|---|---|---|
| committer | Daniel Colascione | 2014-03-21 14:27:25 -0700 |
| commit | 0d8ac93e1cb206efbc76c213ac8d45d69d150de2 (patch) | |
| tree | fbb73f866357841319270590140a9a54f6c5805f | |
| parent | 5671dc515946c8a27b09d060bc34345d42a8fa6e (diff) | |
| parent | aa4659075414a2730535eeb419847d761eb76f0d (diff) | |
| download | emacs-0d8ac93e1cb206efbc76c213ac8d45d69d150de2.tar.gz emacs-0d8ac93e1cb206efbc76c213ac8d45d69d150de2.zip | |
Add memory information to bug reports
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/mail/emacsbug.el | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9fc13b37772..bac68960570 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-03-21 Daniel Colascione <dancol@dancol.org> | ||
| 2 | |||
| 3 | * mail/emacsbug.el (report-emacs-bug): Include memory usage | ||
| 4 | information in bug reports. | ||
| 5 | |||
| 1 | 2014-03-21 Michael Albinus <michael.albinus@gmx.de> | 6 | 2014-03-21 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 7 | ||
| 3 | * net/tramp.el (tramp-methods): Add docstring for `tramp-login-env' | 8 | * net/tramp.el (tramp-methods): Add docstring for `tramp-login-env' |
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"))) | |||
| 322 | shadows))) | 322 | shadows))) |
| 323 | (insert (format "\nFeatures:\n%s\n" features)) | 323 | (insert (format "\nFeatures:\n%s\n" features)) |
| 324 | (fill-region (line-beginning-position 0) (point)) | 324 | (fill-region (line-beginning-position 0) (point)) |
| 325 | |||
| 326 | (insert (format "\nMemory information:\n")) | ||
| 327 | (pp (garbage-collect) (current-buffer)) | ||
| 328 | |||
| 325 | ;; This is so the user has to type something in order to send easily. | 329 | ;; This is so the user has to type something in order to send easily. |
| 326 | (use-local-map (nconc (make-sparse-keymap) (current-local-map))) | 330 | (use-local-map (nconc (make-sparse-keymap) (current-local-map))) |
| 327 | (define-key (current-local-map) "\C-c\C-i" 'info-emacs-bug) | 331 | (define-key (current-local-map) "\C-c\C-i" 'info-emacs-bug) |