summaryrefslogtreecommitdiff
path: root/src/testdir/test_expand_dllpath.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-02-25 22:18:43 +0100
committerBram Moolenaar <Bram@vim.org>2017-02-25 22:18:43 +0100
commita713ff819d134dc34e507c05273c935bfc17e795 (patch)
tree354df0cee3a26436ddba8cd6d745f445772e6fcf /src/testdir/test_expand_dllpath.vim
parent14c2e18b63faaa4056d987fd501a68480cb40c5c (diff)
downloadvim-git-a713ff819d134dc34e507c05273c935bfc17e795.tar.gz
patch 8.0.0372: more options are not always definedv8.0.0372
Problem: More options are not always defined. Solution: Consistently define all possible options.
Diffstat (limited to 'src/testdir/test_expand_dllpath.vim')
-rw-r--r--src/testdir/test_expand_dllpath.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_expand_dllpath.vim b/src/testdir/test_expand_dllpath.vim
index d8ab41668..b3e099a45 100644
--- a/src/testdir/test_expand_dllpath.vim
+++ b/src/testdir/test_expand_dllpath.vim
@@ -14,7 +14,7 @@ func s:test_expand_dllpath(optname)
endfunc
func s:generate_test_if_exists(optname)
- if exists('&' . a:optname)
+ if exists('+' . a:optname)
execute join([
\ 'func Test_expand_' . a:optname . '()',
\ ' call s:test_expand_dllpath("' . a:optname . '")',