From 4616055177b73781e5884f08bf3519b8871a7913 Mon Sep 17 00:00:00 2001 From: Eric Mullins Date: Mon, 12 Oct 2009 19:25:17 -0600 Subject: [PATCH] neglected this for the auto-width updating in xboard --- xboard.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/xboard.c b/xboard.c index e8d5232..86fda44 100644 --- a/xboard.c +++ b/xboard.c @@ -8398,6 +8398,10 @@ int StartChildProcess(cmdLine, dir, pr) SetUpChildIO(to_prog, from_prog); + #ifdef SIGWINCH + signal(SIGWINCH, TermSizeSigHandler); + #endif + if ((pid = fork()) == 0) { /* Child process */ // [HGM] PSWBTM: made order resistant against case where fd of created pipe was 0 or 1 -- 1.7.0.4