interactive mode: print '\n' in sigint_handler, this flush stdout thus ensure color reset. (#283)

pull/181/head^2 master-084e2f0
Qingyou Meng 1 year ago committed by GitHub
parent 0b366e7357
commit 084e2f0ec0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -747,6 +747,7 @@ static bool is_interacting = false;
#if defined (__unix__) || (defined (__APPLE__) && defined (__MACH__)) || defined (_WIN32)
void sigint_handler(int signo) {
printf(ANSI_COLOR_RESET);
printf("\n"); // this also force flush stdout.
if (signo == SIGINT) {
if (!is_interacting) {
is_interacting=true;

Loading…
Cancel
Save