diff options
| author | Matthew Martin <phy1729@gmail.com> | 2022-06-09 13:37:51 -0700 |
|---|---|---|
| committer | Bart Schaefer <schaefer@zsh.org> | 2022-06-09 13:37:51 -0700 |
| commit | d4955bc0f9403551503012c3f36c841210ce0cd5 (patch) | |
| tree | cbd6ec48725cd5e289b0b5f52139b2d38bd88c22 | |
| parent | 50351: "functions -c" can set signal traps (diff) | |
| download | zsh-d4955bc0f9403551503012c3f36c841210ce0cd5.tar zsh-d4955bc0f9403551503012c3f36c841210ce0cd5.tar.gz zsh-d4955bc0f9403551503012c3f36c841210ce0cd5.tar.bz2 zsh-d4955bc0f9403551503012c3f36c841210ce0cd5.tar.lz zsh-d4955bc0f9403551503012c3f36c841210ce0cd5.tar.xz zsh-d4955bc0f9403551503012c3f36c841210ce0cd5.tar.zst zsh-d4955bc0f9403551503012c3f36c841210ce0cd5.zip | |
50359: fix bad sticky-emulation in "functions -c"
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | Src/builtin.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2022-06-09 Matthew Martin <phy1729@gmail.com> + + * 50359: Src/builtin.c: fix bad sticky-emulation in "functions -c" + 2022-06-09 Bart Schaefer <schaefer@zsh.org> * 50351: Src/builtin.c: "functions -c" can set signal traps diff --git a/Src/builtin.c b/Src/builtin.c index 7f00d9d29..a7b7755a7 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -3305,7 +3305,7 @@ bin_functions(char *name, char **argv, Options ops, int func) if (newsh->redir) newsh->redir->nref++; if (shf->sticky) - newsh->sticky = sticky_emulation_dup(sticky, 0); + newsh->sticky = sticky_emulation_dup(shf->sticky, 0); /* is newsh a signal trap? (adapted from exec.c) */ if (!strncmp(s, "TRAP", 4)) { int signum = getsignum(s + 4); |
