Function: cperl-make-indent

cperl-make-indent is a byte-compiled function defined in cperl-mode.el.gz.

Signature

(cperl-make-indent COLUMN &optional MINIMUM KEEP)

Documentation

Indent from point with tabs and spaces until COLUMN is reached.

MINIMUM is like in indent-to, which see. Unless KEEP, removes the old indentation.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defun cperl-make-indent (column &optional minimum keep)
  "Indent from point with tabs and spaces until COLUMN is reached.
MINIMUM is like in `indent-to', which see.
Unless KEEP, removes the old indentation."
  (or keep
      (delete-horizontal-space))
  (indent-to column minimum))