]> git.pld-linux.org Git - packages/vim.git/blob - 7.1.268
- updated to 7.1.326
[packages/vim.git] / 7.1.268
1 To: vim-dev@vim.org
2 Subject: Patch 7.1.268
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.1.268
11 Problem:    Always shows "+" at end of screen line with: ":set
12             listchars=eol:$,extends:+ nowrap list cursorline" (Gary Johnson)
13 Solution:   Check for lcs_eol_one instead of lcs_eol.
14 Files:      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 -- 
47 From "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.035838 seconds and 3 git commands to generate.