diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-07-30 13:06:35 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-07-30 13:06:35 +0200 |
commit | bd3bc1c924d4b65f0413a7df9b74f6facd0d2a1a (patch) | |
tree | d3cf68627c934fa2492bf923d3c789f4b64b8142 /lisp/calc | |
parent | 9f14c9ad342e60d2ef4965253a57f297342e5cf9 (diff) | |
download | emacs-bd3bc1c924d4b65f0413a7df9b74f6facd0d2a1a.tar.gz |
Fix syntax error in previus calc-forms change
* lisp/calc/calc-forms.el (calc-time): Fix previous decoded time
change.
Diffstat (limited to 'lisp/calc')
-rw-r--r-- | lisp/calc/calc-forms.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calc/calc-forms.el b/lisp/calc/calc-forms.el index d867ac1d47a..bdfc0e44ddd 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) |