diff options
| -rw-r--r-- | ui.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -437,7 +437,7 @@ static void logPageDown(void) {  }  static bool keyChar(wchar_t ch) { -	if (iswascii(ch)) { +	if (ch < 0200) {  		enum TermEvent event = termEvent((char)ch);  		switch (event) {  			break; case TERM_FOCUS_IN:  viewUnmark(ui.view); | 
