diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2008-09-15 08:57:25 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2008-09-15 08:57:25 +0000 |
commit | 6951a1e0b2ce74ad8f2b30243e721c3890dcdda8 (patch) | |
tree | f3bb0eb795da5f0b7b81f64f6db09eb645faf3bd /Test | |
parent | 06cc84ce849c2e28286ea68aed02cb8df2fb9ab7 (diff) | |
download | zsh-6951a1e0b2ce74ad8f2b30243e721c3890dcdda8.tar.gz zsh-6951a1e0b2ce74ad8f2b30243e721c3890dcdda8.tar.xz zsh-6951a1e0b2ce74ad8f2b30243e721c3890dcdda8.zip |
25671: non existing variable in typeset -p should cause status 1
Diffstat (limited to 'Test')
-rw-r--r-- | Test/B02typeset.ztst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/B02typeset.ztst b/Test/B02typeset.ztst index abb549ed6..48a45c15d 100644 --- a/Test/B02typeset.ztst +++ b/Test/B02typeset.ztst @@ -449,7 +449,7 @@ array=(foo bar) fn() { typeset -p array nonexistent; } fn -0:declare -p shouldn't create scoped values +1:declare -p shouldn't create scoped values >typeset -a array >array=(foo bar) ?fn:typeset: no such variable: nonexistent |