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:
parent
2e19e11638
commit
e6f05e189d
1 changed files with 1 additions and 0 deletions
|
@ -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.")
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue