From: Lassi Kortela Date: Sat, 21 Oct 2023 10:10:50 +0000 (+0300) Subject: Recognize backslash in `dns-mode` quoted values X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=04215e616f58ea9849bfc4e3dce08eee2debd301;p=emacs.git Recognize backslash in `dns-mode` quoted values * lisp/textmodes/dns-mode.el (dns-mode-syntax-table): Recognize backslash as an escape character. (Bug#66660) (cherry picked from commit e6f05e189db73a0f0b29f987381ffef61a409232) --- diff --git a/lisp/textmodes/dns-mode.el b/lisp/textmodes/dns-mode.el index 1b5f0c1d94b..bc3fa8d8e3a 100644 --- a/lisp/textmodes/dns-mode.el +++ b/lisp/textmodes/dns-mode.el @@ -132,6 +132,7 @@ manually with \\[dns-mode-soa-increment-serial]." (modify-syntax-entry ?\; "< " table) (modify-syntax-entry ?\n "> " table) (modify-syntax-entry ?\" "\"" table) + (modify-syntax-entry ?\\ "\\" table) table) "Syntax table in use in DNS master file buffers.")