]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.254
- new
[packages/vim.git] / 7.3.254
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.254
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.254
11 Problem:    The coladd field is not reset when setting the line number for a
12             ":call" command.
13 Solution:   Reset it.
14 Files:      src/eval.c
15
16
17 *** ../vim-7.3.253/src/eval.c   2011-07-07 17:36:52.000000000 +0200
18 --- src/eval.c  2011-07-07 17:51:42.000000000 +0200
19 ***************
20 *** 3430,3435 ****
21 --- 3430,3438 ----
22         {
23             curwin->w_cursor.lnum = lnum;
24             curwin->w_cursor.col = 0;
25 + #ifdef FEAT_VIRTUALEDIT
26 +           curwin->w_cursor.coladd = 0;
27 + #endif
28         }
29         arg = startarg;
30         if (get_func_tv(name, (int)STRLEN(name), &rettv, &arg,
31 *** ../vim-7.3.253/src/version.c        2011-07-15 21:16:54.000000000 +0200
32 --- src/version.c       2011-07-15 21:23:16.000000000 +0200
33 ***************
34 *** 711,712 ****
35 --- 711,714 ----
36   {   /* Add new patch number below this line */
37 + /**/
38 +     254,
39   /**/
40
41 -- 
42 Eight Megabytes And Continually Swapping.
43
44  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
45 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
46 \\\  an exciting new programming language -- http://www.Zimbu.org        ///
47  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.027748 seconds and 3 git commands to generate.