Ignore stderr when reading from man command
authorH.G.Muller <hgm@hgm-xboard.(none)>
Mon, 4 Apr 2016 10:00:57 +0000 (12:00 +0200)
committerH.G.Muller <hgm@hgm-xboard.(none)>
Sun, 17 Apr 2016 08:24:57 +0000 (10:24 +0200)
commit908759b935cebda76084535213586637901126f2
treec82a174f8613084238a9837f29e052585b2675e9
parent981710835fb91625593928380d26952642118781
Ignore stderr when reading from man command

BufferCommandOutput was using StartChildProcess also used for engines,
which combines the output from stdout and stderr on the pipe. On FreeBSD
"man -w" produces spurious error messages, however, which would append
to the path of the man file. To work around this we now use popen()
to collect the output of the man command during help clicks.
usystem.c