public inbox for cygwin-xfree@sourceware.org
help / color / mirror / Atom feed
* font-misc-misc out of era
@ 2013-09-20 16:37 Thomas Wolff
  2013-09-20 17:21 ` Jon TURNEY
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas Wolff @ 2013-09-20 16:37 UTC (permalink / raw)
  To: cygwin-xfree

The X fonts in the package font-misc-misc is out-of-era, from ASCII times,
so that e.g. if you start xterm -fn 9x18 you wouldn't even see a Euro sign.
Please replace them with their Unicode versions from 
http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html
Kindly appreciated
Thomas

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://x.cygwin.com/docs/
FAQ:                   http://x.cygwin.com/docs/faq/


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: font-misc-misc out of era
  2013-09-20 16:37 font-misc-misc out of era Thomas Wolff
@ 2013-09-20 17:21 ` Jon TURNEY
  2013-09-21 17:26   ` Thomas Wolff
  0 siblings, 1 reply; 4+ messages in thread
From: Jon TURNEY @ 2013-09-20 17:21 UTC (permalink / raw)
  To: cygwin-xfree; +Cc: towo

On 20/09/2013 17:37, Thomas Wolff wrote:
> The X fonts in the package font-misc-misc is out-of-era, from ASCII times,
> so that e.g. if you start xterm -fn 9x18 you wouldn't even see a Euro sign.
> Please replace them with their Unicode versions from
> http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html

Markus Kuhn's X11 unicode bitmap fonts have been included in the upstream
X.Org package for some years (see [1])

This seems to be an issue with the font specification: "9x18" aliases to
"-misc-fixed-medium-r-normal--18-120-100-100-c-90-koi8-r" (which I don't have
installed on my system, and probably doesn't have a euro character)

$ xterm -fn 9x18
Warning: Cannot convert string "9x18" to type FontStruct
xterm: cannot load font '9x18'
xterm: cannot load font '9x18'

but this works fine:

$ xterm -fn -misc-fixed-medium-r-normal--18-120-100-100-c-90-iso10646-1

and I can type € with no problem.

We probably need to do something more intelligent than just using the upstream
font aliases package verbatim to fix this problem.

[1] http://cgit.freedesktop.org/xorg/font/misc-misc/log/

-- 
Jon TURNEY
Volunteer Cygwin/X X Server maintainer

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://x.cygwin.com/docs/
FAQ:                   http://x.cygwin.com/docs/faq/


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: font-misc-misc out of era
  2013-09-20 17:21 ` Jon TURNEY
@ 2013-09-21 17:26   ` Thomas Wolff
  2013-09-24 18:55     ` Jon TURNEY
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas Wolff @ 2013-09-21 17:26 UTC (permalink / raw)
  To: cygwin-xfree, Jon TURNEY

Am 20.09.2013 19:21, schrieb Jon TURNEY:
> On 20/09/2013 17:37, Thomas Wolff wrote:
>> The X fonts in the package font-misc-misc is out-of-era, from ASCII times,
>> so that e.g. if you start xterm -fn 9x18 you wouldn't even see a Euro sign.
>> Please replace them with their Unicode versions from
>> http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html
> Markus Kuhn's X11 unicode bitmap fonts have been included in the upstream
> X.Org package for some years (see [1])
Looking precisely, they are actually included in the cygwin 
font-misc-misc package, though in addition to small script-specific old 
versions. I think the latter should be removed to reduce confusion.

> This seems to be an issue with the font specification: "9x18" aliases to
> "-misc-fixed-medium-r-normal--18-120-100-100-c-90-koi8-r" (which I don't have
> installed on my system, and probably doesn't have a euro character)
I wonder why the font-alias package creates cyrillic/fonts.alias as the 
only language-specific subdirectory. The entries font there are 
ambiguous to those of misc/fonts.alias (with the exception of 9x18 which 
is not included in the latter). Looks somewhat weird.
Also I wonder whether the fonts.alias file shouldn't rather come with 
each respective package.

> $ xterm -fn 9x18
> Warning: Cannot convert string "9x18" to type FontStruct
> xterm: cannot load font '9x18'
> xterm: cannot load font '9x18'
>
> but this works fine:
>
> $ xterm -fn -misc-fixed-medium-r-normal--18-120-100-100-c-90-iso10646-1
>
> and I can type € with no problem.
>
> We probably need to do something more intelligent than just using the upstream
> font aliases package verbatim to fix this problem.
>
> [1] http://cgit.freedesktop.org/xorg/font/misc-misc/log/
>
Yes, simply the misc/fonts.alias file should alias 9x18 etc to the 
proper Unicode version, and the ambiguous entries elsewhere should be 
removed.
--
Thomas

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://x.cygwin.com/docs/
FAQ:                   http://x.cygwin.com/docs/faq/


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: font-misc-misc out of era
  2013-09-21 17:26   ` Thomas Wolff
@ 2013-09-24 18:55     ` Jon TURNEY
  0 siblings, 0 replies; 4+ messages in thread
From: Jon TURNEY @ 2013-09-24 18:55 UTC (permalink / raw)
  To: cygwin-xfree; +Cc: Thomas Wolff

On 21/09/2013 18:25, Thomas Wolff wrote:
> Am 20.09.2013 19:21, schrieb Jon TURNEY:
>> On 20/09/2013 17:37, Thomas Wolff wrote:
>>> The X fonts in the package font-misc-misc is out-of-era, from ASCII times,
>>> so that e.g. if you start xterm -fn 9x18 you wouldn't even see a Euro sign.
>>> Please replace them with their Unicode versions from
>>> http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html
>> Markus Kuhn's X11 unicode bitmap fonts have been included in the upstream
>> X.Org package for some years (see [1])
> Looking precisely, they are actually included in the cygwin font-misc-misc
> package, though in addition to small script-specific old versions. I think the
> latter should be removed to reduce confusion.

I'm sorry, I don't understand what you are suggesting here.

Removing (for example) the ISO8859-1 encoded 9x18 font would seem to be a bad
idea, as that will break things for anything which is currently using the font
with that encoding?


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://x.cygwin.com/docs/
FAQ:                   http://x.cygwin.com/docs/faq/


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-09-24 18:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-09-20 16:37 font-misc-misc out of era Thomas Wolff
2013-09-20 17:21 ` Jon TURNEY
2013-09-21 17:26   ` Thomas Wolff
2013-09-24 18:55     ` Jon TURNEY

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).