From 65d70388abe7d2fd7bc1186e4e5997f92610186e Mon Sep 17 00:00:00 2001 From: Bastien Date: Sat, 28 Apr 2018 12:15:28 +0200 Subject: [PATCH] .dir-locals.el: Don't hide emphasis markers This is needed so that e.g. emphasis markers in org-manual.org tables don't create text changes that should be ignored. --- .dir-locals.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.dir-locals.el b/.dir-locals.el index 899ba7591..0a3f083d6 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -10,7 +10,8 @@ (indent-tabs-mode) (org-edit-src-content-indentation . 0) (org-adapt-indentation) - (org-list-description-max-indent . 5))) + (org-list-description-max-indent . 5) + (org-hide-emphasis-markers . nil)))