Variable: minibuffer-history-variable

minibuffer-history-variable is a variable defined in minibuf.c.

Value

minibuffer-history

Documentation

History list symbol to add minibuffer values to.

Each string of minibuffer input, as it appears on exit from the minibuffer, is added with

  (set minibuffer-history-variable
       (cons STRING (symbol-value minibuffer-history-variable)))

 If the variable is t, no history is recorded.

Source Code

// Defined in /usr/src/emacs/src/minibuf.c
  DEFVAR_LISP ("minibuffer-history-variable", Vminibuffer_history_variable,
	       doc: /* History list symbol to add minibuffer values to.
Each string of minibuffer input, as it appears on exit from the minibuffer,
is added with

  (set minibuffer-history-variable
       (cons STRING (symbol-value minibuffer-history-variable)))

 If the variable is t, no history is recorded.  */);