]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.539 v7.3.539
authorBram Moolenaar <Bram@vim.org>
Wed, 6 Jun 2012 10:03:06 +0000 (12:03 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 6 Jun 2012 10:03:06 +0000 (12:03 +0200)
Problem:    Redrawing a character on the command line does not work properly
            for multi-byte charactes.
Solution:   Count the number of bytes in a character. (Yukihiro Nakadaira)

src/ex_getln.c
src/version.c

index a3a9c7b91a0008eac9b312ca5b2967389d3409d0..c823119adc037763a492abcfb6406670dcb2ea4d 100644 (file)
@@ -2764,6 +2764,11 @@ unputcmdline()
     msg_no_more = TRUE;
     if (ccline.cmdlen == ccline.cmdpos)
        msg_putchar(' ');
+#ifdef FEAT_MBYTE
+    else if (has_mbyte)
+       draw_cmdline(ccline.cmdpos,
+                              (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos));
+#endif
     else
        draw_cmdline(ccline.cmdpos, 1);
     msg_no_more = FALSE;
index 4f3ef5bfa02c02243598245db9f92fa2feb4c6f8..9eecd6fa8a89724dae642ed9aeaf66c48103c289 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    539,
 /**/
     538,
 /**/