Update readline.c for REPL Unicode issue 1905

This commit is contained in:
DavePutz 2020-02-18 10:38:50 -06:00 committed by GitHub
parent e0b8529d8d
commit aca53aa1a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ int readline_process_char(int c) {
redraw_step_forward = compl_len;
}
#endif
} else if (32 <= c && c <= 126) {
} else if (32 <= c ) {
// printable character
vstr_ins_char(rl.line, rl.cursor_pos, c);
// set redraw parameters