Function: ielm--write-history-on-interrupt
ielm--write-history-on-interrupt is a byte-compiled function defined
in ielm.el.gz.
Signature
(ielm--write-history-on-interrupt PROC GROUP)
Documentation
Save the IELM input history when the process is interrupted.
Source Code
;; Defined in /usr/src/emacs/lisp/ielm.el.gz
(defun ielm--write-history-on-interrupt (_proc _group)
"Save the IELM input history when the process is interrupted."
(funcall (ielm--input-history-writer (current-buffer)))
;; Let the rest of the hook functions run as well.
nil)