From d61ce8edd116cb9c1c1de378cd3420f748251961 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 3 Nov 2013 14:18:19 +0100 Subject: [PATCH] Fix flyspell behaviour on verbatim objects * lisp/org.el (org-do-emphasis-faces): Look for verbatim status at correct location. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 5e1f19508..e750ba036 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -5704,7 +5704,7 @@ The time stamps may be either active or inactive.") (font-lock-prepend-text-property (match-beginning 2) (match-end 2) 'face (nth 1 a)) - (and (nth 4 a) + (and (nth 2 a) (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))) (add-text-properties (match-beginning 2) (match-end 2) -- 2.11.4.GIT