diff options
author | Arun Isaac | 2022-06-27 18:30:39 +0530 |
---|---|---|
committer | Arun Isaac | 2022-06-28 10:05:06 +0530 |
commit | 9ba81a4fa75393cd8b9a6ca6d8a4c140b7908e9d (patch) | |
tree | a81413ff20ab979c6626b905c4bf09bcdbf00667 | |
parent | e0348f347c1c95c0cb527cd2389a107cd7305ef6 (diff) | |
download | tissue-9ba81a4fa75393cd8b9a6ca6d8a4c140b7908e9d.tar.gz tissue-9ba81a4fa75393cd8b9a6ca6d8a4c140b7908e9d.tar.lz tissue-9ba81a4fa75393cd8b9a6ca6d8a4c140b7908e9d.zip |
issue: Deprecate unix-time->date utility.
* tissue/issue.scm (unix-time->date): Delete function.
-rw-r--r-- | tissue/issue.scm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tissue/issue.scm b/tissue/issue.scm index 076e727..d029f40 100644 --- a/tissue/issue.scm +++ b/tissue/issue.scm @@ -223,11 +223,6 @@ return #f." '() (comma-split (remove-prefix "* " line))))) -(define (unix-time->date timestamp) - "Convert unix TIMESTAMP to an SRFI-19 date object." - (time-monotonic->date - (make-time time-monotonic 0 timestamp))) - (define (resolve-alias name aliases) "Resolve NAME against ALIASES, a list of aliases. ALIASES should be in the form of the argument of the same name to `tissue-configuration' |