diff options
author | Griffin Smith <root@gws.fyi> | 2019-05-20T14·43-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2019-05-20T14·44-0400 |
commit | 603f614c3515c12f7d3c60bf6a2bf3f86625d921 (patch) | |
tree | 7f7b884b3aba7c16fed9b8317824a5914ffc44a3 /org-clubhouse.el | |
parent | 1cd9f9f00655ad1f7e997ce7ff6e73643108de90 (diff) |
fix: Undefined function inc
elisp calls this 1+, I had it sitting in my utils Fixes #16
Diffstat (limited to 'org-clubhouse.el')
-rw-r--r-- | org-clubhouse.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org-clubhouse.el b/org-clubhouse.el index e82cd48d02a4..ce136a51f016 100644 --- a/org-clubhouse.el +++ b/org-clubhouse.el @@ -992,7 +992,7 @@ which labels to set." (alist-get 'tasks (org-clubhouse-get-story story-id)))))) (mapconcat (apply-partially #'org-clubhouse--task-to-headline-text - (inc level)) + (1+ level)) tasks "\n") "")))) |