diff options
author | Christoph Lohmann <20h@r-36.net> | 2013-04-18 06:41:54 +0200 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2013-04-18 06:41:54 +0200 |
commit | 3ae02990648447ec3252b42f5b64e18818c19fd8 (patch) | |
tree | 14052b7a6be590ef39bcd9a407a8b4266116a910 /st.c | |
parent | fed9968ba5d3c6874f73517b261968746d36801e (diff) | |
download | st-3ae02990648447ec3252b42f5b64e18818c19fd8.tar.gz st-3ae02990648447ec3252b42f5b64e18818c19fd8.zip |
Removing unneeded comments.
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1195,11 +1195,10 @@ treset(void) { | |||
1195 | 1195 | ||
1196 | void | 1196 | void |
1197 | tnew(int col, int row) { | 1197 | tnew(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 | ||