]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.112
- new
[packages/vim.git] / 7.2.112
CommitLineData
9512a71a
AG
1To: vim-dev@vim.org
2Subject: Patch 7.2.112
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.2.112
11Problem: Cursor invisible in Visual mode when 'number' is set and cursor in
12 first column. (Matti Niemenmaa, Renato Alves)
13Solution: Check that vcol_prev is smaller than vcol.
14Files: src/screen.c
15
16
17*** ../vim-7.2.111/src/screen.c Sat Feb 21 21:10:24 2009
18--- src/screen.c Sat Feb 21 21:04:19 2009
19***************
20*** 3422,3427 ****
21--- 3422,3428 ----
22 && (*mb_ptr2cells)(ptr) > 1)
23 #endif
24 || ((int)vcol_prev == fromcol_prev
25+ && vcol_prev < vcol /* not at margin */
26 && vcol < tocol))
27 area_attr = attr; /* start highlighting */
28 else if (area_attr != 0
29*** ../vim-7.2.111/src/version.c Sat Feb 21 21:10:24 2009
30--- src/version.c Sat Feb 21 21:20:51 2009
31***************
32*** 678,679 ****
33--- 678,681 ----
34 { /* Add new patch number below this line */
35+ /**/
36+ 112,
37 /**/
38
39--
40hundred-and-one symptoms of being an internet addict:
41102. When filling out your driver's license application, you give
42 your IP address.
43
44 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
45/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
46\\\ download, build and distribute -- http://www.A-A-P.org ///
47 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.027688 seconds and 4 git commands to generate.