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."
(unless (or inhibit-auto-fill
(and comment-start
comment-auto-fill-only-comments
(not (nth 4 (syntax-ppss)))))
(funcall auto-fill-function)))