Function: ielm-print-working-buffer
ielm-print-working-buffer is an interactive and byte-compiled function
defined in ielm.el.gz.
Signature
(ielm-print-working-buffer)
Documentation
Print the current IELM working buffer's name in the echo area.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ielm.el.gz
;;; Working buffer manipulation
(defun ielm-print-working-buffer nil
"Print the current IELM working buffer's name in the echo area."
(interactive)
(message "The current working buffer is: %s" (buffer-name ielm-working-buffer)))