From 621752ba0ea4897e900bf1335f62cb523acfa1f6 Mon Sep 17 00:00:00 2001 From: Russell Matney Date: Fri, 2 Mar 2018 17:22:02 -0500 Subject: [PATCH] fix: namespace function call to match name Hotfix - this was not working! --- org-clubhouse.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-clubhouse.el b/org-clubhouse.el index 16df71cdf..c25b3352e 100644 --- a/org-clubhouse.el +++ b/org-clubhouse.el @@ -111,7 +111,7 @@ If unset all projects will be synchronized") "Collects the headline at point or the headlines in a region. Returns a list." (setq test-headlines (if (and beg end) - (get-headlines-in-region beg end) + (org-clubhouse-get-headlines-in-region beg end) (list (org-element-find-headline)))))