]> git.eshelyaron.com Git - emacs.git/commitdiff
Make `dns-mode` fontify quoted values correctly
authorStefan Kangas <stefankangas@gmail.com>
Tue, 5 Sep 2023 21:06:21 +0000 (23:06 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Tue, 24 Oct 2023 10:59:42 +0000 (12:59 +0200)
* lisp/textmodes/dns-mode.el (dns-mode-syntax-table): Fontify
quoted values correctly.  (Bug#62214)
Suggested by Trent W. Buck <trentbuck@gmail.com>.

(cherry picked from commit c586d984f279aa61de4f5dfc4f6df660188dd0f6)

lisp/textmodes/dns-mode.el

index 0167c75747399279b084b3c2e59626fec94728ac..1b5f0c1d94bc528ebb98cfc21c5b41db3cf378ea 100644 (file)
@@ -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.")