summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2022-06-26 10:58:22 +0530
committerArun Isaac2022-06-27 00:19:50 +0530
commit6d2eed6253295702a7a44c6f7d62fec8bc005cd8 (patch)
treee292f1c951faffba126ed1c3022c39c6829043f1
parent6ec2fe07a54bcd35c33c6f38abf0774039a8e838 (diff)
downloadtissue-6d2eed6253295702a7a44c6f7d62fec8bc005cd8.tar.gz
tissue-6d2eed6253295702a7a44c6f7d62fec8bc005cd8.tar.lz
tissue-6d2eed6253295702a7a44c6f7d62fec8bc005cd8.zip
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.
-rw-r--r--tissue/issue.scm12
1 files changed, 0 insertions, 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<?))))
-
(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'