# HG changeset patch # User Christian Brabandt # Date 1502478006 -7200 # Node ID ee070a5eb3a0aa7d10c2425cd8d06302433422e2 # Parent 10fcbcabb2c3d772ef8c0442a92ea891c5b63f46 patch 8.0.0907: with cp932 font names might be misinterpreted commit https://github.com/vim/vim/commit/89e06c807ac63030dd163092e1c58f9ce350aeee Author: Bram Moolenaar Date: Fri Aug 11 20:55:55 2017 +0200 patch 8.0.0907: with cp932 font names might be misinterpreted Problem: With cp932 font names might be misinterpreted. Solution: Do not see "_" as a space when it is the second byte of a double byte character. (Ken Takata) diff --git a/src/os_mswin.c b/src/os_mswin.c --- a/src/os_mswin.c +++ b/src/os_mswin.c @@ -2965,7 +2965,9 @@ get_logfont( int did_replace = FALSE; for (i = 0; lf->lfFaceName[i]; ++i) - if (lf->lfFaceName[i] == '_') + if (IsDBCSLeadByte(lf->lfFaceName[i])) + ++i; + else if (lf->lfFaceName[i] == '_') { lf->lfFaceName[i] = ' '; did_replace = TRUE; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 907, +/**/ 906, /**/ 905,