Function: checkdoc-output-mode

checkdoc-output-mode is an interactive and byte-compiled function defined in checkdoc.el.gz.

Signature

(checkdoc-output-mode)

Documentation

Set up the major mode for the buffer containing the list of errors.

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

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/checkdoc.el.gz
(define-derived-mode checkdoc-output-mode compilation-mode "Checkdoc"
  "Set up the major mode for the buffer containing the list of errors."
  (setq-local compilation-error-regexp-alist
              checkdoc-output-error-regex-alist)
  (setq-local compilation-mode-font-lock-keywords
              checkdoc-output-font-lock-keywords))