Recognize backslash in dns-mode quoted values

* lisp/textmodes/dns-mode.el (dns-mode-syntax-table): Recognize
backslash as an escape character.  (Bug#66660)
This commit is contained in:
Lassi Kortela 2023-10-21 13:10:50 +03:00 committed by Stefan Kangas
parent 2e19e11638
commit e6f05e189d

View file

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