Variable: dcl-tab-always-indent
dcl-tab-always-indent is a customizable variable defined in
dcl-mode.el.gz.
Value
t
Documentation
Controls the operation of the TAB key in DCL mode.
If t, pressing TAB always indents the current line. If nil, pressing TAB indents the current line if point is at the left margin. Data lines (i.e. lines not part of a command line or continuation line) are never indented.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/dcl-mode.el.gz
(defcustom dcl-tab-always-indent t
"Controls the operation of the TAB key in DCL mode.
If t, pressing TAB always indents the current line.
If nil, pressing TAB indents the current line if point is at the left margin.
Data lines (i.e. lines not part of a command line or continuation line) are
never indented."
:type 'boolean)