diff options
| author | Barton E. Schaefer <schaefer@zsh.org> | 2017-02-01 17:11:48 -0800 |
|---|---|---|
| committer | Barton E. Schaefer <schaefer@zsh.org> | 2017-02-01 17:11:48 -0800 |
| commit | caddeca1ac638137b26735fc8c63d08c83be6a90 (patch) | |
| tree | 39add3800bfb2d044bcc28fd5762838114594825 /Src/Modules | |
| parent | 40460: WARN_NESTED_VAR: Don't warn when assigning to a slice of an existing a... (diff) | |
| download | zsh-caddeca1ac638137b26735fc8c63d08c83be6a90.tar zsh-caddeca1ac638137b26735fc8c63d08c83be6a90.tar.gz zsh-caddeca1ac638137b26735fc8c63d08c83be6a90.tar.bz2 zsh-caddeca1ac638137b26735fc8c63d08c83be6a90.tar.lz zsh-caddeca1ac638137b26735fc8c63d08c83be6a90.tar.xz zsh-caddeca1ac638137b26735fc8c63d08c83be6a90.tar.zst zsh-caddeca1ac638137b26735fc8c63d08c83be6a90.zip | |
40483 (cf. Eric Freese: 40482): Remove zpty exit hook from forked processes
Diffstat (limited to 'Src/Modules')
| -rw-r--r-- | Src/Modules/zpty.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/Modules/zpty.c b/Src/Modules/zpty.c index 2c87be16f..3c1bef58f 100644 --- a/Src/Modules/zpty.c +++ b/Src/Modules/zpty.c @@ -331,6 +331,7 @@ newptycmd(char *nam, char *pname, char **args, int echo, int nblock) /* This code copied from the clone module, except for getting * * the descriptor from get_pty() and duplicating it to 0/1/2. */ + deletehookfunc("exit", ptyhook); clearjobtab(0); ppid = getppid(); mypid = getpid(); @@ -852,6 +853,7 @@ bin_zpty(char *nam, char **args, Options ops, UNUSED(int func)) } } +/**/ static int ptyhook(UNUSED(Hookdef d), UNUSED(void *dummy)) { |
