diff options
| author | Juri Linkov | 2013-05-28 01:42:11 +0300 |
|---|---|---|
| committer | Juri Linkov | 2013-05-28 01:42:11 +0300 |
| commit | 66fc57e3cdc9ffc2bed7a457a39a210fcf773e98 (patch) | |
| tree | 68dc621e5e72aa29961545e7d69dd0b0d0f67d5b /lisp/ChangeLog | |
| parent | 6ef3db10430c653e302ca5983ade6f8eaa186f85 (diff) | |
| download | emacs-66fc57e3cdc9ffc2bed7a457a39a210fcf773e98.tar.gz emacs-66fc57e3cdc9ffc2bed7a457a39a210fcf773e98.zip | |
* lisp/isearch.el (isearch-filter-predicates): Rename from `isearch-filter-predicate'.
Doc fix.
(isearch-message-prefix): Display text from the property
`isearch-message-prefix' of the currently active filters.
(isearch-search): Don't compare `isearch-filter-predicate' with
`isearch-filter-visible'. Call `run-hook-with-args-until-failure'
on `isearch-filter-predicates'. Also check `search-invisible' for t
or call `isearch-range-invisible'.
(isearch-filter-visible): Make obsolete.
(isearch-lazy-highlight-search):
Call `run-hook-with-args-until-failure' on
`isearch-filter-predicates' and use `isearch-range-invisible'.
* lisp/info.el (Info-search): Call `run-hook-with-args-until-failure' on
`isearch-filter-predicates' instead of `funcall'ing
`isearch-filter-predicate'.
(Info-mode): Set `Info-isearch-filter' to
`isearch-filter-predicates' instead of `isearch-filter-predicate'.
* lisp/dired-aux.el (dired-isearch-filter-predicate-orig): Remove variable.
(dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
(dired-isearch-filenames-end): Add and remove
`dired-isearch-filter-filenames' in `isearch-filter-predicates'
instead of changing the value of `isearch-filter-predicate'.
Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
(dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
Put property `isearch-message-prefix' to "filename " on
`dired-isearch-filter-filenames'.
* lisp/wdired.el (wdired-change-to-wdired-mode):
Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
locally instead of changing `isearch-filter-predicate'.
(wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
Fixes: debbugs:11378
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 509c940a8f4..486e5d75343 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,40 @@ | |||
| 1 | 2013-05-27 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * isearch.el (isearch-filter-predicates): Rename from | ||
| 4 | `isearch-filter-predicate'. Doc fix. (Bug#11378) | ||
| 5 | (isearch-message-prefix): Display text from the property | ||
| 6 | `isearch-message-prefix' of the currently active filters. | ||
| 7 | (isearch-search): Don't compare `isearch-filter-predicate' with | ||
| 8 | `isearch-filter-visible'. Call `run-hook-with-args-until-failure' | ||
| 9 | on `isearch-filter-predicates'. Also check `search-invisible' for t | ||
| 10 | or call `isearch-range-invisible'. | ||
| 11 | (isearch-filter-visible): Make obsolete. | ||
| 12 | (isearch-lazy-highlight-search): | ||
| 13 | Call `run-hook-with-args-until-failure' on | ||
| 14 | `isearch-filter-predicates' and use `isearch-range-invisible'. | ||
| 15 | |||
| 16 | * info.el (Info-search): Call `run-hook-with-args-until-failure' on | ||
| 17 | `isearch-filter-predicates' instead of `funcall'ing | ||
| 18 | `isearch-filter-predicate'. | ||
| 19 | (Info-mode): Set `Info-isearch-filter' to | ||
| 20 | `isearch-filter-predicates' instead of `isearch-filter-predicate'. | ||
| 21 | |||
| 22 | * dired-aux.el (dired-isearch-filter-predicate-orig): | ||
| 23 | Remove variable. | ||
| 24 | (dired-isearch-filenames-toggle, dired-isearch-filenames-setup) | ||
| 25 | (dired-isearch-filenames-end): Add and remove | ||
| 26 | `dired-isearch-filter-filenames' in `isearch-filter-predicates' | ||
| 27 | instead of changing the value of `isearch-filter-predicate'. | ||
| 28 | Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff". | ||
| 29 | (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'. | ||
| 30 | Put property `isearch-message-prefix' to "filename " on | ||
| 31 | `dired-isearch-filter-filenames'. | ||
| 32 | |||
| 33 | * wdired.el (wdired-change-to-wdired-mode): | ||
| 34 | Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only' | ||
| 35 | locally instead of changing `isearch-filter-predicate'. | ||
| 36 | (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'. | ||
| 37 | |||
| 1 | 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca> | 38 | 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 39 | ||
| 3 | * emacs-lisp/easy-mmode.el (define-minor-mode): | 40 | * emacs-lisp/easy-mmode.el (define-minor-mode): |