about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-01-07 20:49:15 +0000
committerJames Booth <boothj5@gmail.com>2013-01-07 20:49:15 +0000
commitc10880ced492a81115349d66204daeeb26a75864 (patch)
treedbb97208b89bc2bf3f3a981ac36a49d50fd86e47
parente6d016e64030bfb6bd8b2ed49b5aef0d71f16a31 (diff)
downloadprofani-tty-c10880ced492a81115349d66204daeeb26a75864.tar.gz
Remove whitespace
-rw-r--r--src/input_win.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/input_win.c b/src/input_win.c
index 50565107..ee97ba55 100644
--- a/src/input_win.c
+++ b/src/input_win.c
@@ -467,8 +467,6 @@ _printable(const wint_t ch)
     char bytes[MB_CUR_MAX+1];
     size_t utf_len = wcrtomb(bytes, ch, NULL);
     bytes[utf_len] = '\0';
- 
     gunichar unichar = g_utf8_get_char(bytes);
     return g_unichar_isprint(unichar) && (ch != KEY_MOUSE);
-
 }