diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2003-02-13 13:46:00 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2003-02-13 13:46:00 +0000 |
commit | 6d2921542ebf2d912a860c4f32db979f4361d8b6 (patch) | |
tree | 8571d506ec58144d294acf067e69257814afa1d8 /Src | |
parent | 67512e04ae8759f61c147b1800d2992614ea1ad5 (diff) | |
download | zsh-6d2921542ebf2d912a860c4f32db979f4361d8b6.tar.gz zsh-6d2921542ebf2d912a860c4f32db979f4361d8b6.tar.xz zsh-6d2921542ebf2d912a860c4f32db979f4361d8b6.zip |
18223: satisfy POSIX requirement for a -v flag to unset
Diffstat (limited to 'Src')
-rw-r--r-- | Src/builtin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/builtin.c b/Src/builtin.c index cd622f0ed..09e0805ce 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -126,7 +126,7 @@ static struct builtin builtins[] = BUILTIN("unalias", 0, bin_unhash, 1, -1, 0, "m", "a"), BUILTIN("unfunction", 0, bin_unhash, 1, -1, 0, "m", "f"), BUILTIN("unhash", 0, bin_unhash, 1, -1, 0, "adfm", NULL), - BUILTIN("unset", BINF_PSPECIAL, bin_unset, 1, -1, 0, "fm", NULL), + BUILTIN("unset", BINF_PSPECIAL, bin_unset, 1, -1, 0, "fmv", NULL), BUILTIN("unsetopt", 0, bin_setopt, 0, -1, BIN_UNSETOPT, NULL, NULL), BUILTIN("wait", 0, bin_fg, 0, -1, BIN_WAIT, NULL, NULL), BUILTIN("whence", 0, bin_whence, 0, -1, 0, "acmpvfsw", NULL), |