summaryrefslogtreecommitdiff
path: root/helm-org.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2016-03-02 18:47:31 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2016-03-02 18:47:31 +0100
commit49c9922b12a7549f8b854279828bdda2dec5c245 (patch)
treebc894cfeeb8502d6995f1bba8df934cd438a0ec5 /helm-org.el
parent5c8ebc86d68d3965e79e531a28d6ca589da9562a (diff)
Fix helm-org-headings-class should be quoted.
* helm-org.el (helm-source-org-headings-for-files): Do it.
Diffstat (limited to 'helm-org.el')
-rw-r--r--helm-org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/helm-org.el b/helm-org.el
index 19c2882f..0785c1b4 100644
--- a/helm-org.el
+++ b/helm-org.el
@@ -139,7 +139,7 @@ Note this have no effect in `helm-org-in-buffer-headings'."
(if parents (nreverse cands) cands))))))
(defun helm-source-org-headings-for-files (filenames &optional parents)
- (helm-make-source "Org Headings" helm-org-headings-class
+ (helm-make-source "Org Headings" 'helm-org-headings-class
:parents parents
:candidates filenames))