From: "Clément Pit--Claudel" <clement.pitclaudel@live.com>
To: 22323@debbugs.gnu.org
Subject: bug#22323: Font fallback causes inconsistent stacking of faces in overlays with invisible property
Date: Thu, 7 Jan 2016 11:52:55 -0500 [thread overview]
Message-ID: <568E97E7.2030604@live.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 1573 bytes --]
Hi all,
Font fallback seems to break face stacking for invisible overlays:
This works fine:
(with-current-buffer (get-buffer-create "No prettification: ellispis is highlighed")
(erase-buffer)
(fundamental-mode)
(add-to-invisibility-spec '(outline . t))
(insert "abc!!def!!ghi")
(let ((ov (make-overlay 6 9)))
(overlay-put ov 'invisible 'outline))
(let ((ov (make-overlay (point-min) (point-max))))
(overlay-put ov 'face 'region))
(pop-to-buffer (current-buffer)))
This doesn't work (assuming that ℙ is not in your usual font):
(with-current-buffer (get-buffer-create "No prettification: ellispis is highlighed")
(erase-buffer)
(fundamental-mode)
(add-to-invisibility-spec '(outline . t))
(insert "abcℙℙdefℙℙghi")
(let ((ov (make-overlay 6 9)))
(overlay-put ov 'invisible 'outline))
(let ((ov (make-overlay (point-min) (point-max))))
(overlay-put ov 'face 'region))
(pop-to-buffer (current-buffer)))
I came across this while using prettify-symbols-mode:
(with-current-buffer (get-buffer-create "With prettification to common character: ellispis is highlighed")
(erase-buffer)
(fundamental-mode)
(add-to-invisibility-spec '(outline . t))
(insert "abc!!def!!ghi")
(setq prettify-symbols-alist '(("!!" . ?ℙ)))
(prettify-symbols-mode)
(let ((ov (make-overlay 6 9)))
(overlay-put ov 'invisible 'outline))
(let ((ov (make-overlay (point-min) (point-max))))
(overlay-put ov 'face 'region))
(pop-to-buffer (current-buffer)))
Cheers,
Clément.
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
next reply other threads:[~2016-01-07 16:52 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-07 16:52 Clément Pit--Claudel [this message]
2016-01-07 18:22 ` bug#22323: Font fallback causes inconsistent stacking of faces in overlays with invisible property Eli Zaretskii
2016-01-08 1:19 ` Clément Pit--Claudel
2016-01-08 10:22 ` Eli Zaretskii
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=568E97E7.2030604@live.com \
--to=clement.pitclaudel@live.com \
--cc=22323@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.