Function: minibuffer-history-value

minibuffer-history-value is a byte-compiled function defined in simple.el.gz.

Signature

(minibuffer-history-value)

Documentation

Return the value of the minibuffer input history list.

If minibuffer-history-variable points to a buffer-local variable and the minibuffer is active, return the buffer-local value for the buffer that was current when the minibuffer was activated.

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun minibuffer-history-value ()
  "Return the value of the minibuffer input history list.
If `minibuffer-history-variable' points to a buffer-local variable and
the minibuffer is active, return the buffer-local value for the buffer
that was current when the minibuffer was activated."
  (buffer-local-value minibuffer-history-variable
                      (window-buffer (minibuffer-selected-window))))