emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-29 6629e861b35 1/2: Make `dns-mode` fontify quoted values correctl


From: Stefan Kangas
Subject: emacs-29 6629e861b35 1/2: Make `dns-mode` fontify quoted values correctly
Date: Tue, 24 Oct 2023 07:00:35 -0400 (EDT)

branch: emacs-29
commit 6629e861b355366ff9d258eb02c184d219a932b8
Author: Stefan Kangas <stefankangas@gmail.com>
Commit: Stefan Kangas <stefankangas@gmail.com>

    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>.
    
    (cherry picked from commit c586d984f279aa61de4f5dfc4f6df660188dd0f6)
---
 lisp/textmodes/dns-mode.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lisp/textmodes/dns-mode.el b/lisp/textmodes/dns-mode.el
index 0167c757473..1b5f0c1d94b 100644
--- a/lisp/textmodes/dns-mode.el
+++ b/lisp/textmodes/dns-mode.el
@@ -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.")
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]