Skip to content

Commit aca53aa

Browse files
authored
Update readline.c for REPL Unicode issue 1905
1 parent e0b8529 commit aca53aa

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)