From c586d984f279aa61de4f5dfc4f6df660188dd0f6 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Tue, 5 Sep 2023 23:06:21 +0200 Subject: [PATCH] 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 . --- lisp/textmodes/dns-mode.el | 1 + 1 file changed, 1 insertion(+) 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.") -- 2.39.2