Variable: antlr-options-push-mark
antlr-options-push-mark is a customizable variable defined in
antlr-mode.el.gz.
Value
t
Documentation
Non-nil, if inserting an option should set & push mark.
If nil, never set mark when inserting an option with command
M-x antlr-insert-option (antlr-insert-option). If t, always set mark via push-mark. If a
number, only set mark if point was outside the options area before and
the number of lines between point and the insert position is greater
than this value. Otherwise, only set mark if point was outside the
options area before.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/antlr-mode.el.gz
(defcustom antlr-options-push-mark t
"Non-nil, if inserting an option should set & push mark.
If nil, never set mark when inserting an option with command
\\[antlr-insert-option]. If t, always set mark via `push-mark'. If a
number, only set mark if point was outside the options area before and
the number of lines between point and the insert position is greater
than this value. Otherwise, only set mark if point was outside the
options area before."
:type '(radio (const :tag "No" nil)
(const :tag "Always" t)
(integer :tag "Lines between" :value 10)
(sexp :tag "If outside options" :format "%t" :value outside)))