Преглед изворни кода

Removing unneeded comments.

Christoph Lohmann пре 12 година
родитељ
комит
3ae0299064
1 измењених фајлова са 1 додато и 2 уклоњено
  1. 1 2
      st.c

+ 1 - 2
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();
 }