summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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