Commit e82bb5c04392869d8d49c8d1b5a9caba2ab29d37

Ran Benita 2012-05-13T17:23:28

Remove unused allowNone from KeyInfo Signed-off-by: Ran Benita <ran234@gmail.com>

diff --git a/src/xkbcomp/symbols.c b/src/xkbcomp/symbols.c
index 834ae6d..b54343c 100644
--- a/src/xkbcomp/symbols.c
+++ b/src/xkbcomp/symbols.c
@@ -78,7 +78,6 @@ typedef struct _KeyInfo
     unsigned repeat;
     struct xkb_behavior behavior;
     unsigned short vmodmap;
-    unsigned long allowNone;
     xkb_atom_t dfltType;
 } KeyInfo;
 
@@ -113,7 +112,6 @@ InitKeyInfo(KeyInfo * info)
     info->behavior.data = 0;
     info->vmodmap = 0;
     info->repeat = RepeatUndefined;
-    info->allowNone = 0;
 }
 
 /**
@@ -149,7 +147,6 @@ FreeKeyInfo(KeyInfo * info)
     info->behavior.data = 0;
     info->vmodmap = 0;
     info->repeat = RepeatUndefined;
-    info->allowNone = 0;
 }
 
 /**