Variable: checkdoc--argument-missing-flag

checkdoc--argument-missing-flag is a variable defined in checkdoc.el.gz.

Value

t

Documentation

Non-nil means warn if arguments are missing from docstring.

This variable is intended for use on Emacs itself, where the large number of libraries means it is impractical to fix all of these warnings en masse. In almost any other case, setting this to anything but t is likely to be counter-productive.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/checkdoc.el.gz
;; This is how you can use checkdoc to make mass fixes on the Emacs
;; source tree:
;;
;; (setq checkdoc--argument-missing-flag nil)      ; optional
;; (setq checkdoc--disambiguate-symbol-flag nil)   ; optional
;; (setq checkdoc--interactive-docstring-flag nil) ; optional
;; (setq checkdoc-verb-check-experimental-flag nil)
;; Then use `M-x find-dired' ("-name '*.el'") and `M-x checkdoc-dired'

(defvar checkdoc--argument-missing-flag t
  "Non-nil means warn if arguments are missing from docstring.
This variable is intended for use on Emacs itself, where the
large number of libraries means it is impractical to fix all
of these warnings en masse.  In almost any other case, setting
this to anything but t is likely to be counter-productive.")