From 6d2eed6253295702a7a44c6f7d62fec8bc005cd8 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sun, 26 Jun 2022 10:58:22 +0530 Subject: issue: Deprecate authors function. The authors function, if required in the future, must be reimplemented using guile-git in (tissue git). * tissue/issue.scm (authors): Delete public function. --- tissue/issue.scm | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tissue/issue.scm b/tissue/issue.scm index 9c66f88..c68be9a 100644 --- a/tissue/issue.scm +++ b/tissue/issue.scm @@ -55,7 +55,6 @@ alist->issue post->alist alist->post - authors issues index-issue)) @@ -193,17 +192,6 @@ return #f." (time-monotonic->date (make-time time-monotonic 0 timestamp))) -(define authors - (memoize-thunk - (lambda () - "Return a list of all authors who have committed to this git -repository. The returned list is sorted in lexicographic order." - (sort (delete-duplicates - (append-map (lambda (issue) - (map post-author (issue-posts issue))) - (issues))) - string