Removing unneeded comments.
This commit is contained in:
parent
fed9968ba5
commit
3ae0299064
1 changed files with 1 additions and 2 deletions
3
st.c
3
st.c
|
@ -1195,11 +1195,10 @@ treset(void) {
|
||||||
|
|
||||||
void
|
void
|
||||||
tnew(int col, int row) {
|
tnew(int col, int row) {
|
||||||
/* setting "zero" terminal to resize it later */
|
|
||||||
memset(&term, 0, sizeof(Term));
|
memset(&term, 0, sizeof(Term));
|
||||||
tresize(col, row);
|
tresize(col, row);
|
||||||
term.numlock = 1;
|
term.numlock = 1;
|
||||||
/* setup screen */
|
|
||||||
treset();
|
treset();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue