Skip to content

Commit bf94fab

Browse files
committed
real readline
1 parent eba0e5d commit bf94fab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

emulator/src/Logger.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ namespace casioemu {
99
namespace logger {
1010
void Info(const char *format, ...) {
1111
// * TODO may introduce race condition
12-
if (RL_ISSTATE(RL_STATE_TERMPREPPED))
12+
// if (RL_ISSTATE(RL_STATE_TERMPREPPED))
1313
rl_clear_visible_line();
1414
va_list args;
1515
va_start(args, format);
1616
vprintf(format, args);
1717
va_end(args);
18-
if (RL_ISSTATE(RL_STATE_TERMPREPPED)) {
18+
// if (RL_ISSTATE(RL_STATE_TERMPREPPED)) {
1919
rl_on_new_line();
2020
rl_redisplay();
21-
}
21+
// }
2222
}
2323
}
2424
} // namespace casioemu

0 commit comments

Comments
 (0)