From 21d386d004e02481f7266f5b921bcecef6533371 Mon Sep 17 00:00:00 2001 From: "Ned T. Crigler" Date: Wed, 25 Aug 2004 23:31:06 +0000 Subject: [PATCH] Changed restore_term to remove the Linux-specific escape sequence to restore the cursor size, which is handled incorrectly by some terminal emulators. --- attach.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attach.c b/attach.c index bdb94b7..6a7713b 100644 --- a/attach.c +++ b/attach.c @@ -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); }