From 603f614c3515c12f7d3c60bf6a2bf3f86625d921 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Mon, 20 May 2019 10:43:47 -0400 Subject: [PATCH] fix: Undefined function inc elisp calls this 1+, I had it sitting in my utils Fixes #16 --- org-clubhouse.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-clubhouse.el b/org-clubhouse.el index e82cd48d0..ce136a51f 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") ""))))