diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-09 20:28:41 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-09 20:28:41 +0000 |
| commit | a7637df11bb6a3a5dba02fa55e997b816f0cb916 (patch) | |
| tree | 879564ba7a99a2541910c66f923c2dfc3d2f199d | |
| parent | 4b912ed24d6bcc62371dc49b4aef811dc61497f2 (diff) | |
remove debug print
| -rw-r--r-- | openbox/modkeys.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/openbox/modkeys.c b/openbox/modkeys.c index 70605511..34446726 100644 --- a/openbox/modkeys.c +++ b/openbox/modkeys.c @@ -64,13 +64,11 @@ void modkeys_startup(gboolean reconfigure) KeySym sym; /* get a keycode that is bound to the mask (i) */ KeyCode keycode = modmap->modifiermap[i*modmap->max_keypermod + j]; - g_print("keycode %d for mask %d\n", keycode, i); if (keycode) { /* go through each keysym bound to the given keycode */ for (k = 0; k < keysyms_per_keycode; ++k) { sym = keymap[(keycode-min_keycode) * keysyms_per_keycode + k]; - g_print("k %d sym %s \n", k, XKeysymToString(sym)); if (sym != NoSymbol) { /* bind the key to the mask (e.g. Alt_L => Mod1Mask) */ set_modkey_mask(nth_mask(i), sym); |
