]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.561
- add patches 7.3.619-743
[packages/vim.git] / 7.3.561
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.561
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.561
11 Problem:    Using refresh: always in a complete function breaks the "."
12             command. (Val Markovic)
13 Solution:   Add match leader to the redo buffer. (Yasuhiro Matsumoto)
14 Files:      src/edit.c
15
16
17 *** ../vim-7.3.560/src/edit.c   2012-06-13 17:28:51.000000000 +0200
18 --- src/edit.c  2012-06-20 14:22:23.000000000 +0200
19 ***************
20 *** 3467,3476 ****
21 --- 3467,3480 ----
22         (*mb_char2bytes)(c, buf);
23         buf[cc] = NUL;
24         ins_char_bytes(buf, cc);
25 +       AppendToRedobuff(buf);
26       }
27       else
28   #endif
29 +     {
30         ins_char(c);
31 +       AppendCharToRedobuff(c);
32 +     }
33   
34       /* If we didn't complete finding matches we must search again. */
35       if (ins_compl_need_restart())
36 *** ../vim-7.3.560/src/version.c        2012-06-20 14:13:02.000000000 +0200
37 --- src/version.c       2012-06-20 14:20:13.000000000 +0200
38 ***************
39 *** 716,717 ****
40 --- 716,719 ----
41   {   /* Add new patch number below this line */
42 + /**/
43 +     561,
44   /**/
45
46 -- 
47 Microsoft is to software what McDonalds is to gourmet cooking
48
49  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
50 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
51 \\\  an exciting new programming language -- http://www.Zimbu.org        ///
52  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.087125 seconds and 3 git commands to generate.