Variable: prolog-electric-dot-full-predicate-template

prolog-electric-dot-full-predicate-template is a customizable variable defined in prolog.el.gz.

Value

nil

Documentation

If nil, electric dot inserts only the current predicate's name and ( for recursive calls or new clause heads. Non-nil means to also insert enough commas to cover the predicate's arity and ), and dot and newline for recursive calls.

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/prolog.el.gz
(defcustom prolog-electric-dot-full-predicate-template nil
  "If nil, electric dot inserts only the current predicate's name and `('
for recursive calls or new clause heads.  Non-nil means to also
insert enough commas to cover the predicate's arity and `)',
and dot and newline for recursive calls."
  :version "24.1"
  :group 'prolog-keyboard
  :type 'boolean)