GNU bug report logs -
#1220
overlay before- and after-string and mouse-face
Previous Next
Reported by: Glenn Morris <rgm <at> gnu.org>
Date: Wed, 22 Oct 2008 00:50:03 UTC
Severity: normal
Found in version 23.0.60
Done: Chong Yidong <cyd <at> stupidchicken.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
This is an automatic notification regarding your bug report
which was filed against the emacs package:
#1220: overlay before- and after-string and mouse-face
It has been closed by Chong Yidong <cyd <at> stupidchicken.com>.
Their explanation is attached below along with your original report.
If this explanation is unsatisfactory and you have not received a
better one in a separate message then please contact Chong Yidong <cyd <at> stupidchicken.com> by
replying to this email.
--
1220: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=1220
Emacs Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
> The mouse-face property of an overlay with a display string does not
> affect any before-string, but it does affect the after-string.
>
> This can be worked around to some extent by copying the mouse-face
> property to the before-string, but one cannot get the whole overlay
> highlighted at one time.
I've checked a fix for this into the trunk.
[Message part 3 (message/rfc822, inline)]
Package: emacs
Version: 23.0.60
This bug is extracted from #1176, which contained several issues.
The mouse-face property of an overlay with a display string does not
affect any before-string, but it does affect the after-string.
This can be worked around to some extent by copying the mouse-face
property to the before-string, but one cannot get the whole overlay
highlighted at one time.
Example:
(let ((buff (generate-new-buffer "overlay test"))
o)
(with-current-buffer buff
(insert "text")
(setq o (make-overlay (point-min) (point-max)))
(overlay-put o 'mouse-face '(:background "green"))
(overlay-put o 'display "display")
(overlay-put o 'before-string "before string")
(overlay-put o 'after-string "after string")
(pop-to-buffer buff)))
"displayafter string" has mouse-face, but "before string" does not.
This bug report was last modified 15 years and 187 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.