diff options
author | Ran Benita <ran234@gmail.com> | 2013-07-26 00:50:26 +0300 |
---|---|---|
committer | Ran Benita <ran234@gmail.com> | 2013-07-31 10:58:25 +0300 |
commit | be38862b2aa9ffcc5fe5f6ec68ce9c748d89658c (patch) | |
tree | 98f64d825cfa8c56beaf67394197531d498d4049 /src/text.c | |
parent | 3a0adc0f5c1e79c333477e81efe77134a84f473d (diff) | |
download | libxkbcommon-be38862b2aa9ffcc5fe5f6ec68ce9c748d89658c.tar.gz libxkbcommon-be38862b2aa9ffcc5fe5f6ec68ce9c748d89658c.tar.bz2 libxkbcommon-be38862b2aa9ffcc5fe5f6ec68ce9c748d89658c.zip |
keymap: remove struct xkb_key_redirect_action
The file src/xkbcomp/action.c already doesn't handle this action type
and fails if it encounters it. So lets not pretend to do something with
it, and ignore it rather than failing.
If we/someone wants this we can consider implementing it.
Signed-off-by: Ran Benita <ran234@gmail.com>
Diffstat (limited to 'src/text.c')
-rw-r--r-- | src/text.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -175,10 +175,10 @@ const LookupEntry actionTypeNames[] = { { "SwitchScreen", ACTION_TYPE_SWITCH_VT }, { "SetControls", ACTION_TYPE_CTRL_SET }, { "LockControls", ACTION_TYPE_CTRL_LOCK }, - { "RedirectKey", ACTION_TYPE_KEY_REDIRECT }, - { "Redirect", ACTION_TYPE_KEY_REDIRECT }, { "Private", ACTION_TYPE_PRIVATE }, /* deprecated actions below here - unused */ + { "RedirectKey", ACTION_TYPE_NONE }, + { "Redirect", ACTION_TYPE_NONE }, { "ISOLock", ACTION_TYPE_NONE }, { "ActionMessage", ACTION_TYPE_NONE }, { "MessageAction", ACTION_TYPE_NONE }, |