This commit is contained in:
Richel Bilderbeek 2013-07-25 03:05:37 -07:00
commit 404c55047f

View File

@ -505,7 +505,10 @@ void xte_clickKey ( Display *displayLocation, char *key )
ks = XStringToKeysym( key ); ks = XStringToKeysym( key );
if ( ks == NoSymbol ) if ( ks == NoSymbol )
{
fprintf( stderr, "Key '%s' is an unknown key\n", key );
return; return;
}
kc = XKeysymToKeycode( displayLocation, ks ); kc = XKeysymToKeycode( displayLocation, ks );