about summary refs log tree commit diff
path: root/Doc
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2003-02-18 15:53:19 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2003-02-18 15:53:19 +0000
commit3f588ef05f56031de452e940b0f4b4fd5453b4ed (patch)
tree9b189a6c12ca29e5319f9502233b07e20a7ed4ea /Doc
parentee5d13e7287c1cdd18422fc1444089e5e10532ee (diff)
downloadzsh-3f588ef05f56031de452e940b0f4b4fd5453b4ed.tar.gz
zsh-3f588ef05f56031de452e940b0f4b4fd5453b4ed.tar.xz
zsh-3f588ef05f56031de452e940b0f4b4fd5453b4ed.zip
merge changes from 4.1
Diffstat (limited to 'Doc')
-rw-r--r--Doc/Zsh/builtins.yo5
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/Zsh/builtins.yo b/Doc/Zsh/builtins.yo
index 17a65a53a..54f1db221 100644
--- a/Doc/Zsh/builtins.yo
+++ b/Doc/Zsh/builtins.yo
@@ -1283,7 +1283,7 @@ flag is given.
 )
 findex(unset)
 cindex(parameters, unsetting)
-item(tt(unset) [ tt(-fm) ] var(name) ...)(
+item(tt(unset) [ tt(-fmv) ] var(name) ...)(
 Each named parameter is unset.
 Local parameters remain local even if unset; they appear unset within scope,
 but the previous value will still reappear when the scope ends.
@@ -1297,6 +1297,9 @@ be quoted) and all parameters with matching names are unset.  Note that this
 cannot be used when unsetting associative array elements, as the subscript
 will be treated as part of the pattern.
 
+The tt(-v) flag specifies that var(name) refers to parameters. This is the
+default behaviour.
+
 tt(unset -f) is equivalent to tt(unfunction).
 )
 findex(unsetopt)