Variable: query-replace-from-history-variable
query-replace-from-history-variable is a customizable variable defined
in replace.el.gz.
Value
query-replace-history
Documentation
History list to use for the FROM argument of query-replace commands.
The value of this variable should be a symbol; that symbol is used as a variable to hold a history list for the strings or patterns to be replaced.
This variable was added, or its default value changed, in Emacs 20.3.
Source Code
;; Defined in /usr/src/emacs/lisp/replace.el.gz
(defcustom query-replace-from-history-variable 'query-replace-history
"History list to use for the FROM argument of `query-replace' commands.
The value of this variable should be a symbol; that symbol
is used as a variable to hold a history list for the strings
or patterns to be replaced."
:group 'matching
:type 'symbol
:version "20.3")