Variable: net-utils-mode-hook

net-utils-mode-hook is a variable defined in net-utils.el.gz.

Value

nil

Documentation

Hook run after entering net-utils-mode.

No problems result if this variable is not bound. add-hook automatically binds it. (This is true for all hook variables.)

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))