Skip to content

Instantly share code, notes, and snippets.

@neuro-sys
Created April 26, 2020 22:51
Show Gist options
  • Save neuro-sys/66f5dbff4d46a476ada9ae80b4f990d7 to your computer and use it in GitHub Desktop.
Save neuro-sys/66f5dbff4d46a476ada9ae80b4f990d7 to your computer and use it in GitHub Desktop.
(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