1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-20 06:56:05 +02:00

unposted: Etc/BUGS: Add two bugs discussed on -workers@ this week

This commit is contained in:
Daniel Shahaf 2019-12-21 11:35:37 +00:00
parent 6fd4023825
commit 04f41c6b6e
2 changed files with 21 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2019-12-21 Daniel Shahaf <danielsh@apache.org>
* unposted: Etc/BUGS: Add two bugs discussed on -workers@
this week
2019-12-20 dana <dana@dana.is>
* 45055: Doc/Zsh/compsys.yo: Clarify _files documentation

View File

@ -26,3 +26,19 @@ skipped when STTY=... is set for that command
41203 and others: Make it easier to maintain C modules out of tree.
(May require defining a stable API for modules, see 41254)
------------------------------------------------------------------------
44007 - Martijn - exit in trap executes rest of function (prints "fn2")
[[[
trap 'echo $1; exit; echo $2' USR1
fn() {
echo fn1
kill -USR1 $$
echo fn2
}
echo out1
fn trap1 trap2
echo out2
]]]
------------------------------------------------------------------------
45075 - Daniel Shahaf - '{ exit } always { foo }' - docs/code mismatch
and return/exit differences
------------------------------------------------------------------------