diff options
author | James Booth <boothj5@gmail.com> | 2012-04-15 23:56:23 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2012-04-15 23:56:23 +0100 |
commit | 2514be4b78b9f13e5d7738430b988c8bec764141 (patch) | |
tree | 33454feaedceae8a4cc83b8b0db290397c51b645 | |
parent | 0557f78d36572562cfec38042dbc50fa1bc90a20 (diff) | |
download | profani-tty-2514be4b78b9f13e5d7738430b988c8bec764141.tar.gz |
Added KEY_RESIZE to non printable chars
-rw-r--r-- | input_win.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/input_win.c b/input_win.c index 34a67ac5..51e5552d 100644 --- a/input_win.c +++ b/input_win.c @@ -250,7 +250,7 @@ static int _printable(const int ch) ch != KEY_F(4) && ch != KEY_F(5) && ch != KEY_F(6) && ch != KEY_F(7) && ch != KEY_F(8) && ch != KEY_F(9) && ch != KEY_F(10) && ch!= KEY_F(11) && ch != KEY_F(12) && - ch != KEY_IC && ch != KEY_EIC); + ch != KEY_IC && ch != KEY_EIC && ch != KEY_RESIZE); } static void _replace_input(char *input, const char * const new_input, int *size) |