[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] trunk r116832: Add memory information to bug reports
From: |
Daniel Colascione |
Subject: |
[Emacs-diffs] trunk r116832: Add memory information to bug reports |
Date: |
Fri, 21 Mar 2014 21:27:43 +0000 |
User-agent: |
Bazaar (2.6b2) |
------------------------------------------------------------
revno: 116832 [merge]
revision-id: address@hidden
parent: address@hidden
parent: address@hidden
committer: Daniel Colascione <address@hidden>
branch nick: trunk
timestamp: Fri 2014-03-21 14:27:25 -0700
message:
Add memory information to bug reports
modified:
lisp/ChangeLog changelog-20091113204419-o5vbwnq5f7feedwu-1432
lisp/mail/emacsbug.el emacsbug.el-20091113204419-o5vbwnq5f7feedwu-73
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2014-03-21 19:04:57 +0000
+++ b/lisp/ChangeLog 2014-03-21 21:27:25 +0000
@@ -1,3 +1,8 @@
+2014-03-21 Daniel Colascione <address@hidden>
+
+ * mail/emacsbug.el (report-emacs-bug): Include memory usage
+ information in bug reports.
+
2014-03-21 Michael Albinus <address@hidden>
* net/tramp.el (tramp-methods): Add docstring for `tramp-login-env'
=== modified file 'lisp/mail/emacsbug.el'
--- a/lisp/mail/emacsbug.el 2014-02-10 01:34:22 +0000
+++ b/lisp/mail/emacsbug.el 2014-03-21 21:26:19 +0000
@@ -322,6 +322,10 @@
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)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] trunk r116832: Add memory information to bug reports,
Daniel Colascione <=