Function: ielm-send-input

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

Signature

(ielm-send-input &optional FOR-EFFECT)

Documentation

Evaluate the Emacs Lisp expression after the prompt.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ielm.el.gz
(defun ielm-send-input (&optional for-effect)
  "Evaluate the Emacs Lisp expression after the prompt."
  (interactive)
  (let (ielm-input)                     ; set by ielm-input-sender
    (comint-send-input)                 ; update history, markers etc.
    (ielm-eval-input ielm-input for-effect)))