From: Kazuhiro Ito <kzhr@d1.dion.ne.jp>
To: Lars Ingebrigtsen <larsi@gnus.org>
Cc: 12693@debbugs.gnu.org
Subject: bug#12693: [cygwin] Setting fonts with non-ascii names throws error quit
Date: Mon, 14 Sep 2020 20:38:31 +0900 [thread overview]
Message-ID: <864ko0si4o.wl--xmue@d1.dion.ne.jp> (raw)
In-Reply-To: <87o8m8d40z.fsf@gnus.org>
> > (set-frame-font "MS ゴシック-14") raises an error on Cygw32 build
> > but not on MinGW64 build. x-select-font function returns encoded
> > string on Cygw32 build. Let-binding locale-coding-system to the
> > correct codepage can avoid the problem.
> >
> > ;; Chose "MS ゴシック-14"
> > (x-select-font)
> >
> > -> "\202l\202r \203S\203V\203b\203N-14"
>
> Hm... I don't use Windows, so I can't test this, but perhaps the result
> from `x-select-font' should use `detect-coding-string' or something on
> the result (and then decode it) so that we get a correct string in Emacs?
As discussed in the original thread, Emacs uses ANSI version of
Windows API to handle fonts. Strings passed to or received from APIs
should be encoded in or decoded from ANSI codepage. To do that,
ENCODE_SYSTEM and DECODE_SYSTEM macros are used (See src/w32font.c).
It means that locale-coding-system is used around Windows font API.
That works well on MinGW64, because locale-coding-system is the same
with ANSI codepage. But on Cygw32, locale-coding-system is normally
utf-8 and it is not ANSI codepage. This is the cause of the problem.
My original post makes Emacs use ANSI codepage for Windows font API.
Further discussion indicates to make Emacs on Windows use unicode API
if available. But no progresss after that.
--
Kazuhiro Ito
prev parent reply other threads:[~2020-09-14 11:38 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-20 21:46 bug#12693: 24.2.50; src/w32font.c should depend on ANSI code page Kazuhiro Ito
2012-10-23 11:52 ` Jason Rumney
2012-10-23 13:05 ` Kazuhiro Ito
2012-10-23 16:22 ` Eli Zaretskii
2012-10-25 21:18 ` Daniel Colascione
2012-10-26 7:30 ` Eli Zaretskii
2012-10-23 16:12 ` Eli Zaretskii
2020-09-13 16:16 ` bug#12693: [cygwin] Setting fonts with non-ascii names throws error quit Lars Ingebrigtsen
2020-09-14 8:40 ` Kazuhiro Ito
2020-09-14 10:52 ` Lars Ingebrigtsen
2020-09-14 11:38 ` Kazuhiro Ito [this message]
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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=864ko0si4o.wl--xmue@d1.dion.ne.jp \
--to=kzhr@d1.dion.ne.jp \
--cc=12693@debbugs.gnu.org \
--cc=larsi@gnus.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 public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).