diff options
author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2011-09-16 17:57:56 +0200 |
---|---|---|
committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2011-09-16 17:57:56 +0200 |
commit | d5f3d120eae2377b8a2f80c94fbb5e4bd7a6189d (patch) | |
tree | fb53f20b759091f71e3c90730d68ec829fb6955f /st.c | |
parent | 8503f954a1cb2d08124fe2c1f0227bd23dffff46 (diff) | |
download | st-d5f3d120eae2377b8a2f80c94fbb5e4bd7a6189d.tar.gz st-d5f3d120eae2377b8a2f80c94fbb5e4bd7a6189d.tar.bz2 |
remove dup of default window size.
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |