Skip to content

Commit 6f06f92

Browse files
authored
Merge pull request #2631 from DavePutz/master
Update readline.c for REPL Unicode issue 1905
2 parents 2063867 + aca53aa commit 6f06f92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mp-readline/readline.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ int readline_process_char(int c) {
206206
redraw_step_forward = compl_len;
207207
}
208208
#endif
209-
} else if (32 <= c && c <= 126) {
209+
} else if (32 <= c ) {
210210
// printable character
211211
vstr_ins_char(rl.line, rl.cursor_pos, c);
212212
// set redraw parameters

0 commit comments

Comments
 (0)