Variable: c-guess-region-max

c-guess-region-max is a customizable variable defined in cc-guess.el.gz.

Value

50000

Documentation

The maximum region size for examining indent information with c-guess.

It takes a long time to examine indent information from a large region; this option helps you limit that time. nil means no limit.

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-region-max 50000
  "The maximum region size for examining indent information with `c-guess'.
It takes a long time to examine indent information from a large region;
this option helps you limit that time.  nil means no limit."
  :version "24.1"
  :type 'integer
  :group 'c)