mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
clean the REPL check for '\b'
This commit is contained in:
parent
951d833b7f
commit
ddd3d4fad9
@ -1668,7 +1668,7 @@ enum shellCTRL _inner_do_obj_runChar(PikaObj* self,
|
||||
goto __exit;
|
||||
}
|
||||
}
|
||||
if ((inputChar == '\b') || (inputChar == 127)) {
|
||||
if (inputChar == '\b') {
|
||||
if (shell->line_curpos == 0) {
|
||||
#if __linux
|
||||
printf("\b ");
|
||||
|
@ -2,4 +2,4 @@
|
||||
#define PIKA_VERSION_MINOR 12
|
||||
#define PIKA_VERSION_MICRO 5
|
||||
|
||||
#define PIKA_EDIT_TIME "2023/08/12 22:51:55"
|
||||
#define PIKA_EDIT_TIME "2023/08/12 22:53:45"
|
||||
|
Loading…
x
Reference in New Issue
Block a user