From 518b60aa4274025a7e8fe76b4a49051852bfcf74 Mon Sep 17 00:00:00 2001 From: Eric Schulte Date: Mon, 23 Jun 2014 17:45:13 -0400 Subject: [PATCH] allow square brackets in emphasis post-match * lisp/org.el (org-emphasis-regexp-components): Allow square brackets in the emphasis post match. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 2b57fc0a1..3d2487bd1 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -4269,7 +4269,7 @@ After a match, the match groups contain these elements: ;; set this option proved cumbersome. See this message/thread: ;; http://article.gmane.org/gmane.emacs.orgmode/68681 (defvar org-emphasis-regexp-components - '(" \t('\"{" "- \t.,:!?;'\")}\\" " \t\r\n,\"'" "." 1) + '(" \t('\"{" "- \t.,:!?;'\")}\\\[" " \t\r\n,\"'" "." 1) "Components used to build the regular expression for emphasis. This is a list with five entries. Terminology: In an emphasis string like \" *strong word* \", we call the initial space PREMATCH, the final -- 2.11.4.GIT