Recognize backslash in dns-mode
quoted values
* lisp/textmodes/dns-mode.el (dns-mode-syntax-table): Recognize
backslash as an escape character. (Bug#66660)
(cherry picked from commit e6f05e189d
)
This commit is contained in:
parent
6629e861b3
commit
04215e616f
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 ?\; "< " table)
|
||||||
(modify-syntax-entry ?\n "> " table)
|
(modify-syntax-entry ?\n "> " table)
|
||||||
(modify-syntax-entry ?\" "\"" table)
|
(modify-syntax-entry ?\" "\"" table)
|
||||||
|
(modify-syntax-entry ?\\ "\\" table)
|
||||||
table)
|
table)
|
||||||
"Syntax table in use in DNS master file buffers.")
|
"Syntax table in use in DNS master file buffers.")
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue