diff options
author | Kyle Meyer <kyle@kyleam.com> | 2019-01-14 17:43:38 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2019-01-15 21:08:37 -0500 |
commit | 1596459fdc8da03227098b0079716a0a0db1712d (patch) | |
tree | 69f806dfe6213393c5ef7ce882a4b8c53ff3a3d1 /lisp | |
parent | 5c0cdb928aacee735a0772249241eb840dee6b79 (diff) | |
download | emacs.d-1596459fdc8da03227098b0079716a0a0db1712d.tar.gz |
Update an org-set-tags call for upstream changes
This function has only one argument as of 4d152b994 (Rewrite tags
setting functions, 2018-04-20). Guess I'm not using this command very
often :/
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/km-org.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/km-org.el b/lisp/km-org.el index 2bd8c39..f86c15c 100644 --- a/lisp/km-org.el +++ b/lisp/km-org.el @@ -270,7 +270,7 @@ to (org-back-to-heading) (when (re-search-forward regex (point-at-eol) t) (replace-match "" nil nil nil 4) - (org-set-tags nil t))))) + (org-align-tags))))) (defun km/org-add-blank-before-heading () "Add a blank line before Org headings in buffer." |