Function: prolog-insert-next-clause
prolog-insert-next-clause is an interactive and byte-compiled function
defined in prolog.el.gz.
Signature
(prolog-insert-next-clause)
Documentation
Insert newline and the name of the current clause.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/prolog.el.gz
(defun prolog-insert-next-clause ()
"Insert newline and the name of the current clause."
(interactive)
(insert "\n")
(prolog-insert-predicate-template))