Variable: c-guess-offset-threshold

c-guess-offset-threshold is a customizable variable defined in cc-guess.el.gz.

Value

10

Documentation

Threshold of acceptable offsets when examining indent information.

Discard an examined offset if its absolute value is greater than this.

The offset of a line included in the indent information returned by c-guess-basic-syntax.

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

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-guess.el.gz
(defcustom c-guess-offset-threshold 10
  "Threshold of acceptable offsets when examining indent information.
Discard an examined offset if its absolute value is greater than this.

The offset of a line included in the indent information returned by
`c-guess-basic-syntax'."
  :version "24.1"
  :type 'integer
  :group 'c)