Fix a bug in which terminal output received from the session could be
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Sun, 10 Mar 2013 11:04:07 +0000 (11:04 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Sun, 10 Mar 2013 11:04:07 +0000 (11:04 +0000)
commit68b421ede33e5404a02a8db5fa0299ca2c9f2dcb
tree486e0d473e905ef29b6b5696f1bac7fb816b5fd1
parentbaf723ea141d95eec7a1c4d3baf141c9ec223843
Fix a bug in which terminal output received from the session could be
buffered in terminal.c indefinitely and only released when further
output turned up.

Arose because we suppress the call to term_out from term_data if a
drag-select is in progress, but when the drag-select ends we weren't
proactively calling term_out to release the buffered data. So if your
session generated some terminal output while you were in mid-select,
_and had stopped by the time you let go of the mouse button_, then the
output would just sit there until released by the next call to
term_data.

git-svn-id: svn://svn.tartarus.org/sgt/putty@9768 cda61777-01e9-0310-a592-d414129be87e
terminal.c