Variable: ielm-history-file-name

ielm-history-file-name is a customizable variable defined in ielm.el.gz.

Value

"~/.emacs.d/ielm-history.eld"

Documentation

If non-nil, name of the file to read/write IELM input history.

This variable was added, or its default value changed, in Emacs 30.1.

Probably introduced at or before Emacs version 30.1.

Source Code

;; Defined in /usr/src/emacs/lisp/ielm.el.gz
(defcustom ielm-history-file-name
  (locate-user-emacs-file "ielm-history.eld")
  "If non-nil, name of the file to read/write IELM input history."
  :type '(choice (const :tag "Disable input history" nil)
                 file)
  :version "30.1")