From 3aefb1aa9a3ff2d3dc88c17453a2b2651b0befbd Mon Sep 17 00:00:00 2001 From: jao Date: Fri, 19 Nov 2021 19:22:36 +0000 Subject: completion nits (liking mct) --- init.org | 2 ++ 1 file changed, 2 insertions(+) (limited to 'init.org') diff --git a/init.org b/init.org index ba9d3da..19d08d7 100644 --- a/init.org +++ b/init.org @@ -651,6 +651,7 @@ (jao-notify msg "" (jao-data-file "clock-world-icon.png")))) (defun jao-time-to-epoch (&optional s) + "Transform a time string to an epoch integer in milliseconds." (interactive) (let ((s (or s (read-string "Time string: " (thing-at-point 'string))))) (message "%s = %s" @@ -658,6 +659,7 @@ (round (* 1000 (time-to-seconds (parse-time-string s))))))) (defun jao-epoch-to-time (&optional v) + "Transform an epoch, given in milliseconds, to a time string." (interactive) (let ((v (or v (read-number "Milliseconds: " (thing-at-point 'number))))) (message "%s = %s" v -- cgit v1.2.3