]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.292
- new
[packages/vim.git] / 7.2.292
CommitLineData
eafbe892
AG
1To: vim-dev@vim.org
2Subject: Patch 7.2.292
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.2.292
11Problem: Block right-shift doesn't work properly with multi-byte encoding
12 and 'list' set.
13Solution: Add the missing "else". (Lech Lorens)
14Files: 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--
50Computers 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.057381 seconds and 4 git commands to generate.