~petersanchez/st

d60ee7337b5f378d8858ef3774c5552d2c8e54fa — Eon S. Jeon 10 years ago ef1dc9f
Prevent resizing stdin

This fixes a bug that the parent tty gets resized whenever you launch
st through command line.

The problem was that ioctl was resizing cmdfd before it gets
initialized in ttynew. Since cmdfd is a global variable, its initial
value is 0, and consequently stdin was being resized.
1 files changed, 1 insertions(+), 1 deletions(-)

M st.c
M st.c => st.c +1 -1
@@ 3667,11 3667,11 @@ run(void) {
		}
	}

	ttynew();
	if(!xw.isfixed)
		cresize(w, h);
	else
		cresize(xw.fw, xw.fh);
	ttynew();

	gettimeofday(&lastblink, NULL);
	gettimeofday(&last, NULL);