Variable: checkdoc-style-functions

checkdoc-style-functions is a variable defined in checkdoc.el.gz.

Value

nil

Documentation

Hook run after the standard style check is completed.

All functions must return nil or a string representing the error found. Useful for adding new user implemented commands.

Each hook is called with two parameters, (DEFUNINFO ENDPOINT). DEFUNINFO is the return value of checkdoc-defun-info. ENDPOINT is the location of end of the documentation string.

Probably introduced at or before Emacs version 24.3.

Aliases

checkdoc-style-hooks (obsolete since 24.3)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/checkdoc.el.gz
(defvar checkdoc-style-functions nil
  "Hook run after the standard style check is completed.
All functions must return nil or a string representing the error found.
Useful for adding new user implemented commands.

Each hook is called with two parameters, (DEFUNINFO ENDPOINT).
DEFUNINFO is the return value of `checkdoc-defun-info'.  ENDPOINT is the
location of end of the documentation string.")