From: Stefan Kangas Date: Tue, 5 Sep 2023 21:06:21 +0000 (+0200) Subject: Make `dns-mode` fontify quoted values correctly X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6629e861b355366ff9d258eb02c184d219a932b8;p=emacs.git Make `dns-mode` fontify quoted values correctly * lisp/textmodes/dns-mode.el (dns-mode-syntax-table): Fontify quoted values correctly. (Bug#62214) Suggested by Trent W. Buck . (cherry picked from commit c586d984f279aa61de4f5dfc4f6df660188dd0f6) --- diff --git a/lisp/textmodes/dns-mode.el b/lisp/textmodes/dns-mode.el index 0167c757473..1b5f0c1d94b 100644 --- a/lisp/textmodes/dns-mode.el +++ b/lisp/textmodes/dns-mode.el @@ -131,6 +131,7 @@ manually with \\[dns-mode-soa-increment-serial]." (let ((table (make-syntax-table))) (modify-syntax-entry ?\; "< " table) (modify-syntax-entry ?\n "> " table) + (modify-syntax-entry ?\" "\"" table) table) "Syntax table in use in DNS master file buffers.")