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

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

bug#16493: 24.3.50; (setq search-invisible t) is useless, let's allow to


From: Noam Postavsky
Subject: bug#16493: 24.3.50; (setq search-invisible t) is useless, let's allow to turn visible-mode temporarily on
Date: Tue, 30 Apr 2019 08:24:03 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux)

Stefan Monnier <monnier@iro.umontreal.ca> writes:

>> I was thinking all this complication could be avoided if we just allowed
>> (overlay-put OVERLAY 'invisible nil) to make text visible.
>
> No need for that.

I may have confused things a bit by forgetting to mention I was speaking
of overlays on top of an existing invisible text property (see my reply
to Eli).

> You can do
>
>     (overlay-put OVERLAY 'invisible 'visible)
>
> to get the same result without far-reaching changes to the C code.

Um, no, that gives the opposite effect.

(let ((p (point))
      overlay)
  (insert "(" (propertize "invisible" 'invisible t) ")")
  (setq overlay (make-overlay p (point)))
  ;; All text, including parens, becomes invisible.
  (overlay-put overlay 'invisible 'visible))







reply via email to

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