st

fork of suckless's simple terminal
Index Commits Files Refs README LICENSE
commit 3ae02990648447ec3252b42f5b64e18818c19fd8
parent fed9968ba5d3c6874f73517b261968746d36801e
Author: Christoph Lohmann <20h@r-36.net>
Date:   Thu, 18 Apr 2013 06:41:54 +0200

Removing unneeded comments.

Diffstat:
Mst.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/st.c b/st.c
@@ -1195,11 +1195,10 @@ treset(void) {
 
 void
 tnew(int col, int row) {
-    /* setting "zero" terminal to resize it later */
     memset(&term, 0, sizeof(Term));
     tresize(col, row);
     term.numlock = 1;
-    /* setup screen */
+
     treset();
 }