]> git.pld-linux.org Git - packages/vim.git/blame - 7.1.268
- typo
[packages/vim.git] / 7.1.268
CommitLineData
ef75664d
AG
1To: vim-dev@vim.org
2Subject: Patch 7.1.268
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.1.268
11Problem: Always shows "+" at end of screen line with: ":set
12 listchars=eol:$,extends:+ nowrap list cursorline" (Gary Johnson)
13Solution: Check for lcs_eol_one instead of lcs_eol.
14Files: src/screen.c
15
16
17*** ../vim-7.1.267/src/screen.c Wed Feb 20 14:15:45 2008
18--- src/screen.c Sun Mar 9 14:26:14 2008
19***************
20*** 4527,4533 ****
21 #endif
22 col == W_WIDTH(wp) - 1)
23 && (*ptr != NUL
24! || (wp->w_p_list && lcs_eol != NUL && p_extra != at_end_str)
25 || (n_extra && (c_extra != NUL || *p_extra != NUL))))
26 {
27 c = lcs_ext;
28--- 4527,4533 ----
29 #endif
30 col == W_WIDTH(wp) - 1)
31 && (*ptr != NUL
32! || (wp->w_p_list && lcs_eol_one > 0)
33 || (n_extra && (c_extra != NUL || *p_extra != NUL))))
34 {
35 c = lcs_ext;
36*** ../vim-7.1.267/src/version.c Thu Mar 6 22:44:45 2008
37--- src/version.c Sun Mar 9 14:24:59 2008
38***************
39*** 668,669 ****
40--- 668,671 ----
41 { /* Add new patch number below this line */
42+ /**/
43+ 268,
44 /**/
45
46--
47From "know your smileys":
48 :-* A big kiss!
49
50 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
51/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
52\\\ download, build and distribute -- http://www.A-A-P.org ///
53 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.103412 seconds and 4 git commands to generate.