]> granicus.if.org Git - vim/commitdiff
patch 8.0.1234: MS-Windows: composing chars are not shown properly v8.0.1234
authorBram Moolenaar <Bram@vim.org>
Sat, 28 Oct 2017 17:23:11 +0000 (19:23 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 28 Oct 2017 17:23:11 +0000 (19:23 +0200)
Problem:    MS-Windows: composing characters are not shown properly.
Solution:   Pass base character and composing characters to the renderer at
            once. (Ken Takata, closes #2206)

src/gui.c
src/gui_w32.c
src/version.c

index fe91062e0a7e1118017fb291a98ec952552e4990..d52244cc25ee0f419a2cef0918d4d6de48de4da4 100644 (file)
--- a/src/gui.c
+++ b/src/gui.c
@@ -2429,9 +2429,14 @@ gui_outstr_nowrap(
        int     cl;             /* byte length of current char */
        int     comping;        /* current char is composing */
        int     scol = col;     /* screen column */
-       int     curr_wide;      /* use 'guifontwide' */
+       int     curr_wide = FALSE;  /* use 'guifontwide' */
        int     prev_wide = FALSE;
        int     wide_changed;
+#  ifdef WIN3264
+       int     sep_comp = FALSE;   /* Don't separate composing chars. */
+#  else
+       int     sep_comp = TRUE;    /* Separate composing chars. */
+#  endif
 
        /* Break the string at a composing character, it has to be drawn on
         * top of the previous character. */
@@ -2441,17 +2446,20 @@ gui_outstr_nowrap(
        {
            c = utf_ptr2char(s + i);
            cn = utf_char2cells(c);
-           if (cn > 1
-#  ifdef FEAT_XFONTSET
-                   && fontset == NOFONTSET
-#  endif
-                   && wide_font != NOFONT)
-               curr_wide = TRUE;
-           else
-               curr_wide = FALSE;
            comping = utf_iscomposing(c);
            if (!comping)       /* count cells from non-composing chars */
                cells += cn;
+           if (!comping || sep_comp)
+           {
+               if (cn > 1
+#  ifdef FEAT_XFONTSET
+                       && fontset == NOFONTSET
+#  endif
+                       && wide_font != NOFONT)
+                   curr_wide = TRUE;
+               else
+                   curr_wide = FALSE;
+           }
            cl = utf_ptr2len(s + i);
            if (cl == 0)        /* hit end of string */
                len = i + cl;   /* len must be wrong "cannot happen" */
@@ -2460,7 +2468,8 @@ gui_outstr_nowrap(
 
            /* Print the string so far if it's the last character or there is
             * a composing character. */
-           if (i + cl >= len || (comping && i > start) || wide_changed
+           if (i + cl >= len || (comping && sep_comp && i > start)
+                   || wide_changed
 #  if defined(FEAT_GUI_X11)
                    || (cn > 1
 #   ifdef FEAT_XFONTSET
@@ -2472,7 +2481,7 @@ gui_outstr_nowrap(
 #  endif
               )
            {
-               if (comping || wide_changed)
+               if ((comping && sep_comp) || wide_changed)
                    thislen = i - start;
                else
                    thislen = i - start + cl;
@@ -2490,7 +2499,7 @@ gui_outstr_nowrap(
                cells = 0;
                /* Adjust to not draw a character which width is changed
                 * against with last one. */
-               if (wide_changed && !comping)
+               if (wide_changed && !(comping && sep_comp))
                {
                    scol -= cn;
                    cl = 0;
@@ -2509,7 +2518,7 @@ gui_outstr_nowrap(
 #  endif
            }
            /* Draw a composing char on top of the previous char. */
-           if (comping)
+           if (comping && sep_comp)
            {
 #  if (defined(__APPLE_CC__) || defined(__MRC__)) && TARGET_API_MAC_CARBON
                /* Carbon ATSUI autodraws composing char over previous char */
index 4eaa2be384c164e56e031f3157c6953068e869bf..67895cca3e4451b0201c958762842ce2080fc751 100644 (file)
@@ -6295,8 +6295,8 @@ gui_mch_draw_string(
 
     if (enc_utf8 && n < len && unicodebuf != NULL)
     {
-       /* Output UTF-8 characters.  Caller has already separated
-        * composing characters. */
+       /* Output UTF-8 characters.  Composing characters should be
+        * handled here. */
        int             i;
        int             wlen;   /* string length in words */
        int             clen;   /* string length in characters */
@@ -6320,9 +6320,16 @@ gui_mch_draw_string(
            {
                unicodebuf[wlen++] = c;
            }
-           cw = utf_char2cells(c);
-           if (cw > 2)         /* don't use 4 for unprintable char */
-               cw = 1;
+
+           if (utf_iscomposing(c))
+               cw = 0;
+           else
+           {
+               cw = utf_char2cells(c);
+               if (cw > 2)             /* don't use 4 for unprintable char */
+                   cw = 1;
+           }
+
            if (unicodepdy != NULL)
            {
                /* Use unicodepdy to make characters fit as we expect, even
@@ -6337,7 +6344,7 @@ gui_mch_draw_string(
                    unicodepdy[wlen - 1] = cw * gui.char_width;
            }
            cells += cw;
-           i += utfc_ptr2len_len(text + i, len - i);
+           i += utf_ptr2len_len(text + i, len - i);
            ++clen;
        }
 #if defined(FEAT_DIRECTX)
index d6b3209d7846acee64a269aa88227f10f7042ce8..24557e38765b85aace328c1dd86200f2e56e7f35 100644 (file)
@@ -761,6 +761,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1234,
 /**/
     1233,
 /**/