From d50cd83fd0ae544a0974367f6d4813b46b81af75 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 9 Mar 2010 00:54:08 -0500 Subject: [PATCH] Add some keysyms missing from keysyms.txt --- gtk/compose-parse.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/gtk/compose-parse.py b/gtk/compose-parse.py index 2aa13569b9..4324868600 100755 --- a/gtk/compose-parse.py +++ b/gtk/compose-parse.py @@ -363,6 +363,17 @@ def process_keysymstxt(): """ Allows to import Multi_key sequences """ keysymdb['Multi_key'] = 0xff20 + keysymdb['zerosubscript'] = 0x2080 + keysymdb['onesubscript'] = 0x2081 + keysymdb['twosubscript'] = 0x2082 + keysymdb['threesubscript'] = 0x2083 + keysymdb['foursubscript'] = 0x2084 + keysymdb['fivesubscript'] = 0x2085 + keysymdb['sixsubscript'] = 0x2086 + keysymdb['sevensubscript'] = 0x2087 + keysymdb['eightsubscript'] = 0x2088 + keysymdb['ninesubscript'] = 0x2089 + return keysymdb def keysymvalue(keysym, file = "n/a", linenum = 0):