Variable: allout-inhibit-auto-fill

allout-inhibit-auto-fill is a customizable and buffer-local variable defined in allout.el.gz.

Documentation

If non-nil, auto-fill will be inhibited in the allout buffers.

You can customize this setting to set it for all allout buffers, or set it in individual buffers if you want to inhibit auto-fill only in particular buffers. (You could use a function on allout-mode-hook to inhibit auto-fill according, eg, to the major mode.)

If you don't set this and auto-fill-mode is enabled, allout will use the value that normal-auto-fill-function, if any, when allout mode starts, or else allout's special hanging-indent maintaining auto-fill function, allout-auto-fill.

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_  = allout-inhibit-auto-fill
(defcustom allout-inhibit-auto-fill nil
  "If non-nil, auto-fill will be inhibited in the allout buffers.

You can customize this setting to set it for all allout buffers, or set it
in individual buffers if you want to inhibit auto-fill only in particular
buffers.  (You could use a function on `allout-mode-hook' to inhibit
auto-fill according, eg, to the major mode.)

If you don't set this and `auto-fill-mode' is enabled, allout will use the
value that `normal-auto-fill-function', if any, when allout mode starts, or
else allout's special hanging-indent maintaining auto-fill function,
`allout-auto-fill'."
  :type 'boolean
  :group 'allout)