Skip to content

Commit 4338f80

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 89f8880 + dd905a2 commit 4338f80

21 files changed

Lines changed: 192 additions & 133 deletions

appveyor.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ build_script:
2626
test_script:
2727
- cd src/testdir
2828
# Testing with MSVC gvim
29+
- path C:\Python35-x64;%PATH%
2930
- nmake -f Make_dos.mak VIMPROG=..\gvim
3031
- nmake -f Make_dos.mak clean
3132
# Testing with MingW console version
3233
- nmake -f Make_dos.mak VIMPROG=..\vim
3334

34-
# vim: sw=2 sts=2 et ts=2 sr
35+
# vim: sw=2 sts=2 et ts=8 sr

src/Makefile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2044,7 +2044,6 @@ test1 \
20442044
test_autoformat_join \
20452045
test_breakindent \
20462046
test_changelist \
2047-
test_charsearch \
20482047
test_close_count \
20492048
test_command_count \
20502049
test_comparators \
@@ -2063,13 +2062,13 @@ test1 \
20632062
test11 test12 test13 test14 test15 test17 test18 test19 \
20642063
test20 test21 test22 test23 test24 test25 test26 test27 test28 test29 \
20652064
test30 test31 test32 test33 test34 test36 test37 test38 test39 \
2066-
test40 test41 test42 test43 test44 test45 test46 test48 test49 \
2065+
test40 test41 test42 test43 test44 test45 test48 test49 \
20672066
test50 test51 test52 test53 test54 test55 test56 test57 test58 test59 \
20682067
test60 test64 test65 test66 test67 test68 test69 \
20692068
test70 test71 test72 test73 test74 test75 test76 test77 test78 test79 \
2070-
test80 test81 test82 test83 test84 test85 test86 test87 test88 test89 \
2069+
test80 test82 test83 test84 test85 test86 test87 test88 test89 \
20712070
test90 test91 test92 test93 test94 test95 test97 test98 test99 \
2072-
test100 test101 test102 test103 test104 test107 test108:
2071+
test100 test101 test103 test104 test107 test108:
20732072
cd testdir; rm -f [email protected]; $(MAKE) -f Makefile [email protected] VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
20742073

20752074
# Run individual NEW style test, assuming that Vim was already compiled.
@@ -2082,6 +2081,7 @@ test_arglist \
20822081
test_bufwintabinfo \
20832082
test_cdo \
20842083
test_channel \
2084+
test_charsearch \
20852085
test_cmdline \
20862086
test_cscope \
20872087
test_cursor_func \
@@ -2099,6 +2099,7 @@ test_arglist \
20992099
test_file_perm \
21002100
test_filter_cmd \
21012101
test_filter_map \
2102+
test_fnameescape \
21022103
test_fnamemodify \
21032104
test_glob2regpat \
21042105
test_gn \
@@ -2147,6 +2148,7 @@ test_arglist \
21472148
test_startup_utf8 \
21482149
test_stat \
21492150
test_statusline \
2151+
test_substitute \
21502152
test_syn_attr \
21512153
test_syntax \
21522154
test_tabline \

src/appveyor.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ mingw32-make.exe -f Make_ming.mak clean
1616
:: with specified features without python.
1717
echo "Building MinGW 32bit GUI version"
1818
if "%FEATURE%" == "HUGE" (
19-
mingw32-make.exe -f Make_ming.mak OPTIMIZE=speed CHANNEL=yes GUI=yes IME=yes MBYTE=yes ICONV=yes DEBUG=no PYTHON_VER=27 DYNAMIC_PYTHON=yes PYTHON=C:\Python27 PYTHON3_VER=34 DYNAMIC_PYTHON3=yes PYTHON3=C:\Python34 FEATURES=%FEATURE% || exit 1
19+
mingw32-make.exe -f Make_ming.mak OPTIMIZE=speed CHANNEL=yes GUI=yes IME=yes MBYTE=yes ICONV=yes DEBUG=no PYTHON_VER=27 DYNAMIC_PYTHON=yes PYTHON=C:\Python27 PYTHON3_VER=35 DYNAMIC_PYTHON3=yes PYTHON3=C:\Python35 FEATURES=%FEATURE% || exit 1
2020
) ELSE (
2121
mingw32-make.exe -f Make_ming.mak OPTIMIZE=speed GUI=yes IME=yes MBYTE=yes ICONV=yes DEBUG=no FEATURES=%FEATURE% || exit 1
2222
)
@@ -31,7 +31,7 @@ nmake -f Make_mvc2.mak clean
3131
:: GUI needs to be last, so that testing works
3232
echo "Building MSVC 64bit GUI Version"
3333
if "%FEATURE%" == "HUGE" (
34-
nmake -f Make_mvc2.mak DIRECTX=yes CPU=AMD64 CHANNEL=yes OLE=no GUI=yes IME=yes MBYTE=yes ICONV=yes DEBUG=no PYTHON_VER=27 DYNAMIC_PYTHON=yes PYTHON=C:\Python27-x64 PYTHON3_VER=34 DYNAMIC_PYTHON3=yes PYTHON3=C:\Python34-x64 FEATURES=%FEATURE% || exit 1
34+
nmake -f Make_mvc2.mak DIRECTX=yes CPU=AMD64 CHANNEL=yes OLE=no GUI=yes IME=yes MBYTE=yes ICONV=yes DEBUG=no PYTHON_VER=27 DYNAMIC_PYTHON=yes PYTHON=C:\Python27-x64 PYTHON3_VER=35 DYNAMIC_PYTHON3=yes PYTHON3=C:\Python35-x64 FEATURES=%FEATURE% || exit 1
3535
) ELSE (
3636
nmake -f Make_mvc2.mak CPU=AMD64 OLE=no GUI=yes IME=yes MBYTE=yes ICONV=yes DEBUG=no FEATURES=%FEATURE% || exit 1
3737
)

src/ex_cmds2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1222,8 +1222,8 @@ check_due_timer(void)
12221222
}
12231223
else
12241224
{
1225-
free_timer(timer);
12261225
remove_timer(timer);
1226+
free_timer(timer);
12271227
}
12281228
/* the callback may do anything, start all over */
12291229
break;

src/option.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1747,7 +1747,7 @@ static struct vimoption options[] =
17471747
#else
17481748
(char_u *)NULL, PV_NONE,
17491749
#endif
1750-
{(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1750+
{(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
17511751
{"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
17521752
#ifdef FEAT_WINDOWS
17531753
(char_u *)&p_ls, PV_NONE,

src/testdir/Make_all.mak

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ SCRIPTS_ALL = \
4242
test43.out \
4343
test44.out \
4444
test45.out \
45-
test46.out \
4645
test48.out \
4746
test51.out \
4847
test53.out \
@@ -64,7 +63,6 @@ SCRIPTS_ALL = \
6463
test77.out \
6564
test79.out \
6665
test80.out \
67-
test81.out \
6866
test82.out \
6967
test84.out \
7068
test88.out \
@@ -77,7 +75,6 @@ SCRIPTS_ALL = \
7775
test98.out \
7876
test99.out \
7977
test101.out \
80-
test102.out \
8178
test103.out \
8279
test104.out \
8380
test107.out \
@@ -86,7 +83,6 @@ SCRIPTS_ALL = \
8683
test_autoformat_join.out \
8784
test_breakindent.out \
8885
test_changelist.out \
89-
test_charsearch.out \
9086
test_close_count.out \
9187
test_command_count.out \
9288
test_comparators.out \
@@ -157,11 +153,13 @@ NEW_TESTS = test_arglist.res \
157153
test_bufwintabinfo.res \
158154
test_cdo.res \
159155
test_channel.res \
156+
test_charsearch.res \
160157
test_cmdline.res \
161158
test_cscope.res \
162159
test_diffmode.res \
163160
test_digraph.res \
164161
test_farsi.res \
162+
test_fnameescape.res \
165163
test_gn.res \
166164
test_gui.res \
167165
test_hardcopy.res \
@@ -185,6 +183,7 @@ NEW_TESTS = test_arglist.res \
185183
test_startup.res \
186184
test_startup_utf8.res \
187185
test_stat.res \
186+
test_substitute.res \
188187
test_syntax.res \
189188
test_textobjects.res \
190189
test_undo.res \

src/testdir/test102.in

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/testdir/test102.ok

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/testdir/test46.in

Lines changed: 0 additions & 27 deletions
This file was deleted.

src/testdir/test46.ok

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)