Skip to content

Commit 1b01005

Browse files
committed
patch 7.4.2365
Problem: Needless line break. Confusing directory name. Solution: Remove line break. Prepend "../" to "tools".
1 parent 220adb1 commit 1b01005

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ MINOR = 4
140140
# > nmake -f Make_mvc.mak testclean
141141
# > nmake -f Make_mvc.mak test
142142
# - check the output.
143-
# - Rename (using tools/rename.bat):
143+
# - Rename (using ../tools/rename.bat):
144144
# vim.exe to vimw32.exe
145145
# tee/tee.exe to teew32.exe
146146
# xxd/xxd.exe to xxdw32.exe

runtime/doc/version8.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14493,4 +14493,9 @@ Problem: Sort test sometimes fails.
1449314493
Solution: Add it to the list of flaky tests.
1449414494
Files: src/testdir/runtest.vim
1449514495

14496+
Patch 7.4.2365
14497+
Problem: Needless line break. Confusing directory name.
14498+
Solution: Remove line break. Prepend "../" to "tools".
14499+
Files: Makefile, src/normal.c
14500+
1449614501
vim:tw=78:ts=8:ft=help:norl:

src/normal.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6099,8 +6099,7 @@ nv_up(cmdarg_T *cap)
60996099
* cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
61006100
*/
61016101
static void
6102-
nv_down(
6103-
cmdarg_T *cap)
6102+
nv_down(cmdarg_T *cap)
61046103
{
61056104
if (mod_mask & MOD_MASK_SHIFT)
61066105
{

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+
2365,
766768
/**/
767769
2364,
768770
/**/

0 commit comments

Comments
 (0)