Created
July 6, 2011 18:21
-
-
Save kriyative/1067943 to your computer and use it in GitHub Desktop.
Displaying a daily Org-mode agenda reminder in Emacs 2
This file contains 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 parse-relative-time (time-str) | |
(destructuring-bind (sec min hour day month year dow dst zone) | |
(parse-time-string time-str) | |
(destructuring-bind (sec1 min1 hour1 day1 month1 year1 dow1 dst1 zone1) | |
(decode-time) | |
(encode-time (or sec sec1) | |
(or min min1) | |
(or hour hour1) | |
(or day day1) | |
(or month month1) | |
(or year year1) | |
(or zone zone1))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment