branch: externals/emacs-gc-stats
commit 9183a40b15031cfe25342fc829766bb09c53bb5b
Author: Ihor Radchenko <yanta...@posteo.net>
Commit: Ihor Radchenko <yanta...@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