Skip to content

Commit 89eaa41

Browse files
committed
patch 7.4.2135
Problem: Various tiny issues. Solution: Update comments, white space, etc.
1 parent b54c3ff commit 89eaa41

9 files changed

Lines changed: 20 additions & 15 deletions

File tree

runtime/menu.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
" You can also use this as a start for your own set of menus.
33
"
44
" Maintainer: Bram Moolenaar <[email protected]>
5-
" Last Change: 2014 May 22
5+
" Last Change: 2016 Jul 27
66

77
" Note that ":an" (short for ":anoremenu") is often used to make a menu work
88
" in all modes and avoid side effects from mappings defined by the user.

src/INSTALLpc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Building with Visual Studio (VS 98, VS .NET, VS .NET 2003, VS 2005, VS 2008,
4949
VS2010, VS2012, VS2013 and VS2015) is straightforward. (These instructions
5050
should also work for VS 4 and VS 5.)
5151

52-
Using VS C++ 2008 Express is recommended, the binaries build with that run on
52+
Using VS C++ 2008 Express is recommended, the binaries built with that run on
5353
nearly all platforms. Binaries from later versions may not run on Windows 95
5454
or XP.
5555

src/diff.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ diff_buf_add(buf_T *buf)
135135
return;
136136
}
137137

138-
EMSGN(_("E96: Can not diff more than %ld buffers"), DB_COUNT);
138+
EMSGN(_("E96: Cannot diff more than %ld buffers"), DB_COUNT);
139139
}
140140

141141
/*

src/digraph.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2460,4 +2460,3 @@ keymap_unload(void)
24602460
}
24612461

24622462
#endif /* FEAT_KEYMAP */
2463-

src/testdir/Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ test1.out: test1.in
8080
@-/bin/sh -c "sleep .2 > /dev/null 2>&1 || sleep 1"
8181
-$(RUN_VIM) $*.in
8282

83-
# For flaky tests retry one time.
84-
@/bin/sh -c "if test -f test.out -a $* = test61; then \
85-
if diff test.out $*.ok; \
86-
then echo flaky test ok first time; \
87-
else rm -rf $*.failed $(RM_ON_RUN); \
88-
$(RUN_VIM) $*.in; \
89-
fi \
90-
fi"
83+
# For flaky tests retry one time. No tests at the moment.
84+
#@/bin/sh -c "if test -f test.out -a $* = test61; then \
85+
# if diff test.out $*.ok; \
86+
# then echo flaky test ok first time; \
87+
# else rm -rf $*.failed $(RM_ON_RUN); \
88+
# $(RUN_VIM) $*.in; \
89+
# fi \
90+
# fi"
9191

9292
# Check if the test.out file matches test.ok.
9393
@/bin/sh -c "if test -f test.out; then \

src/testdir/test80.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Test for *sub-replace-special* and *sub-replace-expression* on substitue().
2-
Test for submatch() on substitue().
1+
Test for *sub-replace-special* and *sub-replace-expression* on substitute().
2+
Test for submatch() on substitute().
33
Test for *:s%* on :substitute.
44

55
STARTTEST

src/testdir/test_channel.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1320,7 +1320,7 @@ func Test_collapse_buffers()
13201320
1,$delete
13211321
call job_start('cat test_channel.vim', {'out_io': 'buffer', 'out_name': 'testout'})
13221322
call WaitFor('line("$") > g:linecount')
1323-
call assert_true(line('$') > g:linecount)
1323+
call assert_inrange(g:linecount + 1, g:linecount + 2, line('$'))
13241324
bwipe!
13251325
endfunc
13261326

src/version.c

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

764764
static int included_patches[] =
765765
{ /* Add new patch number below this line */
766+
/**/
767+
2135,
766768
/**/
767769
2134,
768770
/**/

src/xpm/README.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ This is XPM library compiled for Windows which is intended for use with Vim
44
Libraries in x86 directory were compiled with MSVC6 and MinGW. Proposed
55
commands to compile Vim are:
66

7+
If you want to build XPM library by yourself, you may want to use the
8+
following Win32 port:
9+
https://github.com/koron/libXpm-win32
10+
711
Any version of MSVC starting from version 6.0:
812
nmake -f Make_mvc.mak GUI=yes CSCOPE=yes NETBEANS=yes XPM=e:\hg\xpm\x86
913

0 commit comments

Comments
 (0)