diff options
| author | Juri Linkov | 2012-09-21 00:57:13 +0300 |
|---|---|---|
| committer | Juri Linkov | 2012-09-21 00:57:13 +0300 |
| commit | eb2deaffd17e760b3ec945c58d43080e8a44767a (patch) | |
| tree | 76bf1cbd8109f7975159bcec98bdaad2191a4547 /lisp/ChangeLog | |
| parent | 5825610b41a7cf18f52c3d891ffb8c2a8359b1a0 (diff) | |
| download | emacs-eb2deaffd17e760b3ec945c58d43080e8a44767a.tar.gz emacs-eb2deaffd17e760b3ec945c58d43080e8a44767a.zip | |
* lisp/replace.el (query-replace-read-from): Use `read-regexp' instead
of `read-from-minibuffer' when `regexp-flag' is non-nil.
(occur-read-primary-args): Use `read-regexp' instead of
`read-string'.
(multi-occur-in-matching-buffers): Use `read-regexp' instead of
`read-from-minibuffer'.
* lisp/isearch.el (isearch-occur): Use `read-regexp' instead of
`read-string'.
* lisp/dired.el (dired-read-regexp): Use `read-regexp' instead of
`read-from-minibuffer'.
* lisp/progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
of `read-string'.
Fixes: debbugs:7567
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1d4dd0ed827..f7f4193e777 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,18 @@ | |||
| 1 | 2012-09-20 Juri Linkov <juri@jurta.org> | 1 | 2012-09-20 Juri Linkov <juri@jurta.org> |
| 2 | 2 | ||
| 3 | * replace.el (query-replace-read-from): Use `read-regexp' instead | ||
| 4 | of `read-from-minibuffer' when `regexp-flag' is non-nil. | ||
| 5 | (occur-read-primary-args): Use `read-regexp' instead of | ||
| 6 | `read-string'. | ||
| 7 | (multi-occur-in-matching-buffers): Use `read-regexp' instead of | ||
| 8 | `read-from-minibuffer'. | ||
| 9 | * isearch.el (isearch-occur): Use `read-regexp' instead of | ||
| 10 | `read-string'. | ||
| 11 | * dired.el (dired-read-regexp): Use `read-regexp' instead of | ||
| 12 | `read-from-minibuffer'. | ||
| 13 | * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead | ||
| 14 | of `read-string'. (Bug#7567) | ||
| 15 | |||
| 3 | * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS | 16 | * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS |
| 4 | and allow accepting a list of strings prepended to a list of | 17 | and allow accepting a list of strings prepended to a list of |
| 5 | standard default values. Doc fix. (Bug#12321) | 18 | standard default values. Doc fix. (Bug#12321) |