diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-07-28 11:48:32 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-07-28 12:26:08 +0200 |
commit | 740ab86062e8efd6e402a868b1b7ed808d795c40 (patch) | |
tree | 92e39810e5b2413015cd318041ca7e24e01b802c /lisp/textmodes/conf-mode.el | |
parent | 65274ab1c96fbd4bbd6303dc6c6567f1cd2470bc (diff) | |
download | emacs-740ab86062e8efd6e402a868b1b7ed808d795c40.tar.gz |
Clean up conf-mode-syntax-table slightly
* lisp/textmodes/conf-mode.el (conf-mode-syntax-table): Remove
superfluous backslash in ?\'.
Diffstat (limited to 'lisp/textmodes/conf-mode.el')
-rw-r--r-- | lisp/textmodes/conf-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |