cleanup indention left-overs

pull/1/head 2.1
Michael Stapelberg 2011-03-13 20:24:25 +01:00
parent 7128f80020
commit 6b0ce0d5aa
1 changed files with 3 additions and 3 deletions

View File

@ -182,15 +182,15 @@ static void handle_key_press(xcb_key_press_event_t *event) {
#endif #endif
if (xcb_is_modifier_key(sym) || xcb_is_cursor_key(sym)) if (xcb_is_modifier_key(sym) || xcb_is_cursor_key(sym))
return; return;
//printf("sym = %c (%d)\n", sym, sym); //printf("sym = %c (%d)\n", sym, sym);
/* convert the keysym to UCS */ /* convert the keysym to UCS */
uint16_t ucs = keysym2ucs(sym); uint16_t ucs = keysym2ucs(sym);
if ((int16_t)ucs == -1) { if ((int16_t)ucs == -1) {
fprintf(stderr, "Keysym could not be converted to UCS, skipping\n"); fprintf(stderr, "Keysym could not be converted to UCS, skipping\n");
return; return;
} }
/* store the UCS in a string to convert it */ /* store the UCS in a string to convert it */