Merge pull request #2631 from DavePutz/master

Update readline.c for REPL Unicode issue 1905
This commit is contained in:
Scott Shawcroft 2020-02-18 14:19:37 -08:00 committed by GitHub
commit 6f06f92bb1
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