diff options
Diffstat (limited to 'lisp/replace.el')
| -rw-r--r-- | lisp/replace.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index ebe3088c04e..07d5892e458 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -43,7 +43,8 @@ The value of this variable should be a symbol; that symbol | |||
| 43 | is used as a variable to hold a history list for the strings | 43 | is used as a variable to hold a history list for the strings |
| 44 | or patterns to be replaced." | 44 | or patterns to be replaced." |
| 45 | :group 'matching | 45 | :group 'matching |
| 46 | :type 'symbol) | 46 | :type 'symbol |
| 47 | :version "20.3") | ||
| 47 | 48 | ||
| 48 | (defcustom query-replace-to-history-variable 'query-replace-history | 49 | (defcustom query-replace-to-history-variable 'query-replace-history |
| 49 | "History list to use for the TO argument of query-replace commands. | 50 | "History list to use for the TO argument of query-replace commands. |
| @@ -51,7 +52,8 @@ The value of this variable should be a symbol; that symbol | |||
| 51 | is used as a variable to hold a history list for replacement | 52 | is used as a variable to hold a history list for replacement |
| 52 | strings or patterns." | 53 | strings or patterns." |
| 53 | :group 'matching | 54 | :group 'matching |
| 54 | :type 'symbol) | 55 | :type 'symbol |
| 56 | :version "20.3") | ||
| 55 | 57 | ||
| 56 | (defun query-replace-read-args (string regexp-flag) | 58 | (defun query-replace-read-args (string regexp-flag) |
| 57 | (let (from to) | 59 | (let (from to) |