diff options
author | Peter Stephenson <pws@zsh.org> | 2016-10-03 13:43:20 +0100 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2016-10-03 13:43:20 +0100 |
commit | 4ab3fcc90d928d200f9e70c81189079c3316b42d (patch) | |
tree | 0e0ee027291957ac1f14126c7a4674cfcd19f435 /Src/Zle/computil.c | |
parent | 36a11804b467d7553f8fdaed9320869d8d984f77 (diff) | |
download | zsh-4ab3fcc90d928d200f9e70c81189079c3316b42d.tar.gz zsh-4ab3fcc90d928d200f9e70c81189079c3316b42d.tar.xz zsh-4ab3fcc90d928d200f9e70c81189079c3316b42d.zip |
39545: Add some missing unqueue_signals().
All of these are added simply to fit existing logic in other branches.
Diffstat (limited to 'Src/Zle/computil.c')
-rw-r--r-- | Src/Zle/computil.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Src/Zle/computil.c b/Src/Zle/computil.c index 27b78cd61..e9bad1cab 100644 --- a/Src/Zle/computil.c +++ b/Src/Zle/computil.c @@ -4865,6 +4865,7 @@ bin_compfiles(char *nam, char **args, UNUSED(Options ops), UNUSED(int func)) } queue_signals(); if (!(tmp = getaparam(args[1]))) { + unqueue_signals(); zwarnnam(nam, "unknown parameter: %s", args[1]); return 0; } |