remove dup of default window size.

This commit is contained in:
Aurélien Aptel
2011-09-16 17:57:56 +02:00
parent e2809f3976
commit bf2e23f535
2 changed files with 3 additions and 2 deletions

4
st.c
View File

@ -1627,8 +1627,8 @@ xinit(void) {
xloadcols();
/* window - default size */
xw.bufh = 24 * xw.ch;
xw.bufw = 80 * xw.cw;
xw.bufh = term.row * xw.ch;
xw.bufw = term.col * xw.cw;
xw.h = xw.bufh + 2*BORDER;
xw.w = xw.bufw + 2*BORDER;