emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r111780: * lisp/info.el (Info-isearch


From: Juri Linkov
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111780: * lisp/info.el (Info-isearch-filter): Treat non-nil values of
Date: Thu, 14 Feb 2013 11:15:55 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111780
fixes bug: http://debbugs.gnu.org/13402
committer: Juri Linkov <address@hidden>
branch nick: trunk
timestamp: Thu 2013-02-14 11:15:55 +0200
message:
  * lisp/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.
modified:
  lisp/ChangeLog
  lisp/info.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-02-14 08:05:26 +0000
+++ b/lisp/ChangeLog    2013-02-14 09:15:55 +0000
@@ -1,3 +1,9 @@
+2013-02-14  Juri Linkov  <address@hidden>
+
+       * 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  <address@hidden>
 
        * help-fns.el (find-lisp-object-file-name): Give special treatment

=== modified file 'lisp/info.el'
--- a/lisp/info.el      2013-02-12 04:46:18 +0000
+++ b/lisp/info.el      2013-02-14 09:15:55 +0000
@@ -2151,7 +2151,7 @@
     (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))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]