GNU bug report logs - #59141
28.1.90; Face :extend when all the line but trailing \n is invisible

Previous Next

Package: emacs;

Reported by: Ihor Radchenko <yantar92 <at> posteo.net>

Date: Wed, 9 Nov 2022 02:24:01 UTC

Severity: normal

Tags: fixed

Found in version 28.1.90

Done: Eli Zaretskii <eliz <at> gnu.org>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Eli Zaretskii <eliz <at> gnu.org>
To: Juri Linkov <juri <at> linkov.net>
Cc: 59141 <at> debbugs.gnu.org, yantar92 <at> posteo.net, abdo.haji.ali <at> gmail.com, kevin.legouguec <at> gmail.com
Subject: bug#59141: 28.1.90; Face :extend when all the line but trailing \n is invisible
Date: Tue, 22 Nov 2022 20:42:59 +0200
> From: Juri Linkov <juri <at> linkov.net>
> Cc: kevin.legouguec <at> gmail.com,  59141 <at> debbugs.gnu.org,
>   abdo.haji.ali <at> gmail.com,  yantar92 <at> posteo.net
> Date: Tue, 22 Nov 2022 19:35:34 +0200
> 
> >> (progn
> >>   (insert "ab")
> >>   (let ((o (make-overlay 1 2)))
> >>     (overlay-put o 'after-string "!"))
> >>   (let ((o (make-overlay 2 3)))
> >>     (overlay-put o 'invisible t)))
> >>
> >> The problem is that "!" from 'after-string' is not displayed,
> >> even when it's on the text that is not invisible.
> >
> > There's no bug here.  after-string is displayed when the end position of the
> > overlay is reached, and in this case the end position is invisible, so it is
> > skipped.
> 
> If really there is no way to display a string overlay before the invisible overlay,
> this is fine because when a new option will be added, the ellipsis overlay
> will be added to the end of the line, and the invisible overlay will start
> at the beginning of the next line.

Does the below produce what you want?

  (progn
    (insert "ab")
    (let ((o (make-overlay 2 3)))
      (overlay-put o 'after-string "!"))
    (let ((o (make-overlay 2 3)))
      (overlay-put o 'invisible t)))




This bug report was last modified 1 year and 114 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.