Variable: antlr-indent-comment

antlr-indent-comment is a customizable variable defined in antlr-mode.el.gz.

Value

tab

Documentation

Non-nil, if the indentation should touch lines in block comments.

If nil, no continuation line of a block comment is changed. If t, they are changed according to c-indent-line. When not nil and not t, they are only changed by M-x antlr-indent-command (antlr-indent-command).

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/antlr-mode.el.gz
(defcustom antlr-indent-comment 'tab
  "Non-nil, if the indentation should touch lines in block comments.
If nil, no continuation line of a block comment is changed.  If t, they
are changed according to `c-indent-line'.  When not nil and not t,
they are only changed by \\[antlr-indent-command]."
  :type '(radio (const :tag "No" nil)
		(const :tag "Always" t)
		(sexp :tag "With TAB" :format "%t" :value tab)))