Function: prolog-do-auto-fill

prolog-do-auto-fill is a byte-compiled function defined in prolog.el.gz.

Signature

(prolog-do-auto-fill)

Documentation

Carry out Auto Fill for Prolog mode.

In effect it sets the fill-prefix when inside comments and then calls do-auto-fill.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/prolog.el.gz
(defun prolog-do-auto-fill ()
  "Carry out Auto Fill for Prolog mode.
In effect it sets the `fill-prefix' when inside comments and then calls
`do-auto-fill'."
  (let ((fill-prefix (prolog-guess-fill-prefix)))
    (do-auto-fill)
    ))