Function: idlwave-indent-left-margin
idlwave-indent-left-margin is a byte-compiled function defined in
idlwave.el.gz.
Signature
(idlwave-indent-left-margin COL)
Documentation
Indent the current line to column COL.
Indents such that first non-whitespace character is at column COL Inserts spaces before markers at point.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-indent-left-margin (col)
"Indent the current line to column COL.
Indents such that first non-whitespace character is at column COL
Inserts spaces before markers at point."
(save-excursion
(beginning-of-line)
(delete-horizontal-space)
(idlwave-indent-to col)))