]> git.eshelyaron.com Git - emacs.git/commitdiff
Add memory information to bug reports
authorDaniel Colascione <dancol@dancol.org>
Fri, 21 Mar 2014 21:27:25 +0000 (14:27 -0700)
committerDaniel Colascione <dancol@dancol.org>
Fri, 21 Mar 2014 21:27:25 +0000 (14:27 -0700)
1  2 
lisp/ChangeLog
lisp/mail/emacsbug.el

diff --cc lisp/ChangeLog
index 9fc13b377720b09fa985e5d5389bc04b0fdf4970,b35264cdf6b9fca273255e04a639ef0a8bf3d425..bac689605709ea2d663ead406a8cfef22c2ed512
@@@ -1,55 -1,5 +1,60 @@@
++2014-03-21  Daniel Colascione  <dancol@dancol.org>
++
++      * mail/emacsbug.el (report-emacs-bug): Include memory usage
++      information in bug reports.
++
 +2014-03-21  Michael Albinus  <michael.albinus@gmx.de>
 +
 +      * net/tramp.el (tramp-methods): Add docstring for `tramp-login-env'
 +      and `tramp-copy-env'.
 +
 +      * net/tramp-sh.el (tramp-methods) <sudo>: Add `tramp-login-env'.
 +      (tramp-maybe-open-connection): Handle `tramp-login-env'.
 +
  2014-03-21  Glenn Morris  <rgm@gnu.org>
  
 +      * electric.el (electric-indent-post-self-insert-function): Add doc.
 +
 +2014-03-21  Dmitry Gutov  <dgutov@yandex.ru>
 +
 +      * emacs-lisp/package.el (package-compute-transaction):
 +      Use `version-list-<=' to compare the requirement version against
 +      the version of package already to be installed.  Update the error
 +      message.  (Bug#16826)
 +
 +      * progmodes/ruby-mode.el (ruby-smie-rules):
 +      Add indentation rule for ` @ '.  (Bug#17050)
 +
 +2014-03-21  Juanma Barranquero  <lekktu@gmail.com>
 +
 +      * align.el (align-regexp): Remove superfluous backslash.
 +
 +      * ffap.el (ffap-ftp-default-user, ffap-url-regexp)
 +      (ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
 +      (ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
 +      Fix docstring typos.
 +      (ffap-next): Use C-u in docstring.
 +      (ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
 +      (ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
 +      Remove superfluous backslashes.
 +      (ffap-string-at-point): Reflow docstring.
 +
 +      * server.el (server-host): Reflow docstring.
 +      (server-unload-function): Fix docstring typo.
 +      (server-eval-at): Remove superfluous backslash.
 +
 +      * skeleton.el (skeleton-insert): Remove superfluous backslash.
 +      (skeleton-insert): Doc fix.
 +      (skeleton-insert): Reflow docstring.
 +
 +      * term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
 +      (tty-color-approximate, tty-color-by-index, tty-color-values)
 +      (tty-color-desc): Remove superfluous backslashes.
 +
 +2014-03-21  Glenn Morris  <rgm@gnu.org>
 +
 +      * cus-start.el (history-length): Bump :version.
 +
        * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
        ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
        ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
index 0f72d24ed1e19f4a43b9526c97c9fc795e6a1c1c,0f72d24ed1e19f4a43b9526c97c9fc795e6a1c1c..b994949e94d825f71b19ce8514bd5d25fd92a167
@@@ -322,6 -322,6 +322,10 @@@ usually do not have translators for oth
                  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)