diff options
| author | Lars Ingebrigtsen | 2014-02-07 20:14:16 -0800 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2014-02-07 20:14:16 -0800 |
| commit | c96411bdad902ef3916e235c574df65d03a19d1a (patch) | |
| tree | ce8f2b4dd553b7b476e35a094b19f508e897c343 | |
| parent | af3e68a0916256de5a19da73038a830deb6a2e84 (diff) | |
| download | emacs-c96411bdad902ef3916e235c574df65d03a19d1a.tar.gz emacs-c96411bdad902ef3916e235c574df65d03a19d1a.zip | |
* isearch.el (isearch-filter-predicate): Documentation typo fix
Fixes: debbugs:15474
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/isearch.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fc31411f3ea..b479af93472 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org> | 1 | 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * isearch.el (isearch-filter-predicate): Documentation typo fix | ||
| 4 | (bug#15474). | ||
| 5 | |||
| 3 | * info-look.el (info-lookup-symbol): Document MODE (bug#15498). | 6 | * info-look.el (info-lookup-symbol): Document MODE (bug#15498). |
| 4 | 7 | ||
| 5 | * isearch.el (isearch-cmds): Doc clarification (bug#15547). | 8 | * isearch.el (isearch-cmds): Doc clarification (bug#15547). |
diff --git a/lisp/isearch.el b/lisp/isearch.el index 9da1019bf46..1fbdeb906d8 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -188,7 +188,7 @@ or to the end of the buffer for a backward search.") | |||
| 188 | to the search status stack.") | 188 | to the search status stack.") |
| 189 | 189 | ||
| 190 | (defvar isearch-filter-predicate #'isearch-filter-visible | 190 | (defvar isearch-filter-predicate #'isearch-filter-visible |
| 191 | "Predicate that filter the search hits that would normally be available. | 191 | "Predicate that filters the search hits that would normally be available. |
| 192 | Search hits that dissatisfy the predicate are skipped. The function | 192 | Search hits that dissatisfy the predicate are skipped. The function |
| 193 | has two arguments: the positions of start and end of text matched by | 193 | has two arguments: the positions of start and end of text matched by |
| 194 | the search. If this function returns nil, continue searching without | 194 | the search. If this function returns nil, continue searching without |