Function: nslookup-mode

nslookup-mode is a byte-compiled function defined in net-utils.el.gz.

Signature

(nslookup-mode)

Documentation

Major mode for interacting with the nslookup program.

In addition to any hooks its parent mode comint-mode might have run, this mode runs the hook nslookup-mode-hook, as the final or penultimate step during initialization.

TAB completion-at-point

Source Code

;; Defined in /usr/src/emacs/lisp/net/net-utils.el.gz
(define-derived-mode nslookup-mode comint-mode "Nslookup"
  "Major mode for interacting with the nslookup program."
  :interactive nil
  (setq-local font-lock-defaults
              '((nslookup-font-lock-keywords)))
  (setq comint-prompt-regexp nslookup-prompt-regexp)
  (setq comint-input-autoexpand t))