tb fix call to schedrelease()

This commit is contained in:
2025-09-19 23:47:55 +02:00
parent b7ad1e0633
commit 5b6408b06b

View File

@ -124,8 +124,6 @@ void do_mode_interactive(void) {
uprintf(ANSIQ_SCR_CLR_ALL);
goto begin;
break;
} else {
schedrelease();
}
if (b == '\n') {
@ -136,6 +134,8 @@ void do_mode_interactive(void) {
linebuf[cursor++] = b;
uprintf("%c", b);
}
} else {
schedrelease();
}
}