emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/emacs-gc-stats bc6fe1e960 10/24: Record `memory-info' o


From: ELPA Syncer
Subject: [elpa] externals/emacs-gc-stats bc6fe1e960 10/24: Record `memory-info' output
Date: Sat, 10 Jun 2023 12:58:45 -0400 (EDT)

branch: externals/emacs-gc-stats
commit bc6fe1e960e97e7f05dd49dd60af694030b8670e
Author: Ihor Radchenko <yantar92@posteo.net>
Commit: Ihor Radchenko <yantar92@posteo.net>

    Record `memory-info' output
    
    * emacs-gc-stats.el (emacs-gc-stats--setting-vars): Fix `memory-info'
    query to make it a function call.
    (emacs-gc-stats--command-vars):
    (emacs-gc-stats--summary-vars): Record `memory-info'.
---
 emacs-gc-stats.el | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/emacs-gc-stats.el b/emacs-gc-stats.el
index 32b38b33ec..f41943ef55 100644
--- a/emacs-gc-stats.el
+++ b/emacs-gc-stats.el
@@ -56,7 +56,8 @@
     doom-version
     spacemacs-version
     prelude-tips
-    memory-info)
+    (memory-info)
+    (memory-use-counts))
   "List of variable/function symbols to collect.")
 
 (defvar emacs-gc-stats--command-vars
@@ -66,7 +67,9 @@
     gc-elapsed
     gcs-done
     this-command
-    memory-limit)
+    memory-limit
+    (memory-info)
+    (memory-use-counts))
   "List of variable/function symbols to collect for each GC or command.")
 
 (defvar emacs-gc-stats--summary-vars
@@ -75,7 +78,9 @@
     gc-elapsed
     gcs-done
     memory-limit
-    emacs-uptime)
+    (memory-info)
+    emacs-uptime
+    (memory-use-counts))
   "List of variables to collect at session end.")
 
 (defun emacs-gc-stats--collect (&rest symbols)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]