[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: GNUstep display problem
From: |
martin rudalics |
Subject: |
Re: GNUstep display problem |
Date: |
Mon, 23 Sep 2019 10:30:31 +0200 |
> Hi, there’s a problem with how GNUstep builds are displaying text.
> It’s not displaying all the characters, and is mostly just displaying
> characters that come after a space. I traced it to this commit:
>
> a4fe9c70af7a60117480d3361541550341da801a
> Replace XChar2b with unsigned in all font backends
>
> however I can’t see what in that commit is affecting GNUstep
> specifically. I can’t replicate it on macOS and I tried undoing the
> changes in nsfont.m and nsgui.h, but it made no difference.
When in nsfont.m I replace
unsigned short *t = s->char2b;
with
unsigned *t = s->char2b;
it seems to work normally.
martin