aboutsummaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tom Willemse2019-02-01 13:33:33 -0800
committerGravatar Tom Willemse2019-02-01 13:33:33 -0800
commit33c0c897886d88b58eaad3798d618fa8cd12ca02 (patch)
tree8544c9edebc7eb6001b79bacccc2e50f4611186e /emacs
parent6a967836fb0aa5a59f6ca0fbea1fa1ffc8b6874e (diff)
downloadnew-dotfiles-33c0c897886d88b58eaad3798d618fa8cd12ca02.tar.gz
new-dotfiles-33c0c897886d88b58eaad3798d618fa8cd12ca02.zip
Fix warning from latest Org
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init/oni-org-init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init/oni-org-init.el b/emacs/.emacs.d/init/oni-org-init.el
index e6df476..04bb759 100644
--- a/emacs/.emacs.d/init/oni-org-init.el
+++ b/emacs/.emacs.d/init/oni-org-init.el
@@ -73,7 +73,7 @@ predecessor if there is a non-DONE sibling defined before it."
"Skip over tasks I don't want to see right now.
Tasks being skipped over include ones with the \"ex\" tag and
ones that have a predecessor."
- (let ((tags (org-get-tags-at (point))))
+ (let ((tags (org-get-tags (point))))
(when (or (and (not (oni-org-init-looking-for-tag-p "ex"))
(member "ex" tags))
(oni-org-init-heading-has-predecessor-p))