diff options
-rw-r--r-- | lisp/ChangeLog | 6 | ||||
-rw-r--r-- | lisp/info.el | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cb3f0fcc978..5be2e29ff6d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2013-02-14 Juri Linkov <juri@jurta.org> + + * info.el (Info-isearch-filter): Treat non-nil values of + `search-invisible' including its default value `open' + like the value `t' to match hidden text. (Bug#13402) + 2013-02-14 Glenn Morris <rgm@gnu.org> * help-fns.el (find-lisp-object-file-name): Give special treatment diff --git a/lisp/info.el b/lisp/info.el index a6db9f3f4dc..24a7181ff52 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -2151,7 +2151,7 @@ and is not in the header line or a tag table." (let ((backward (< found beg-found))) (not (or - (and (not (eq search-invisible t)) + (and (not search-invisible) (if backward (or (text-property-not-all found beg-found 'invisible nil) (text-property-not-all found beg-found 'display nil)) |