|
Karsten Hopp |
3f19a0 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
3f19a0 |
Subject: Patch 7.3.246
|
|
Karsten Hopp |
3f19a0 |
Fcc: outbox
|
|
Karsten Hopp |
3f19a0 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
3f19a0 |
Mime-Version: 1.0
|
|
Karsten Hopp |
3f19a0 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
3f19a0 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
3f19a0 |
------------
|
|
Karsten Hopp |
3f19a0 |
|
|
Karsten Hopp |
3f19a0 |
Patch 7.3.246 (after 7.3.235)
|
|
Karsten Hopp |
3f19a0 |
Problem: Repeating "f4" in "4444" skips one 4.
|
|
Karsten Hopp |
3f19a0 |
Solution: Check the t_cmd flag. (Christian Brabandt)
|
|
Karsten Hopp |
3f19a0 |
Files: src/search.c
|
|
Karsten Hopp |
3f19a0 |
|
|
Karsten Hopp |
3f19a0 |
|
|
Karsten Hopp |
3f19a0 |
*** ../vim-7.3.245/src/search.c 2011-06-26 05:36:07.000000000 +0200
|
|
Karsten Hopp |
3f19a0 |
--- src/search.c 2011-07-15 13:16:49.000000000 +0200
|
|
Karsten Hopp |
3f19a0 |
***************
|
|
Karsten Hopp |
3f19a0 |
*** 1585,1591 ****
|
|
Karsten Hopp |
3f19a0 |
/* Force a move of at least one char, so ";" and "," will move the
|
|
Karsten Hopp |
3f19a0 |
* cursor, even if the cursor is right in front of char we are looking
|
|
Karsten Hopp |
3f19a0 |
* at. */
|
|
Karsten Hopp |
3f19a0 |
! if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1)
|
|
Karsten Hopp |
3f19a0 |
stop = FALSE;
|
|
Karsten Hopp |
3f19a0 |
}
|
|
Karsten Hopp |
3f19a0 |
|
|
Karsten Hopp |
3f19a0 |
--- 1585,1591 ----
|
|
Karsten Hopp |
3f19a0 |
/* Force a move of at least one char, so ";" and "," will move the
|
|
Karsten Hopp |
3f19a0 |
* cursor, even if the cursor is right in front of char we are looking
|
|
Karsten Hopp |
3f19a0 |
* at. */
|
|
Karsten Hopp |
3f19a0 |
! if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
|
|
Karsten Hopp |
3f19a0 |
stop = FALSE;
|
|
Karsten Hopp |
3f19a0 |
}
|
|
Karsten Hopp |
3f19a0 |
|
|
Karsten Hopp |
3f19a0 |
*** ../vim-7.3.245/src/version.c 2011-07-15 13:09:46.000000000 +0200
|
|
Karsten Hopp |
3f19a0 |
--- src/version.c 2011-07-15 13:20:40.000000000 +0200
|
|
Karsten Hopp |
3f19a0 |
***************
|
|
Karsten Hopp |
3f19a0 |
*** 711,712 ****
|
|
Karsten Hopp |
3f19a0 |
--- 711,714 ----
|
|
Karsten Hopp |
3f19a0 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
3f19a0 |
+ /**/
|
|
Karsten Hopp |
3f19a0 |
+ 246,
|
|
Karsten Hopp |
3f19a0 |
/**/
|
|
Karsten Hopp |
3f19a0 |
|
|
Karsten Hopp |
3f19a0 |
--
|
|
Karsten Hopp |
3f19a0 |
GALAHAD turns back. We see from his POV the lovely ZOOT standing by him
|
|
Karsten Hopp |
3f19a0 |
smiling enchantingly and a number of equally delectable GIRLIES draped
|
|
Karsten Hopp |
3f19a0 |
around in the seductively poulticed room. They look at him smilingly and
|
|
Karsten Hopp |
3f19a0 |
wave.
|
|
Karsten Hopp |
3f19a0 |
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
|
|
Karsten Hopp |
3f19a0 |
|
|
Karsten Hopp |
3f19a0 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
3f19a0 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
3f19a0 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
3f19a0 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|