summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2009-01-13 12:05:54 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2009-01-13 12:05:54 +1000
commit091c1624fd2f9d933329d6152e4ecd865aa7903a (patch)
treedc2521e6c35dc32aea170423a146eed34044a543
parente32521f19e0b07649b7e3a03d56a2bd556b138fb (diff)
Fix wrong implies symbol.
Quote Simos Xenitellis: > I checked the gtk+ commit logs that go back to 2000, and I see that still it > was > > { 0x08ce, 0x21d2 }, /* implies ⇒ RIGHTWARDS > DOUBLE ARROW */ > > In XFree86, it appears there was an error when they converted the > original table to > http://cvsweb.xfree86.org/cvsweb/xc/lib/X11/imKStoUCS.c?rev=1.1&content-type=text/vnd.viewcvs-markup > and the problem still shows up there (November 2000). http://lists.freedesktop.org/archives/xorg/2008-October/039743.html Reported by Erik Streb del Toro.
-rw-r--r--src/xlibi18n/imKStoUCS.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xlibi18n/imKStoUCS.c b/src/xlibi18n/imKStoUCS.c
index 09e1a7ee..940d3ed2 100644
--- a/src/xlibi18n/imKStoUCS.c
+++ b/src/xlibi18n/imKStoUCS.c
@@ -120,7 +120,7 @@ static unsigned short const keysym_to_unicode_8a4_8fe[] = {
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /* 0x08b0-0x08b7 */
0x0000, 0x0000, 0x0000, 0x0000, 0x2264, 0x2260, 0x2265, 0x222b, /* 0x08b8-0x08bf */
0x2234, 0x0000, 0x221e, 0x0000, 0x0000, 0x2207, 0x0000, 0x0000, /* 0x08c0-0x08c7 */
- 0x2245, 0x2246, 0x0000, 0x0000, 0x0000, 0x0000, 0x22a2, 0x0000, /* 0x08c8-0x08cf */
+ 0x2245, 0x2246, 0x0000, 0x0000, 0x0000, 0x0000, 0x21d2, 0x0000, /* 0x08c8-0x08cf */
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x221a, 0x0000, /* 0x08d0-0x08d7 */
0x0000, 0x0000, 0x2282, 0x2283, 0x2229, 0x222a, 0x2227, 0x2228, /* 0x08d8-0x08df */
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, /* 0x08e0-0x08e7 */