From 7ab17d3d092012b69d8b1c6ce72de1d226abccf8 Mon Sep 17 00:00:00 2001 From: Michael Krayer Date: Fri, 26 Mar 2021 14:42:19 +0100 Subject: [PATCH] not clearing screen at attaching anymore --- attach.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attach.c b/attach.c index 41a696c..672635d 100644 --- a/attach.c +++ b/attach.c @@ -214,7 +214,7 @@ attach_main(int noerror) tcsetattr(0, TCSADRAIN, &cur_term); /* Clear the screen. This assumes VT100. */ - write(1, "\33[H\33[J", 6); + //write(1, "\33[H\33[J", 6); /* Tell the master that we want to attach. */ memset(&pkt, 0, sizeof(struct packet));