Function: idlwave-indent-to
idlwave-indent-to is a byte-compiled function defined in
idlwave.el.gz.
Signature
(idlwave-indent-to COL &optional MIN)
Documentation
Indent from point with spaces until column COL.
Inserts space before markers at point.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-indent-to (col &optional min)
"Indent from point with spaces until column COL.
Inserts space before markers at point."
(if (not min) (setq min 0))
(insert-before-markers
(make-string (max min (- col (current-column))) ?\ )))