Skip to content

Commit c3ebb5d

Browse files
committed
updated for version 7.3.1188
Problem: Newline characters messing up error message. Solution: Remove the newlines. (Kazunobu Kuriyama)
1 parent 22d12f8 commit c3ebb5d

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

src/gui_x11.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2197,12 +2197,12 @@ check_fontset_sanity(fs)
21972197
if ( xfs[i]->max_bounds.width != 2 * min_width
21982198
&& xfs[i]->max_bounds.width != min_width)
21992199
{
2200-
EMSG2(_("E253: Fontset name: %s\n"), base_name);
2201-
EMSG2(_("Font0: %s\n"), font_name[min_font_idx]);
2202-
EMSG2(_("Font1: %s\n"), font_name[i]);
2203-
EMSGN(_("Font%ld width is not twice that of font0\n"), i);
2204-
EMSGN(_("Font0 width: %ld\n"), xfs[min_font_idx]->max_bounds.width);
2205-
EMSGN(_("Font1 width: %ld\n\n"), xfs[i]->max_bounds.width);
2200+
EMSG2(_("E253: Fontset name: %s"), base_name);
2201+
EMSG2(_("Font0: %s"), font_name[min_font_idx]);
2202+
EMSG2(_("Font1: %s"), font_name[i]);
2203+
EMSGN(_("Font%ld width is not twice that of font0"), i);
2204+
EMSGN(_("Font0 width: %ld"), xfs[min_font_idx]->max_bounds.width);
2205+
EMSGN(_("Font1 width: %ld"), xfs[i]->max_bounds.width);
22062206
return FAIL;
22072207
}
22082208
}

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -728,6 +728,8 @@ static char *(features[]) =
728728

729729
static int included_patches[] =
730730
{ /* Add new patch number below this line */
731+
/**/
732+
1188,
731733
/**/
732734
1187,
733735
/**/

0 commit comments

Comments
 (0)