diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2011-10-26 12:45:10 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2011-10-26 12:45:10 +0000 |
commit | 31c422299de16868143a95da97f8de33e7a2880d (patch) | |
tree | 443216b094de56578404498106179ce4d0a3478d /Src/Zle/complete.c | |
parent | aba557a13cd1099ade8cd5c2bf7a109df3c6d77f (diff) | |
download | zsh-31c422299de16868143a95da97f8de33e7a2880d.tar.gz zsh-31c422299de16868143a95da97f8de33e7a2880d.tar.xz zsh-31c422299de16868143a95da97f8de33e7a2880d.zip |
29859: compadd handles its own options
Diffstat (limited to 'Src/Zle/complete.c')
-rw-r--r-- | Src/Zle/complete.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/complete.c b/Src/Zle/complete.c index 6398fd3e7..ea5e41f5f 100644 --- a/Src/Zle/complete.c +++ b/Src/Zle/complete.c @@ -1544,7 +1544,7 @@ cond_range(char **a, int id) } static struct builtin bintab[] = { - BUILTIN("compadd", 0, bin_compadd, 0, -1, 0, NULL, NULL), + BUILTIN("compadd", BINF_HANDLES_OPTS, bin_compadd, 0, -1, 0, NULL, NULL), BUILTIN("compset", 0, bin_compset, 1, 3, 0, NULL, NULL), }; |