Function: allout-infer-body-reindent

allout-infer-body-reindent is a byte-compiled function defined in allout.el.gz.

Signature

(allout-infer-body-reindent)

Documentation

Determine proper setting for allout-reindent-bodies.

Depends on default setting of allout-reindent-bodies (which see) and presence of setting for comment-start, to tell whether the file is programming code.

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_   > allout-infer-body-reindent ()
(defun allout-infer-body-reindent ()
  "Determine proper setting for `allout-reindent-bodies'.

Depends on default setting of `allout-reindent-bodies' (which see)
and presence of setting for `comment-start', to tell whether the
file is programming code."
  (if (and allout-reindent-bodies
	   comment-start
	   (not (eq 'force allout-reindent-bodies)))
      (setq allout-reindent-bodies nil)))