Variable: prolog-parse-mode
prolog-parse-mode is a customizable variable defined in prolog.el.gz.
Value
beg-of-clause
Documentation
The parse mode used (decides from which point parsing is done).
Legal values:
beg-of-line - starts parsing at the beginning of a line, unless the
previous line ends with a backslash. Fast, but has
problems detecting multiline /* */ comments.
beg-of-clause - starts parsing at the beginning of the current clause.
Slow, but copes better with /* */ comments.
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-parse-mode 'beg-of-clause
"The parse mode used (decides from which point parsing is done).
Legal values:
`beg-of-line' - starts parsing at the beginning of a line, unless the
previous line ends with a backslash. Fast, but has
problems detecting multiline /* */ comments.
`beg-of-clause' - starts parsing at the beginning of the current clause.
Slow, but copes better with /* */ comments."
:version "24.1"
:group 'prolog-indentation
:type '(choice (const :value beg-of-line)
(const :value beg-of-clause)))