]> git.pld-linux.org Git - packages/vim.git/blob - 7.2.292
- new
[packages/vim.git] / 7.2.292
1 To: vim-dev@vim.org
2 Subject: Patch 7.2.292
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
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 -- Bram@Moolenaar.net -- 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    ///
This page took 0.027449 seconds and 3 git commands to generate.