branch: elpa/helm
commit 45ab83ee6ed4b1abb6542d963495745a3069045a
Author: Thierry Volpiatto <thie...@posteo.net>
Commit: Thierry Volpiatto <thie...@posteo.net>

    Fix emacs-29 incompatible change with current-time
---
 helm-core.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helm-core.el b/helm-core.el
index 96202a52b1..ec635732d2 100644
--- a/helm-core.el
+++ b/helm-core.el
@@ -1928,7 +1928,7 @@ Use optional arguments ARGS like in `format'."
       (buffer-disable-undo)
       (let ((inhibit-read-only t))
         (goto-char (point-max))
-        (insert (let ((tm (current-time)))
+        (insert (let ((tm (time-convert nil 'list)))
                   (format (concat (if (string-match "Start session" 
format-string)
                                       "* " "** ")
                                   "%s.%06d (%s)\n %s\n")

Reply via email to