Function: net-utils-mode
net-utils-mode is a byte-compiled function defined in net-utils.el.gz.
Signature
(net-utils-mode)
Documentation
Major mode for interacting with an external network utility.
In addition to any hooks its parent mode special-mode might have run,
this mode runs the hook net-utils-mode-hook, as the final or
penultimate step during initialization.
Source Code
;; Defined in /usr/src/emacs/lisp/net/net-utils.el.gz
(define-derived-mode net-utils-mode special-mode "NetworkUtil"
"Major mode for interacting with an external network utility."
:interactive nil
(setq-local font-lock-defaults
'((net-utils-font-lock-keywords)))
(setq-local revert-buffer-function #'net-utils--revert-function))