aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2013-04-18 06:41:54 +0200
committerChristoph Lohmann <20h@r-36.net>2013-04-18 06:41:54 +0200
commit3ae02990648447ec3252b42f5b64e18818c19fd8 (patch)
tree14052b7a6be590ef39bcd9a407a8b4266116a910 /st.c
parentfed9968ba5d3c6874f73517b261968746d36801e (diff)
downloadst-3ae02990648447ec3252b42f5b64e18818c19fd8.tar.gz
st-3ae02990648447ec3252b42f5b64e18818c19fd8.zip
Removing unneeded comments.
Diffstat (limited to 'st.c')
-rw-r--r--st.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/st.c b/st.c
index fc07a46..9587886 100644
--- a/st.c
+++ b/st.c
@@ -1195,11 +1195,10 @@ treset(void) {
1195 1195
1196void 1196void
1197tnew(int col, int row) { 1197tnew(int col, int row) {
1198 /* setting "zero" terminal to resize it later */
1199 memset(&term, 0, sizeof(Term)); 1198 memset(&term, 0, sizeof(Term));
1200 tresize(col, row); 1199 tresize(col, row);
1201 term.numlock = 1; 1200 term.numlock = 1;
1202 /* setup screen */ 1201
1203 treset(); 1202 treset();
1204} 1203}
1205 1204