Function: prolog-insert-module-modeline
prolog-insert-module-modeline is an interactive and byte-compiled
function defined in prolog.el.gz.
Signature
(prolog-insert-module-modeline)
Documentation
Insert a modeline for module specification.
This line should be first in the buffer. The module name should be written manually just before the semi-colon.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/prolog.el.gz
(defun prolog-insert-module-modeline ()
"Insert a modeline for module specification.
This line should be first in the buffer.
The module name should be written manually just before the semi-colon."
(interactive)
(insert "%%% -*- Module: ; -*-\n")
(backward-char 6))