Function: c-guess-buffer-no-install
c-guess-buffer-no-install is an autoloaded, interactive and
byte-compiled function defined in cc-guess.el.gz.
Signature
(c-guess-buffer-no-install &optional ACCUMULATE)
Documentation
Guess the style on the whole current buffer; don't install it.
If given a prefix argument (or if the optional argument ACCUMULATE is non-nil) then the previous guess is extended, otherwise a new guess is made from scratch.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-guess.el.gz
;;;###autoload
(defun c-guess-buffer-no-install (&optional accumulate)
"Guess the style on the whole current buffer; don't install it.
If given a prefix argument (or if the optional argument ACCUMULATE is
non-nil) then the previous guess is extended, otherwise a new guess is
made from scratch."
(interactive "P")
(c-guess-region-no-install (point-min)
(point-max)
accumulate))