diff options
| author | Luc Teirlinck | 2004-05-30 21:50:35 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2004-05-30 21:50:35 +0000 |
| commit | 1f3ade4f4d655af643076a7f7144910fb4eaabd2 (patch) | |
| tree | c3bf42b82ea62e968f1f84e67d4d6fcd9c2f703e /lisp/replace.el | |
| parent | ae229809f768ded8a243c670f0c7034fb8bb01f6 (diff) | |
| download | emacs-1f3ade4f4d655af643076a7f7144910fb4eaabd2.tar.gz emacs-1f3ade4f4d655af643076a7f7144910fb4eaabd2.zip | |
(query-replace-interactive): Convert defvar into defcustom.
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 e14e1314352..f7afcd594cf 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -36,9 +36,11 @@ | |||
| 36 | 36 | ||
| 37 | (defvar query-replace-history nil) | 37 | (defvar query-replace-history nil) |
| 38 | 38 | ||
| 39 | (defvar query-replace-interactive nil | 39 | (defcustom query-replace-interactive nil |
| 40 | "Non-nil means `query-replace' uses the last search string. | 40 | "Non-nil means `query-replace' uses the last search string. |
| 41 | That becomes the \"string to replace\".") | 41 | That becomes the \"string to replace\"." |
| 42 | :type 'boolean | ||
| 43 | :group 'matching) | ||
| 42 | 44 | ||
| 43 | (defcustom query-replace-from-history-variable 'query-replace-history | 45 | (defcustom query-replace-from-history-variable 'query-replace-history |
| 44 | "History list to use for the FROM argument of `query-replace' commands. | 46 | "History list to use for the FROM argument of `query-replace' commands. |