]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.116
- new: 7.3.255
[packages/vim.git] / 7.3.116
CommitLineData
57d93a78
ER
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.116
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.116
11Problem: 'cursorline' is displayed too short when there are concealed
12 characters and 'list' is set. (Dennis Preiser)
13Solution: Check for 'cursorline' when 'list' is set. (Christian Brabandt)
14Files: src/screen.c
15
16
17*** ../vim-7.3.115/src/screen.c 2011-02-01 18:01:06.000000000 +0100
18--- src/screen.c 2011-02-09 16:59:28.000000000 +0100
19***************
20*** 5099,5105 ****
21 #ifdef FEAT_DIFF
22 || filler_todo > 0
23 #endif
24! || (wp->w_p_list && lcs_eol != NUL && p_extra != at_end_str)
25 || (n_extra != 0 && (c_extra != NUL || *p_extra != NUL)))
26 )
27 {
28--- 5099,5109 ----
29 #ifdef FEAT_DIFF
30 || filler_todo > 0
31 #endif
32! || (wp->w_p_list && lcs_eol != NUL && p_extra != at_end_str
33! #ifdef FEAT_SYN_HL
34! && !wp->w_p_cul
35! #endif
36! )
37 || (n_extra != 0 && (c_extra != NUL || *p_extra != NUL)))
38 )
39 {
40*** ../vim-7.3.115/src/version.c 2011-02-09 16:44:45.000000000 +0100
41--- src/version.c 2011-02-09 17:08:58.000000000 +0100
42***************
43*** 716,717 ****
44--- 716,719 ----
45 { /* Add new patch number below this line */
46+ /**/
47+ 116,
48 /**/
49
50--
51hundred-and-one symptoms of being an internet addict:
52219. Your spouse has his or her lawyer deliver the divorce papers...
53 via e-mail.
54
55 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
56/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
57\\\ an exciting new programming language -- http://www.Zimbu.org ///
58 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.123267 seconds and 4 git commands to generate.