1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

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 <trentbuck@gmail.com>.
This commit is contained in:
Stefan Kangas 2023-09-05 23:06:21 +02:00
parent cd6dcfad10
commit c586d984f2

View 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.")