From eaa677bd9490972a0fd9d630e548291663b8ed70 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 5 Oct 2017 01:18:03 +0200 Subject: [PATCH] org: fix +org/dwim-at-point on subscript/superscript elements --- modules/org/org/autoload/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/org/org/autoload/org.el b/modules/org/org/autoload/org.el index 53e033b76..8682d5848 100644 --- a/modules/org/org/autoload/org.el +++ b/modules/org/org/autoload/org.el @@ -47,7 +47,7 @@ If on a: (context (org-element-context)) (type (org-element-type context))) ;; skip over unimportant contexts - (while (and context (memq type '(verbatim code bold italic underline strike-through))) + (while (and context (memq type '(verbatim code bold italic underline strike-through subscript superscript))) (setq context (org-element-property :parent context) type (org-element-type context))) (pcase type