diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-01-19 22:18:32 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-01-19 22:18:32 +0000 |
commit | 383f9bc30278b6d803d98e496b14cc867ce651ad (patch) | |
tree | fa0fcae7ec276ae69800b64ca7997d961158a94e /src/testdir/test49.vim | |
parent | c92ad2e2c2451365d25d84c52dbcbac811797171 (diff) | |
download | vim-383f9bc30278b6d803d98e496b14cc867ce651ad.zip |
updated for version 7.0042
Diffstat (limited to 'src/testdir/test49.vim')
-rw-r--r-- | src/testdir/test49.vim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/testdir/test49.vim b/src/testdir/test49.vim index 24c287357..97db66d33 100644 --- a/src/testdir/test49.vim +++ b/src/testdir/test49.vim @@ -1,6 +1,6 @@ " Vim script language tests " Author: Servatius Brandt <Servatius.Brandt@fujitsu-siemens.com> -" Last Change: 2005 Jan 16 +" Last Change: 2005 Jan 18 "------------------------------------------------------------------------------- " Test environment {{{1 @@ -8314,6 +8314,7 @@ if ExtraVim() else let v:errmsg = escape(v:errmsg, '"') Xout "Expr" a:n.": Unexpected message:" v:errmsg + Xout "Expected: " . a:enr . ': ' . a:emsg let g:taken = g:taken . "X" endif endif @@ -8377,7 +8378,7 @@ if ExtraVim() call MSG(t, 'E15', "Invalid expression") endif else - if t == 2 || t == 4 + if t <= 2 || t == 4 || t == 5 || t == 6 || t == 8 call MSG(t, 'E475', 'Invalid argument\>') else call MSG(t, 'E121', "Undefined variable") |