Function: ielm-tab

ielm-tab is an interactive and byte-compiled function defined in ielm.el.gz.

Signature

(ielm-tab)

Documentation

Indent or complete.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ielm.el.gz
;;; Completion stuff

(defun ielm-tab ()
  "Indent or complete."
  (interactive)
  (if (or (eq (preceding-char) ?\n)
          (eq (char-syntax (preceding-char)) ?\s))
      (ielm-indent-line)
    (completion-at-point)))