]> git.eshelyaron.com Git - emacs.git/commitdiff
Recognize backslash in `dns-mode` quoted values
authorLassi Kortela <lassi@lassi.io>
Sat, 21 Oct 2023 10:10:50 +0000 (13:10 +0300)
committerStefan Kangas <stefankangas@gmail.com>
Sat, 21 Oct 2023 10:28:34 +0000 (12:28 +0200)
* lisp/textmodes/dns-mode.el (dns-mode-syntax-table): Recognize
backslash as an escape character.  (Bug#66660)

lisp/textmodes/dns-mode.el

index 1b5f0c1d94bc528ebb98cfc21c5b41db3cf378ea..bc3fa8d8e3aab6e1ec42f8d5cc97fc62f15ef728 100644 (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.")