# HG changeset patch # User Bram Moolenaar # Date 1359138518 -3600 # Node ID fbadf0f6987790d98c3b3fd935fea0494743830a # Parent 3bc0838d318836f4dde9ebd06e65fc2ed54ad97c updated for version 7.3.784 Problem: Error when 'guifontwide' has a comma. Solution: Use gui.wide_font. (Taro Muraoka) diff --git a/src/gui_w48.c b/src/gui_w48.c --- a/src/gui_w48.c +++ b/src/gui_w48.c @@ -3107,7 +3107,8 @@ update_im_font() LOGFONT lf_wide; if (p_guifontwide != NULL && *p_guifontwide != NUL - && get_logfont(&lf_wide, p_guifontwide, NULL, TRUE) == OK) + && gui.wide_font != NOFONT + && GetObject((HFONT)gui.wide_font, sizeof(lf_wide), &lf_wide)) norm_logfont = lf_wide; else norm_logfont = sub_logfont; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -726,6 +726,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 784, +/**/ 783, /**/ 782,