components/vim/vim72-patches/7.2.292
changeset 379 c6a17bba1da3
parent 378 f0b61ed1d10d
child 380 e92b3b4a1c66
equal deleted inserted replaced
378:f0b61ed1d10d 379:c6a17bba1da3
     1 To: [email protected]
       
     2 Subject: Patch 7.2.292
       
     3 Fcc: outbox
       
     4 From: Bram Moolenaar <[email protected]>
       
     5 Mime-Version: 1.0
       
     6 Content-Type: text/plain; charset=UTF-8
       
     7 Content-Transfer-Encoding: 8bit
       
     8 ------------
       
     9 
       
    10 Patch 7.2.292
       
    11 Problem:    Block right-shift doesn't work properly with multi-byte encoding
       
    12 	    and 'list' set.
       
    13 Solution:   Add the missing "else". (Lech Lorens)
       
    14 Files:	    src/ops.c
       
    15 
       
    16 
       
    17 *** ../vim-7.2.291/src/ops.c	2009-11-03 16:44:04.000000000 +0100
       
    18 --- src/ops.c	2009-11-11 17:15:04.000000000 +0100
       
    19 ***************
       
    20 *** 422,429 ****
       
    21   #ifdef FEAT_MBYTE
       
    22   	    if (has_mbyte)
       
    23   		bd.textstart += (*mb_ptr2len)(bd.textstart);
       
    24   #endif
       
    25 ! 	    ++bd.textstart;
       
    26   	}
       
    27   	for ( ; vim_iswhite(*bd.textstart); )
       
    28   	{
       
    29 --- 422,430 ----
       
    30   #ifdef FEAT_MBYTE
       
    31   	    if (has_mbyte)
       
    32   		bd.textstart += (*mb_ptr2len)(bd.textstart);
       
    33 + 	    else
       
    34   #endif
       
    35 ! 		++bd.textstart;
       
    36   	}
       
    37   	for ( ; vim_iswhite(*bd.textstart); )
       
    38   	{
       
    39 *** ../vim-7.2.291/src/version.c	2009-11-11 17:07:25.000000000 +0100
       
    40 --- src/version.c	2009-11-11 17:21:31.000000000 +0100
       
    41 ***************
       
    42 *** 683,684 ****
       
    43 --- 683,686 ----
       
    44   {   /* Add new patch number below this line */
       
    45 + /**/
       
    46 +     292,
       
    47   /**/
       
    48 
       
    49 -- 
       
    50 Computers make very fast, very accurate, mistakes.
       
    51 
       
    52  /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net   \\\
       
    53 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
       
    54 \\\        download, build and distribute -- http://www.A-A-P.org        ///
       
    55  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///