]> git.pld-linux.org Git - packages/vim.git/blob - 7.2.119
- new
[packages/vim.git] / 7.2.119
1 To: vim-dev@vim.org
2 Subject: Patch 7.2.119
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.2.119
11 Problem:    Status line is redrawn too often.
12 Solution:   Check ScreeenLinesUC[] properly. (Yukihiro Nakadaira)
13 Files:      src/screen.c
14
15
16 *** ../vim-7.2.118/src/screen.c Sun Feb 22 00:01:42 2009
17 --- src/screen.c        Sun Feb 22 01:07:38 2009
18 ***************
19 *** 6362,6368 ****
20                     && c == 0x8e
21                     && ScreenLines2[off] != ptr[1])
22                 || (enc_utf8
23 !                   && (ScreenLinesUC[off] != (u8char_T)u8c
24                         || screen_comp_differs(off, u8cc)))
25   #endif
26                 || ScreenAttrs[off] != attr
27 --- 6362,6368 ----
28                     && c == 0x8e
29                     && ScreenLines2[off] != ptr[1])
30                 || (enc_utf8
31 !                   && (ScreenLinesUC[off] != (u8char_T)(c >= 0x80 ? u8c : 0)
32                         || screen_comp_differs(off, u8cc)))
33   #endif
34                 || ScreenAttrs[off] != attr
35 *** ../vim-7.2.118/src/version.c        Sun Feb 22 00:58:03 2009
36 --- src/version.c       Sun Feb 22 01:09:54 2009
37 ***************
38 *** 678,679 ****
39 --- 678,681 ----
40   {   /* Add new patch number below this line */
41 + /**/
42 +     119,
43   /**/
44
45 -- 
46 In a world without walls and borders, who needs windows and gates?
47
48  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
49 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
50 \\\        download, build and distribute -- http://www.A-A-P.org        ///
51  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.057923 seconds and 3 git commands to generate.