summaryrefslogtreecommitdiff
path: root/lisp/textmodes/dns-mode.el
diff options
context:
space:
mode:
authorLassi Kortela <lassi@lassi.io>2022-06-13 16:32:45 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-06-13 16:32:45 +0200
commit5f5617727d91664bb3e4e559a1347bec86759846 (patch)
treed7fb112de0c92abde34f94529f52c8acf6e11d8c /lisp/textmodes/dns-mode.el
parent57cd069f73808f862c326bac4191ab507f3c973f (diff)
downloademacs-5f5617727d91664bb3e4e559a1347bec86759846.tar.gz
emacs-5f5617727d91664bb3e4e559a1347bec86759846.tar.bz2
emacs-5f5617727d91664bb3e4e559a1347bec86759846.zip
Match complete words in dns-mode
* lisp/textmodes/dns-mode.el (dns-mode-font-lock-keywords): Match complete words like SOA and not all words that contain the string SOA (bug#55944). Copyright-paperwork-exempt: yes
Diffstat (limited to 'lisp/textmodes/dns-mode.el')
-rw-r--r--lisp/textmodes/dns-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/dns-mode.el b/lisp/textmodes/dns-mode.el
index d4acbe24ebb..42d547504c1 100644
--- a/lisp/textmodes/dns-mode.el
+++ b/lisp/textmodes/dns-mode.el
@@ -110,11 +110,11 @@
"26.1" 'set)
(defcustom dns-mode-font-lock-keywords
- `((,(concat "^\\$" (regexp-opt dns-mode-control-entities))
+ `((,(concat "^\\$" (regexp-opt dns-mode-control-entities) "\\>")
0 ,dns-mode-control-entity-face)
("^\\$[a-z0-9A-Z]+" 0 ,dns-mode-bad-control-entity-face)
- (,(regexp-opt dns-mode-classes) 0 ,dns-mode-class-face)
- (,(regexp-opt dns-mode-types) 0 ,dns-mode-type-face))
+ (,(regexp-opt dns-mode-classes 'words) 0 ,dns-mode-class-face)
+ (,(regexp-opt dns-mode-types 'words) 0 ,dns-mode-type-face))
"Font lock keywords used to highlight text in DNS master file mode."
:version "26.1"
:type 'sexp)