]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.246
- new
[packages/vim.git] / 7.3.246
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.246
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.3.246 (after 7.3.235)
11 Problem:    Repeating "f4" in "4444" skips one 4.
12 Solution:   Check the t_cmd flag. (Christian Brabandt)
13 Files:      src/search.c
14
15
16 *** ../vim-7.3.245/src/search.c 2011-06-26 05:36:07.000000000 +0200
17 --- src/search.c        2011-07-15 13:16:49.000000000 +0200
18 ***************
19 *** 1585,1591 ****
20         /* Force a move of at least one char, so ";" and "," will move the
21          * cursor, even if the cursor is right in front of char we are looking
22          * at. */
23 !       if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1)
24             stop = FALSE;
25       }
26   
27 --- 1585,1591 ----
28         /* Force a move of at least one char, so ";" and "," will move the
29          * cursor, even if the cursor is right in front of char we are looking
30          * at. */
31 !       if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
32             stop = FALSE;
33       }
34   
35 *** ../vim-7.3.245/src/version.c        2011-07-15 13:09:46.000000000 +0200
36 --- src/version.c       2011-07-15 13:20:40.000000000 +0200
37 ***************
38 *** 711,712 ****
39 --- 711,714 ----
40   {   /* Add new patch number below this line */
41 + /**/
42 +     246,
43   /**/
44
45 -- 
46    GALAHAD turns back.  We see from his POV the lovely ZOOT standing by him
47    smiling enchantingly and a number of equally delectable GIRLIES draped
48    around in the seductively poulticed room.  They look at him smilingly and
49    wave.
50                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
51
52  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
53 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
54 \\\  an exciting new programming language -- http://www.Zimbu.org        ///
55  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.023413 seconds and 3 git commands to generate.