]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.119
- new
[packages/vim.git] / 7.2.119
CommitLineData
9512a71a
AG
1To: vim-dev@vim.org
2Subject: Patch 7.2.119
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.119
11Problem: Status line is redrawn too often.
12Solution: Check ScreeenLinesUC[] properly. (Yukihiro Nakadaira)
13Files: 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--
46In 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.086795 seconds and 4 git commands to generate.