diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-01-25 19:28:38 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-01-25 19:28:38 +0100 |
commit | 826763f87b4a15fb125b3b5cc3fc308a5976bfaf (patch) | |
tree | da1e2b9d2c47244a3739ec16b8a69e38adfc40ac /src/gui_w48.c | |
parent | 15364d74ca33d8d722483c7b8ebede17f344ab8c (diff) | |
download | vim-826763f87b4a15fb125b3b5cc3fc308a5976bfaf.zip |
updated for version 7.3.784
Problem: Error when 'guifontwide' has a comma.
Solution: Use gui.wide_font. (Taro Muraoka)
Diffstat (limited to 'src/gui_w48.c')
-rw-r--r-- | src/gui_w48.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui_w48.c b/src/gui_w48.c index 0a7f367e8..2a5f69651 100644 --- 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; |