Created
April 26, 2020 22:51
-
-
Save neuro-sys/66f5dbff4d46a476ada9ae80b4f990d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun hour-min-to-time (h m) (seconds-to-time (+ (* h 360) (* 60 m)))) | |
(format-time-string "%H:%M" (time-add (hour-min-to-time 11 15) (hour-min-to-time 3 30))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment