From f9570fcd6bdd63dd9db34e4588e4c339566ff60b Mon Sep 17 00:00:00 2001 From: Diego Nieto Cid Date: Sat, 21 Aug 2010 11:49:29 -0300 Subject: Add support for hexadecimal symbols. * console-client/xkb/parser.y(symbolname): Match and return hex value. --- console-client/xkb/parser.y | 1 + 1 file changed, 1 insertion(+) diff --git a/console-client/xkb/parser.y b/console-client/xkb/parser.y index 36bc3a3f..18c14544 100644 --- a/console-client/xkb/parser.y +++ b/console-client/xkb/parser.y @@ -1062,6 +1062,7 @@ symbolssect: symbolname: IDENTIFIER { $$ = XStringToKeysym ($1); } | NUM { $$ = $1 + '0' } +| HEX { $$ = $1; } ; /* None or more keysyms, assigned to a single group of the current -- cgit v1.2.3