浏览代码

Fix fontification of links within verbatim markup

* lisp/org.el (org-do-emphasis-faces): Prevent fontification of links
  within verbatim markup.
Nicolas Goaziou 6 年之前
父节点
当前提交
f12f9b4f28
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      lisp/org.el

+ 3 - 1
lisp/org.el

@@ -5808,7 +5808,9 @@ This should be called after the variable `org-link-parameters' has changed."
 	       (match-beginning 2) (match-end 2) 'face face)
 	       (match-beginning 2) (match-end 2) 'face face)
 	      (when verbatim?
 	      (when verbatim?
 		(org-remove-flyspell-overlays-in
 		(org-remove-flyspell-overlays-in
-		 (match-beginning 0) (match-end 0)))
+		 (match-beginning 0) (match-end 0))
+		(remove-text-properties (match-beginning 2) (match-end 2)
+					'(display t invisible t intangible t)))
 	      (add-text-properties (match-beginning 2) (match-end 2)
 	      (add-text-properties (match-beginning 2) (match-end 2)
 				   '(font-lock-multiline t org-emphasis t))
 				   '(font-lock-multiline t org-emphasis t))
 	      (when org-hide-emphasis-markers
 	      (when org-hide-emphasis-markers