Function: ielm-display-working-buffer

ielm-display-working-buffer is an interactive and byte-compiled function defined in ielm.el.gz.

Signature

(ielm-display-working-buffer)

Documentation

Display the current IELM working buffer.

Don't forget that selecting that buffer will change its value of point to its value of window-point!

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ielm.el.gz
(defun ielm-display-working-buffer nil
  "Display the current IELM working buffer.
Don't forget that selecting that buffer will change its value of `point'
to its value of `window-point'!"
  (interactive)
  (display-buffer ielm-working-buffer)
  (ielm-print-working-buffer))