From 740ab86062e8efd6e402a868b1b7ed808d795c40 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Sun, 28 Jul 2019 11:48:32 +0200 Subject: [PATCH] Clean up conf-mode-syntax-table slightly * lisp/textmodes/conf-mode.el (conf-mode-syntax-table): Remove superfluous backslash in ?\'. --- lisp/textmodes/conf-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/textmodes/conf-mode.el b/lisp/textmodes/conf-mode.el index 27970096f3b..3b3d5d4ff20 100644 --- a/lisp/textmodes/conf-mode.el +++ b/lisp/textmodes/conf-mode.el @@ -135,7 +135,7 @@ not align (only setting space according to `conf-assignment-space')." (modify-syntax-entry ?_ "_" table) (modify-syntax-entry ?- "_" table) (modify-syntax-entry ?. "_" table) - (modify-syntax-entry ?\' "\"" table) + (modify-syntax-entry ?' "\"" table) (modify-syntax-entry ?\; "<" table) (modify-syntax-entry ?\n ">" table) (modify-syntax-entry ?\r ">" table) -- 2.39.2