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

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

[elpa] externals/emacs-gc-stats 9183a40b15 03/24: Do not use :time keywo


From: ELPA Syncer
Subject: [elpa] externals/emacs-gc-stats 9183a40b15 03/24: Do not use :time keyword in stat data
Date: Sat, 10 Jun 2023 12:58:44 -0400 (EDT)

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

    Do not use :time keyword in stat data
    
    This is not a plist anyway.
---
 emacs-gc-stats.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/emacs-gc-stats.el b/emacs-gc-stats.el
index e80e0e37ef..5b0cf4c27c 100644
--- a/emacs-gc-stats.el
+++ b/emacs-gc-stats.el
@@ -98,7 +98,7 @@ Otherwise, collect symbol."
   (push
    (apply #'emacs-gc-stats--collect
           "Initial stats"
-          :time (current-time-string)
+          (current-time-string)
           emacs-gc-stats--setting-vars)
    emacs-gc-stats--data))
 
@@ -106,7 +106,7 @@ Otherwise, collect symbol."
   "Collect single GC stats."
   (push
    (apply #'emacs-gc-stats--collect
-          :time (current-time-string)
+          (current-time-string)
           emacs-gc-stats--command-vars)
    emacs-gc-stats--data))
 
@@ -115,7 +115,7 @@ Otherwise, collect symbol."
   (push
    (apply #'emacs-gc-stats--collect
           "Session end stats"
-          :time (current-time-string)
+          (current-time-string)
           emacs-gc-stats--summary-vars)
    emacs-gc-stats--data))
 



reply via email to

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