Variable: checkdoc-symbol-words

checkdoc-symbol-words is a customizable variable defined in checkdoc.el.gz.

Value

("beginning-of-buffer" "beginning-of-line" "byte-code" "byte-compile"
 "command-line" "end-of-buffer" "end-of-line" "major-mode" "point-max"
 "point-min" "syntax-table" "top-level" "user-error" "version-control"
 "window-system")

Documentation

A list of symbol names (strings) which also happen to make good words.

These words are ignored when unquoted symbols are searched for. This should be set in an Emacs Lisp file's local variables.

This variable was added, or its default value changed, in Emacs 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/checkdoc.el.gz
(defcustom checkdoc-symbol-words
  '("beginning-of-buffer" "beginning-of-line" "byte-code"
    "byte-compile" "command-line" "end-of-buffer" "end-of-line"
    "major-mode" "point-max" "point-min" "syntax-table"
    "top-level" "user-error" "version-control" "window-system")
  "A list of symbol names (strings) which also happen to make good words.
These words are ignored when unquoted symbols are searched for.
This should be set in an Emacs Lisp file's local variables."
  :type '(repeat (string :tag "Word"))
  :version "28.1")