Changed restore_term to remove the Linux-specific escape sequence to restore

the cursor size, which is handled incorrectly by some terminal emulators.
This commit is contained in:
Ned T. Crigler 2004-08-25 23:31:06 +00:00
parent 5c668a88cb
commit 21d386d004
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ restore_term(void)
tcsetattr(0, TCSADRAIN, &orig_term);
/* Make cursor visible. Assumes VT100. */
printf("\033[?25h\033[?0c");
printf("\033[?25h");
fflush(stdout);
}