Mercurial > vim
changeset 10994:fdf42c56bb2e v8.0.0386
patch 8.0.0386: tiny build has a problem with generating the options test
commit https://github.com/vim/vim/commit/5b3af14b34c97ab58bfd4699bc2f3e5a2b704117
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Feb 27 22:59:40 2017 +0100
patch 8.0.0386: tiny build has a problem with generating the options test
Problem: Tiny build has a problem with generating the options test.
Solution: Change the "if" to skip over statements.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 27 Feb 2017 23:00:05 +0100 |
parents | 495e11773ed8 |
children | f5c48a96a0b7 |
files | src/gen_opt_test.vim src/version.c |
diffstat | 2 files changed, 8 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gen_opt_test.vim +++ b/src/gen_opt_test.vim @@ -1,10 +1,10 @@ " Script to generate testdir/opt_test.vim from option.c -if 0 - finish -endif +set cpo=&vim -set cpo=&vim +" Only do this when build with the +eval feature. +if 1 + set nomore let script = [ @@ -130,7 +130,6 @@ let test_values = { \ 'winaltkeys': [['menu', 'no'], ['', 'xxx']], \ \ 'luadll': [[], []], - \ 'macatsui': [[], []], \ 'perldll': [[], []], \ 'pythondll': [[], []], \ 'pythonthreedll': [[], []], @@ -192,4 +191,6 @@ call add(script, 'let &lines = save_line call writefile(script, 'testdir/opt_test.vim') +endif + qa!