emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master bd3bc1c 05/13: Fix syntax error in previus calc-for


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master bd3bc1c 05/13: Fix syntax error in previus calc-forms change
Date: Tue, 30 Jul 2019 07:12:06 -0400 (EDT)

branch: master
commit bd3bc1c924d4b65f0413a7df9b74f6facd0d2a1a
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Fix syntax error in previus calc-forms change
    
    * lisp/calc/calc-forms.el (calc-time): Fix previous decoded time
    change.
---
 lisp/calc/calc-forms.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/calc/calc-forms.el b/lisp/calc/calc-forms.el
index d867ac1..bdfc0e4 100644
--- a/lisp/calc/calc-forms.el
+++ b/lisp/calc/calc-forms.el
@@ -43,7 +43,7 @@
                              (list 'hms
                                    (decoded-time-hour time)
                                     (decoded-time-minute time)
-                                    (decoded-time-second 0 time))
+                                    (decoded-time-second time))
                              (list 'hms 24 0 0))))))
 
 (defun calc-to-hms (arg)



reply via email to

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