Function: dcl-indent-continuation-line
dcl-indent-continuation-line is a byte-compiled function defined in
dcl-mode.el.gz.
Signature
(dcl-indent-continuation-line)
Documentation
Indent a line known to be a continuation line.
Notice that no special treatment is made for labels. They have to be on the first part on a command line to be taken into consideration.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/dcl-mode.el.gz
;;;-------------------------------------------------------------------------
(defun dcl-indent-continuation-line ()
"Indent a line known to be a continuation line.
Notice that no special treatment is made for labels. They have to be
on the first part on a command line to be taken into consideration."
(let ((indent (dcl-calc-continuation-indent)))
(save-excursion
(beginning-of-line)
(re-search-forward "^[ \t]*")
(dcl-indent-to indent))
(skip-chars-forward " \t")))