]> git.eshelyaron.com Git - emacs.git/commitdiff
Backport memory info in bug reports (2014-03-21T21:27:25Z!dancol@dancol.org) from...
authorDaniel Colascione <dancol@dancol.org>
Sun, 23 Mar 2014 06:16:14 +0000 (23:16 -0700)
committerDaniel Colascione <dancol@dancol.org>
Sun, 23 Mar 2014 06:16:14 +0000 (23:16 -0700)
lisp/ChangeLog
lisp/mail/emacsbug.el

index 2a0840031b2aac94d28eeab1f18b50c4159d2b24..b73bb1e67d546f3c7c45baf4a6666f377f52f293 100644 (file)
@@ -1,3 +1,8 @@
+2014-03-21  Daniel Colascione  <dancol@dancol.org>
+
+       * mail/emacsbug.el (report-emacs-bug): Include memory usage
+       information in bug reports.
+
 2014-03-23  Daniel Colascione  <dancol@dancol.org>
 
        * emacs-lisp/cl-macs.el (cl--do-arglist): Use a little `cl-loop'
index 0f72d24ed1e19f4a43b9526c97c9fc795e6a1c1c..b994949e94d825f71b19ce8514bd5d25fd92a167 100644 (file)
@@ -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)