Function: named-boot-generic-mode
named-boot-generic-mode is an interactive and byte-compiled function
defined in generic-x.el.gz.
Signature
(named-boot-generic-mode)
Documentation
Named-Boot-Generic mode.
This a generic mode defined with define-generic-mode.
It runs named-boot-generic-mode-hook as the last thing it does.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/generic-x.el.gz
(define-generic-mode named-boot-generic-mode
;; List of comment characters
'(?\;)
;; List of keywords
'("cache" "primary" "secondary" "forwarders" "limit" "options"
"directory" "check-names")
;; List of additional font-lock-expressions
'(("\\([0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+\\)" 1 font-lock-constant-face)
("^directory\\s-+\\(.*\\)" 1 font-lock-variable-name-face)
("^\\(primary\\|cache\\)\\s-+\\([.A-Za-z]+\\)\\s-+\\(.*\\)"
(2 font-lock-variable-name-face)
(3 font-lock-constant-face)))
;; List of additional automode-alist expressions
'("/etc/named\\.boot\\'")
;; List of set up functions to call
nil)