kre 3b5786dccc More fallout from the fix for PR bin/48875 - this one found just by
code reading, rather than any actual real use case failing.

With this script
	f()
	{
		echo hello $1
	}

	exec 3>&1
	echo $(
		for i in a b c
		do
			echo @$i
			f >&3
		done >/tmp/foo
	)
	echo foo= $(cat /tmp/foo)

what should be output is

	hello
	hello
	hello

	foo= @a @b @c

but since the (my) 48875 fix the other day, we've been getting

	hello
	@b
	hello
	@c
	hello

	foo= @a

This fixes that.   I think (hope) this is the last of these fixes...
2016-05-13 10:32:52 +00:00
..
2016-03-16 22:36:21 +00:00
2016-02-29 23:50:59 +00:00
2016-03-16 22:36:40 +00:00
2016-05-11 17:28:30 +00:00
2016-03-16 19:02:26 +00:00
2016-03-31 16:28:23 +00:00