Variable: dns-mode-font-lock-keywords

dns-mode-font-lock-keywords is a customizable variable defined in dns-mode.el.gz.

Value

(("^\\$\\(?:INCLUDE\\|ORIGIN\\|TTL\\)\\>" 0 'dns-mode-control-entity)
 ("^\\$[a-z0-9A-Z]+" 0 'dns-mode-bad-control-entity)
 ("\\<\\(C[HS]\\|HS\\|IN\\)\\>" 0 'dns-mode-class)
 ("\\<\\(A\\(?:6\\|AAA\\|FSDB\\|PL\\|TMA\\|XFR\\)?\\|C\\(?:AA\\|ERT\\|NAME\\)\\|D\\(?:N\\(?:AME\\|SKEY\\)\\|S\\)\\|EID\\|G\\(?:ID\\|POS\\)\\|HINFO\\|I\\(?:SDN\\|XFR\\)\\|K\\(?:EY\\|X\\)\\|LOC\\|M\\(?:AIL[AB]\\|INFO\\|[BDFGRX]\\)\\|N\\(?:APTR\\|IMLOC\\|S\\(?:AP\\|EC3?\\)?\\|ULL\\|XT\\)\\|OPT\\|P\\(?:TR\\|X\\)\\|R\\(?:RSIG\\|[PT]\\)\\|S\\(?:I\\(?:G\\|NK\\)\\|OA\\|RV\\|SHFP\\)\\|T\\(?:KEY\\|LSA\\|SIG\\|XT\\)\\|U\\(?:I\\(?:D\\|NFO\\)\\|NSPEC\\)\\|WKS\\|X25\\)\\>"
  0 'dns-mode-type))

Documentation

Font lock keywords used to highlight text in DNS master file mode.

This variable was added, or its default value changed, in Emacs 26.1.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/dns-mode.el.gz
(defcustom dns-mode-font-lock-keywords
  `((,(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 '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)