Function: internal-auto-fill

internal-auto-fill is a byte-compiled function defined in simple.el.gz.

Signature

(internal-auto-fill)

Documentation

The function called by self-insert-command to perform auto-filling.

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun internal-auto-fill ()
  "The function called by `self-insert-command' to perform auto-filling."
  (when (or (not comment-start)
            (not comment-auto-fill-only-comments)
            (nth 4 (syntax-ppss)))
    (funcall auto-fill-function)))