Variable: checkdoc-autofix-flag

checkdoc-autofix-flag is a customizable variable defined in checkdoc.el.gz.

Value

semiautomatic

Documentation

Non-nil means attempt auto-fixing of doc strings.

If this value is the symbol query, then the user is queried before any change is made. If the value is automatic, then all changes are made without asking unless the change is very complex. If the value is semiautomatic or any other value, then simple fixes are made without asking, and complex changes are made by asking the user first. The value never is the same as nil, never ask or change anything.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/checkdoc.el.gz
(defcustom checkdoc-autofix-flag 'semiautomatic
  "Non-nil means attempt auto-fixing of doc strings.
If this value is the symbol `query', then the user is queried before
any change is made.  If the value is `automatic', then all changes are
made without asking unless the change is very complex.  If the value
is `semiautomatic' or any other value, then simple fixes are made
without asking, and complex changes are made by asking the user first.
The value `never' is the same as nil, never ask or change anything."
  :type '(choice (const automatic)
          (const query)
          (const never)
          (other :tag "semiautomatic" semiautomatic)))