diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-01-19 15:55:06 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-01-19 15:55:06 +0100 |
commit | 7e506b6a420588b01dbcbed9ad968b0e6d6a8785 (patch) | |
tree | 80a1e4822f8dc3fe008dc8de530966e15fd507b1 /src/testdir/test1.in | |
parent | 6d8027a6c2b80318ca154ca6cde0fd930f149f03 (diff) | |
download | vim-git-7e506b6a420588b01dbcbed9ad968b0e6d6a8785.tar.gz |
updated for version 7.2.336v7.2.336
Problem: MzScheme interface can't evaluate an expression.
Solution: Add mzeval(). (Sergey Khorev)
Diffstat (limited to 'src/testdir/test1.in')
-rw-r--r-- | src/testdir/test1.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/testdir/test1.in b/src/testdir/test1.in index 6d1bddee9..bdcc01d08 100644 --- a/src/testdir/test1.in +++ b/src/testdir/test1.in @@ -13,6 +13,7 @@ set like small.vim above. tiny.vim is sourced by tests that require the If Vim was not compiled with the +multi_byte feature, the mbyte.vim script will be set like small.vim above. mbyte.vim is sourced by tests that require the +multi_byte feature. +Similar logic is applied to the +mzscheme feature, using mzscheme.vim. STARTTEST :" Write a single line to test.out to check if testing works at all. @@ -25,8 +26,11 @@ ae! test.ok w! test.out qa! :w! mbyte.vim +:w! mzscheme.vim :" If +multi_byte feature supported, make mbyte.vim empty. :if has("multi_byte") | sp another | w! mbyte.vim | q | endif +:" If +mzscheme feature supported, make mzscheme.vim empty. +:if has("mzscheme") | sp another | w! mzscheme.vim | q | endif :" If +eval feature supported quit here, leaving tiny.vim and small.vim empty. :" Otherwise write small.vim to skip the test. :if 1 | q! | endif |