bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#55768: 26.3; isearch highlighting in dired


From: Juri Linkov
Subject: bug#55768: 26.3; isearch highlighting in dired
Date: Wed, 29 Jun 2022 20:58:10 +0300
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (x86_64-pc-linux-gnu)

>>>     ;; If the following character is currently invisible,
>>>     ;; skip all characters with that same `invisible' property value.
>>>     ;; Do that over and over.
>>>     (while (and (< (point) end) (invisible-p (point)))
>>>       (if (invisible-p (get-text-property (point) 'invisible))
>
> [...]
>
>> 1. (invisible-p (point))
>>    checks invisibility of both: text properties and overlays.
>
> That's true.  Was that the intention here -- first to check invisibility
> of both text properties and overlays and then only check invisibility of
> text properties?

Yep, that is my understanding too: first check both, then each separately.





reply via email to

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