Skip to content

Commit e6715e4

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents b04e8e1 + 7487792 commit e6715e4

5 files changed

Lines changed: 18 additions & 5 deletions

File tree

appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
version: "{build}"
22

3+
skip_tags: true
4+
35
before_build:
46
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 /release'
57

src/ex_getln.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3715,7 +3715,7 @@ ExpandOne(xp, str, orig, options, mode)
37153715
}
37163716
else
37173717
#endif
3718-
c0 = xp->xp_files[i][len];
3718+
c0 = xp->xp_files[0][len];
37193719
for (i = 1; i < xp->xp_numfiles; ++i)
37203720
{
37213721
#ifdef FEAT_MBYTE

src/testdir/test94.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Test cases:
1717

1818
STARTTEST
1919
:so small.vim
20-
:set nocp viminfo+=nviminfo
20+
:set enc=utf-8 nocp viminfo+=nviminfo
2121
:
2222
:" User functions
2323
:function MoveToCap()

src/testdir/test_utf8.in

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Tests for Unicode manipulations vim: set ft=vim :
33
STARTTEST
44
:so small.vim
55
:set encoding=utf-8
6+
:"
67
:" Visual block Insert adjusts for multi-byte char
78
:new
89
:call setline(1, ["aaa", "あああ", "bbb"])
@@ -11,29 +12,31 @@ STARTTEST
1112
:
1213
:bwipeout!
1314
:$put=r
15+
:"
1416
:" Test for built-in function strchars()
1517
:for str in ["a", "あいa", "A\u20dd", "A\u20dd\u20dd", "\u20dd"]
1618
: $put=strchars(str)
1719
: $put=strchars(str, 0)
1820
: $put=strchars(str, 1)
1921
:endfor
22+
:"
2023
:" Test for customlist completion
2124
:function! CustomComplete1(lead, line, pos)
2225
: return ['', '']
2326
:endfunction
24-
:command -nargs=1 -complete=customlist,CustomComplete1 Test1 :
27+
:command -nargs=1 -complete=customlist,CustomComplete1 Test1 echo
2528
:call feedkeys(":Test1 \<C-L>'\<C-B>$put='\<CR>", 't')
2629
:
2730
:function! CustomComplete2(lead, line, pos)
2831
: return ['あたし', 'あたま', 'あたりめ']
2932
:endfunction
30-
:command -nargs=1 -complete=customlist,CustomComplete2 Test2 :
33+
:command -nargs=1 -complete=customlist,CustomComplete2 Test2 echo
3134
:call feedkeys(":Test2 \<C-L>'\<C-B>$put='\<CR>", 't')
3235
:
3336
:function! CustomComplete3(lead, line, pos)
3437
: return ['Nこ', 'Nん', 'Nぶ']
3538
:endfunction
36-
:command -nargs=1 -complete=customlist,CustomComplete3 Test3 :
39+
:command -nargs=1 -complete=customlist,CustomComplete3 Test3 echo
3740
:call feedkeys(":Test3 \<C-L>'\<C-B>$put='\<CR>", 't')
3841
:
3942
:call garbagecollect(1)

src/version.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -756,6 +756,14 @@ static char *(features[]) =
756756

757757
static int included_patches[] =
758758
{ /* Add new patch number below this line */
759+
/**/
760+
934,
761+
/**/
762+
933,
763+
/**/
764+
932,
765+
/**/
766+
931,
759767
/**/
760768
930,
761769
/**/

0 commit comments

Comments
 (0)