diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/nvim/testdir/Makefile | 1 | ||||
| -rw-r--r-- | src/nvim/testdir/test_alot.vim | 1 | ||||
| -rw-r--r-- | src/nvim/testdir/test_digraph.vim | 10 | ||||
| -rw-r--r-- | src/nvim/version.c | 2 | 
4 files changed, 4 insertions, 10 deletions
| diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index 7bcc78e58a..59c93f1673 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -31,6 +31,7 @@ NEW_TESTS = \  	    test_bufwintabinfo.res \  	    test_cmdline.res \  	    test_cscope.res \ +	    test_digraph.res \  	    test_diffmode.res \  	    test_gn.res \  	    test_hardcopy.res \ diff --git a/src/nvim/testdir/test_alot.vim b/src/nvim/testdir/test_alot.vim index 0f0fa11f5d..60248bf430 100644 --- a/src/nvim/testdir/test_alot.vim +++ b/src/nvim/testdir/test_alot.vim @@ -4,7 +4,6 @@  source test_assign.vim  source test_autocmd.vim  source test_cursor_func.vim -source test_digraph.vim  source test_execute_func.vim  source test_ex_undo.vim  source test_expr.vim diff --git a/src/nvim/testdir/test_digraph.vim b/src/nvim/testdir/test_digraph.vim index b12e19fa7c..60ae1fd3f4 100644 --- a/src/nvim/testdir/test_digraph.vim +++ b/src/nvim/testdir/test_digraph.vim @@ -4,6 +4,7 @@ if !has("digraphs") || !has("multi_byte")    finish  endif +set enc=utf-8  scriptencoding utf-8  func! Put_Dig(chars) @@ -15,8 +16,6 @@ func! Put_Dig_BS(char1, char2)  endfu  func! Test_digraphs() -  let _enc = &enc -  set enc=utf8    new    call Put_Dig("00")    call assert_equal("∞", getline('.')) @@ -215,16 +214,13 @@ func! Test_digraphs()    call Put_Dig("00")    call Put_Dig("el")    call assert_equal(['␀', 'ü', '∞', 'l'], getline(line('.')-3,line('.'))) -  " reset encoding option -  let &enc = _enc    bw!  endfunc  func! Test_digraphs_option() -  let _enc=&enc    " reset whichwrap option, so that testing <esc><bs>A works,    " without moving up a line -  set enc=utf8 digraph ww= +  set digraph ww=    new    call Put_Dig_BS("0","0")    call assert_equal("∞", getline('.')) @@ -423,8 +419,6 @@ func! Test_digraphs_option()    call Put_Dig_BS("0","0")    call Put_Dig_BS("e","l")    call assert_equal(['␀', 'ü', '∞', 'l'], getline(line('.')-3,line('.'))) -  " reset encoding option -  let &enc = _enc    set nodigraph ww&vim    bw!  endfunc diff --git a/src/nvim/version.c b/src/nvim/version.c index ab7af85815..aab57e5765 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -355,7 +355,7 @@ static int included_patches[] = {    // 2088,    // 2087,    2086, -  // 2085, +  2085,    2084,    // 2083,    2082, | 
