[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: RLM and LRM are composed?
From: |
Eli Zaretskii |
Subject: |
Re: RLM and LRM are composed? |
Date: |
Thu, 01 Apr 2010 10:56:03 +0300 |
> From: Kenichi Handa <address@hidden>
> Date: Thu, 01 Apr 2010 15:39:30 +0900
> Cc: address@hidden
>
> Current code try to compose any non-spacing mark characters
> with the previous spacing characters.
Which is probably not a bad idea.
> But, the detection of non-spacing mark is done by
> (= (aref char-width-table CH) 0).
Hmm.. and why is this wrong?
Anyway, (aref char-width-table #x200f) => 0, so it sounds like the
current detection should have worked. What am I missing?
> at the moment, you can workaround the problem by this:
>
> (aset composition-function-table #x200f nil)
Yes, this displays according to the display table as expected, thanks.