summary refs log tree commit diff stats
path: root/lisp/+org.el
diff options
context:
space:
mode:
authorCase Duckworth2022-01-10 23:53:12 -0600
committerCase Duckworth2022-01-10 23:53:12 -0600
commit1c6d042d2fc0b526fd0430b36ba7f985032db3c6 (patch)
tree53c01cb0e65135072511d843fb0bb4ce02cab77e /lisp/+org.el
parentMerge branch 'main' of https://tildegit.org/acdw/emacs (diff)
parentBleh (diff)
downloademacs-1c6d042d2fc0b526fd0430b36ba7f985032db3c6.tar.gz
emacs-1c6d042d2fc0b526fd0430b36ba7f985032db3c6.zip
Merge branch 'main' of https://tildegit.org/acdw/emacs
Diffstat (limited to 'lisp/+org.el')
-rw-r--r--lisp/+org.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/+org.el b/lisp/+org.el index 090af5a..348ba6e 100644 --- a/lisp/+org.el +++ b/lisp/+org.el
@@ -421,9 +421,10 @@ the deletion might narrow the column."
421 (interactive "P") 421 (interactive "P")
422 (save-excursion 422 (save-excursion
423 (let* ((this-char-type (org-element-type (org-element-context))) 423 (let* ((this-char-type (org-element-type (org-element-context)))
424 (prev-char-type (save-excursion 424 (prev-char-type (ignore-errors
425 (backward-char) 425 (save-excursion
426 (org-element-type (org-element-context)))) 426 (backward-char)
427 (org-element-type (org-element-context)))))
427 (types '(citation citation-reference clock comment comment-block 428 (types '(citation citation-reference clock comment comment-block
428 footnote-definition footnote-reference headline 429 footnote-definition footnote-reference headline
429 inline-src-block inlinetask keyword link 430 inline-src-block inlinetask keyword link