diff options
author | Russell Matney <russell.matney@gmail.com> | 2018-03-02T22·22-0500 |
---|---|---|
committer | Russell Matney <russell.matney@gmail.com> | 2018-03-02T22·24-0500 |
commit | 621752ba0ea4897e900bf1335f62cb523acfa1f6 (patch) | |
tree | 810ecbd353d8e5bd806893992fbb1aa6d8f4f8cd /org-clubhouse.el | |
parent | 47c0fe97413594623e384b48481e27b119c993c6 (diff) |
fix: namespace function call to match name
Hotfix - this was not working!
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 16df71cdf309..c25b3352e752 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))))) |