]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.254
- new
[packages/vim.git] / 7.3.254
CommitLineData
67a6f0c7 1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.254
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.254
11Problem: The coladd field is not reset when setting the line number for a
12 ":call" command.
13Solution: Reset it.
14Files: 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--
42Eight 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.028001 seconds and 4 git commands to generate.