diff --git a/src/screen.c b/src/screen.c index 86ebd400b0..233d6a5852 100644 --- a/src/screen.c +++ b/src/screen.c @@ -465,7 +465,8 @@ screen_line( // double-wide character. Clear the left half to avoid it getting the popup // window background color. if (coloff > 0 && ScreenLines[off_to] == 0 - && ScreenLinesUC[off_to - 1] != 0) + && ScreenLinesUC[off_to - 1] != 0 + && (*mb_char2cells)(ScreenLinesUC[off_to - 1]) > 1) { ScreenLines[off_to - 1] = ' '; ScreenLinesUC[off_to - 1] = 0; diff --git a/src/version.c b/src/version.c index b52d4a8c62..02457eb5e9 100644 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1514, /**/ 1513, /**/