diff options
| author | Peter Stephenson <pws@zsh.org> | 2014-12-05 18:08:18 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@zsh.org> | 2014-12-05 18:08:18 +0000 |
| commit | 02a8a8c7e4fea2c368098a4ea466240046200eaa (patch) | |
| tree | c9d0f34378edbb7f2408fa26c660f13deffd12cd | |
| parent | 33859: Fix traps in completion (diff) | |
| download | zsh-02a8a8c7e4fea2c368098a4ea466240046200eaa.tar zsh-02a8a8c7e4fea2c368098a4ea466240046200eaa.tar.gz zsh-02a8a8c7e4fea2c368098a4ea466240046200eaa.tar.bz2 zsh-02a8a8c7e4fea2c368098a4ea466240046200eaa.tar.lz zsh-02a8a8c7e4fea2c368098a4ea466240046200eaa.tar.xz zsh-02a8a8c7e4fea2c368098a4ea466240046200eaa.tar.zst zsh-02a8a8c7e4fea2c368098a4ea466240046200eaa.zip | |
33866: addendum to completion trap fix
We need the multifuncdef option on for the trap function definitions to
work. It is by default by this wasn't enforced for the completion
functions.
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | Completion/compinit | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -1,5 +1,8 @@ 2014-12-05 Peter Stephenson <p.stephenson@samsung.com> + * 33866: Completion/compinit: need multifuncdef for TRAPINT + TRAPQUIT definition. + * 33859 with typo fix: Completion/Base/Core/_main_complete: to propagate signal from trap we need to use function style. diff --git a/Completion/compinit b/Completion/compinit index e42430d6c..9470c92f6 100644 --- a/Completion/compinit +++ b/Completion/compinit @@ -133,6 +133,7 @@ _comp_options=( extendedglob glob multibyte + multifuncdef nullglob rcexpandparam unset |
