Function: ielm-indent-line

ielm-indent-line is a byte-compiled function defined in ielm.el.gz.

Signature

(ielm-indent-line)

Documentation

Indent the current line as Lisp code if it is not a prompt line.

Source Code

;; Defined in /usr/src/emacs/lisp/ielm.el.gz
(defun ielm-indent-line nil
  "Indent the current line as Lisp code if it is not a prompt line."
  (when (save-excursion (comint-bol t) (bolp))
    (lisp-indent-line)))