Function: ielm--input-history-writer

ielm--input-history-writer is a byte-compiled function defined in ielm.el.gz.

Signature

(ielm--input-history-writer BUF)

Documentation

Return a function writing IELM input history to BUF.

Source Code

;; Defined in /usr/src/emacs/lisp/ielm.el.gz
(defun ielm--input-history-writer (buf)
  "Return a function writing IELM input history to BUF."
  (lambda ()
    (with-current-buffer buf
      (comint-write-input-ring))))