Function: dig-mode
dig-mode is an interactive and byte-compiled function defined in
dig.el.gz.
Signature
(dig-mode)
Documentation
Major mode for displaying dig output.
In addition to any hooks its parent mode special-mode might have
run, this mode runs the hook dig-mode-hook, as the final or
penultimate step during initialization.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/dig.el.gz
(define-derived-mode dig-mode special-mode "Dig"
"Major mode for displaying dig output."
(buffer-disable-undo)
(setq-local font-lock-defaults '(dig-font-lock-keywords t))
;; FIXME: what is this for?? --Stef M
(font-lock-set-defaults))