Variable: query-replace-to-history-variable

query-replace-to-history-variable is a customizable variable defined in replace.el.gz.

Value

query-replace-history

Documentation

History list to use for the TO 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 replacement strings or patterns.

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-to-history-variable 'query-replace-history
  "History list to use for the TO 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 replacement
strings or patterns."
  :group 'matching
  :type 'symbol
  :version "20.3")