components/vim/vim72-patches/7.2.119
changeset 198 172fc01ce997
equal deleted inserted replaced
197:fd801ec0737c 198:172fc01ce997
       
     1 To: [email protected]
       
     2 Subject: Patch 7.2.119
       
     3 Fcc: outbox
       
     4 From: Bram Moolenaar <[email protected]>
       
     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 -- [email protected] -- 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    ///