summaryrefslogtreecommitdiff
path: root/tissue/web.scm
diff options
context:
space:
mode:
authorArun Isaac2022-03-17 15:58:35 +0530
committerArun Isaac2022-03-18 16:23:42 +0530
commitbc340c9a1b6e2f2cae79eefab990958a29c0b3d8 (patch)
treefb68a0fdc2f652862fbd0ee78c9fcf2da38155a4 /tissue/web.scm
parentf52ad25548bb142755a9d18a925b7d9d161d0d55 (diff)
downloadtissue-bc340c9a1b6e2f2cae79eefab990958a29c0b3d8.tar.gz
tissue-bc340c9a1b6e2f2cae79eefab990958a29c0b3d8.tar.lz
tissue-bc340c9a1b6e2f2cae79eefab990958a29c0b3d8.zip
issue: Rename issue-open to issue-open?.
issue-open returns a boolean. So, it makes sense to name it like a predicate. * bin/tissue (tissue-list): Replace issue-open with issue-open?. * tissue/issue.scm (tissue): Export issue-open? instead of issue-open. (<issue>): Rename issue-open to issue-open?. * tissue/web.scm (issue-listing): Replace issue-open with issue-open?.
Diffstat (limited to 'tissue/web.scm')
-rw-r--r--tissue/web.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/tissue/web.scm b/tissue/web.scm
index c2acbcd..fa804a4 100644
--- a/tissue/web.scm
+++ b/tissue/web.scm
@@ -180,7 +180,7 @@ default, all issues are listed newest first."
#:last-updated-relative-date (issue-last-updated-relative-date issue)
#:assigned (issue-assigned issue)
#:keywords (issue-keywords issue)
- #:open (issue-open issue)
+ #:open (issue-open? issue)
#:tasks (issue-tasks issue)
#:completed-tasks (issue-completed-tasks issue)
#:posts (issue-posts issue)))