mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-23 17:01:05 +02:00
36460: Discard benign error when no one is reading from pipe
This commit is contained in:
parent
45e67c3552
commit
ca9fdda408
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2015-09-10 Peter Stephenson <p.stephenson@samsung.com>
|
||||||
|
|
||||||
|
* 36460: Test/E01options.ztst: Discard benign error on failure
|
||||||
|
to write to pipe with no one reading.
|
||||||
|
|
||||||
2015-09-08 Oliver Kiddle <opk@zsh.org>
|
2015-09-08 Oliver Kiddle <opk@zsh.org>
|
||||||
|
|
||||||
36422: Src/compat.c: add missing unmeta()
|
36422: Src/compat.c: add missing unmeta()
|
||||||
|
|
|
@ -995,7 +995,7 @@
|
||||||
print this is bar >bar
|
print this is bar >bar
|
||||||
fn() {
|
fn() {
|
||||||
local NULLCMD=cat READNULLCMD=cat
|
local NULLCMD=cat READNULLCMD=cat
|
||||||
echo hello | >foo
|
{ echo hello | >foo } 2>/dev/null
|
||||||
cat foo
|
cat foo
|
||||||
<bar
|
<bar
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue