Re: Patch 7.3.1008

2013-05-24 Fir de Conversatie Bram Moolenaar

Ken Takata wrote:

 2013/05/24 Fri 5:43:25 UTC+9 Bram Moolenaar wrote:
  Patch 7.3.1008
  Problem:Test 95 fails on MS-Windows.
  Solution:   Set 'nomore'. Change \i to \f.  Change multi-byte character to
  something that is not matching \i. (Ken Takata)
  Files:  src/testdir/test95.in, src/testdir/test95.ok
 
 The following hunk is missing:
 
 diff --git a/src/testdir/test95.in b/src/testdir/test95.in
 --- a/src/testdir/test95.in
 +++ b/src/testdir/test95.in
 @@ -7,7 +7,7 @@
  STARTTEST
  :so small.vim
  :so mbyte.vim
 -:set nocp encoding=utf-8 viminfo+=nviminfo
 +:set nocp encoding=utf-8 viminfo+=nviminfo nomore
  : tl is a List of Lists with:
  :regexp pattern
  :text to test the pattern on

Right, I managed to miss that part when fixing the multi-byte issue.
It will come later.

-- 
Hacker: Someone skilled in computer programming (good guy).
Cracker: A hacker that uses his skills to crack software (bad guy).

 /// Bram Moolenaar -- b...@moolenaar.net -- 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 vim_dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Patch 7.3.1008

2013-05-23 Fir de Conversatie Bram Moolenaar

Patch 7.3.1008
Problem:Test 95 fails on MS-Windows.
Solution:   Set 'nomore'. Change \i to \f.  Change multi-byte character to
something that is not matching \i. (Ken Takata)
Files:  src/testdir/test95.in, src/testdir/test95.ok


*** ../vim-7.3.1007/src/testdir/test95.in   2013-05-21 13:30:17.0 
+0200
--- src/testdir/test95.in   2013-05-23 22:36:22.0 +0200
***
*** 30,39 
  :call add(tl, ['\p\+', 'ìa', 'ìa'])
  
  : Test recognition of some character classes
! :call add(tl, ['\i\+', '*§xx ', 'xx'])
! :call add(tl, ['\%#=1\i\+', '*§xx ', 'xx'])
  :call add(tl, ['\f\+', '*Ÿfname ', 'fname'])
! :call add(tl, ['\%#=1\i\+', '*Ÿfname ', 'fname'])
  
  : Combining different tests and features
  :call add(tl, ['[^[=a=]]\+', 'ddaãâbcd', 'dd'])
--- 30,39 
  :call add(tl, ['\p\+', 'ìa', 'ìa'])
  
  : Test recognition of some character classes
! :call add(tl, ['\i\+', '*¨xx ', 'xx'])
! :call add(tl, ['\%#=1\i\+', '*¨xx ', 'xx'])
  :call add(tl, ['\f\+', '*Ÿfname ', 'fname'])
! :call add(tl, ['\%#=1\f\+', '*Ÿfname ', 'fname'])
  
  : Combining different tests and features
  :call add(tl, ['[^[=a=]]\+', 'ddaãâbcd', 'dd'])
*** ../vim-7.3.1007/src/testdir/test95.ok   2013-05-21 13:30:17.0 
+0200
--- src/testdir/test95.ok   2013-05-23 19:34:01.0 +0200
***
*** 8,12 
  OK - \i\+
  OK - \%#=1\i\+
  OK - \f\+
! OK - \%#=1\i\+
  OK - [^[=a=]]\+
--- 8,12 
  OK - \i\+
  OK - \%#=1\i\+
  OK - \f\+
! OK - \%#=1\f\+
  OK - [^[=a=]]\+
*** ../vim-7.3.1007/src/version.c   2013-05-23 22:26:50.0 +0200
--- src/version.c   2013-05-23 22:39:37.0 +0200
***
*** 730,731 
--- 730,733 
  {   /* Add new patch number below this line */
+ /**/
+ 1008,
  /**/

-- 
BLACK KNIGHT: The Black Knight always triumphs. Have at you!
   ARTHUR takes his last leg off.  The BLACK KNIGHT's body lands upright.
BLACK KNIGHT: All right, we'll call it a draw.
 Monty Python and the Holy Grail PYTHON (MONTY) PICTURES LTD

 /// Bram Moolenaar -- b...@moolenaar.net -- 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 vim_dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Patch 7.3.1008

2013-05-23 Fir de Conversatie Ken Takata
Hi Bram,

2013/05/24 Fri 5:43:25 UTC+9 Bram Moolenaar wrote:
 Patch 7.3.1008
 Problem:Test 95 fails on MS-Windows.
 Solution:   Set 'nomore'. Change \i to \f.  Change multi-byte character to
   something that is not matching \i. (Ken Takata)
 Files:src/testdir/test95.in, src/testdir/test95.ok

The following hunk is missing:

diff --git a/src/testdir/test95.in b/src/testdir/test95.in
--- a/src/testdir/test95.in
+++ b/src/testdir/test95.in
@@ -7,7 +7,7 @@
 STARTTEST
 :so small.vim
 :so mbyte.vim
-:set nocp encoding=utf-8 viminfo+=nviminfo
+:set nocp encoding=utf-8 viminfo+=nviminfo nomore
 : tl is a List of Lists with:
 :regexp pattern
 :text to test the pattern on


Thanks,
Ken Takata

-- 
-- 
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 vim_dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.