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

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

bug#70993: set-fontset-font doesn't use specified font for some scripts


From: Eli Zaretskii
Subject: bug#70993: set-fontset-font doesn't use specified font for some scripts
Date: Fri, 17 May 2024 18:55:58 +0300

> From: Rodrigo Morales <me@rodrigomorales.site>
> CC: <70993@debbugs.gnu.org>
> Date: Fri, 17 May 2024 09:57:47 -0500
> 
> Eli Zaretskii <eliz@gnu.org> writes:
> 
> (set-fontset-font t 'brahmi (font-spec :family "Cozette"))
> (set-fontset-font t 'egyptian (font-spec :family "Cozette"))
> (set-fontset-font t 'ethiopic (font-spec :family "Cozette"))
> (set-fontset-font t 'tagbanwa (font-spec :family "Cozette"))
> (set-fontset-font t 'han (font-spec :family "Cozette"))

Fir Chinese characters, you need to do the same for cjk-misc charset
as well.  Not sure it will help you though.

In any case, it sounds like Emacs rejects the Cozette font for some
scripts.  Why that happens, I don't know, sorry.  Can you set font-log
to nil before you visit your a.txt file, and then post the value of
font-log after the file is displayed?  That could perhaps tell us
something about the cause of this behavior.

In general, the Emacs font search and the related features are
designed to find good fonts for displaying each character, whereas you
are trying to do the opposite: force Emacs to choose a font that can
NOT display characters.  The doc string of set-fontset-font explains
how to set up a fontset so that certain characters have no font: use
nil for the FONT-SPEC argument.  So if you want Amharic and Chinese
characters to display as glyphless characters, use this:

  (set-fontset-font t 'han nil)
  (set-fontset-font t 'ethiopic nil)

> > That's because some scripts require characters to be composed on
> > display, and Emacs caches these compositions together with the font
> > used to display those characters.  Changing the fontset after some
> > character compositions were already cached will not change the font
> > recorded in the cached compositions.
> >
> > IOW, set-fontset-font cannot be reliably used in the middle of an
> > Emacs session.
> 
> This is a significant limitation for users that feel the need to
> regularly change the font for a given script in the middle of an Emacs
> session (e.g. users of the package
> [[https://github.com/tumashu/cnfonts][cnfonts]], the package primarily
> uses set-fontset-font for setting the font for the scripts 'kana, 'han,
> 'cjk-misc, 'bopomofo and 'hangul). As for me, I usually change the font
> for the script 'han because I'm studying Asian languages and the glyphs
> for a unique code point can be significantly different when using
> different fonts, see more information in table "Same code point,
> different language tags" in
> https://en.wikipedia.org/wiki/Variant_Chinese_characters
> 
> I lack knowledge on how Emacs internals work to set the font for
> specific scripts and how glyphs for each character are chosen so I don't
> know how difficult this would be to implement but I believe that given
> that Emacs is called an extensible and customizable text editor in
> https://www.gnu.org/software/emacs/, set-fontset-font should have a
> reliable and consistent behavior when it is run in the middle of an
> Emacs session. Thus, giving users the freedom to change the font for any
> script at any time reliably and making Emacs more customizable. Please
> let me know your thoughts.

This is indeed a limitation for someone who modifies the fontsets a
lot during a session, but unless someone submits patches to lift it,
it will remain a limitation, sorry.





reply via email to

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