Patch 7.4.1563
Problem: Partial test fails on windows.
Solution: Return 1 or -1 from compare function.
Files: src/testdir/test_partial.vim
*** ../vim-7.4.1562/src/testdir/test_partial.vim 2016-03-14
23:04:49.702923020 +0100
--- src/testdir/test_partial.vim 2016-03-15 11:04:17.338771843 +0100
***************
*** 9,17 ****
return 0
endif
if a:up
! return a:one > a:two
endif
! return a:one < a:two
endfunc
func Test_partial_args()
--- 9,17 ----
return 0
endif
if a:up
! return a:one > a:two ? 1 : -1
endif
! return a:one < a:two ? 1 : -1
endfunc
func Test_partial_args()
*** ../vim-7.4.1562/src/version.c 2016-03-14 23:45:30.897239153 +0100
--- src/version.c 2016-03-15 11:04:58.190346716 +0100
***************
*** 745,746 ****
--- 745,748 ----
{ /* Add new patch number below this line */
+ /**/
+ 1563,
/**/
--
I wonder how much deeper the ocean would be without sponges.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.