Function: comint-indent-input-region-default
comint-indent-input-region-default is a byte-compiled function defined
in comint.el.gz.
Signature
(comint-indent-input-region-default START END)
Documentation
Indent comint process output and input between START and END.
Output text between START and END is indented according to the
default value of indent-region-function and input text is
indented in the indirect buffer created by
comint-indirect-buffer, which see.
Source Code
;; Defined in /usr/src/emacs/lisp/comint.el.gz
(defun comint-indent-input-region-default (start end)
"Indent comint process output and input between START and END.
Output text between START and END is indented according to the
default value of `indent-region-function' and input text is
indented in the indirect buffer created by
`comint-indirect-buffer', which see."
(comint-indent-input-region (default-value 'indent-line-function)
start end))