diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-06-13 21:57:20 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-06-13 21:57:20 +0200 |
commit | 9d438d3b3862e6cdb4a7b02702f1f82d49bc177d (patch) | |
tree | bd3eaa2ece912fbe860a2478113ef00fcd5f54b0 /src/gui_x11.c | |
parent | 0c6633a7ea50873ce8f0d744ea5758a1eb494010 (diff) | |
download | vim-git-9d438d3b3862e6cdb4a7b02702f1f82d49bc177d.tar.gz |
updated for version 7.3.1188v7.3.1188
Problem: Newline characters messing up error message.
Solution: Remove the newlines. (Kazunobu Kuriyama)
Diffstat (limited to 'src/gui_x11.c')
-rw-r--r-- | src/gui_x11.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui_x11.c b/src/gui_x11.c index e4a056ee6..41fcbde2b 100644 --- a/src/gui_x11.c +++ b/src/gui_x11.c @@ -2197,12 +2197,12 @@ check_fontset_sanity(fs) if ( xfs[i]->max_bounds.width != 2 * min_width && xfs[i]->max_bounds.width != min_width) { - EMSG2(_("E253: Fontset name: %s\n"), base_name); - EMSG2(_("Font0: %s\n"), font_name[min_font_idx]); - EMSG2(_("Font1: %s\n"), font_name[i]); - EMSGN(_("Font%ld width is not twice that of font0\n"), i); - EMSGN(_("Font0 width: %ld\n"), xfs[min_font_idx]->max_bounds.width); - EMSGN(_("Font1 width: %ld\n\n"), xfs[i]->max_bounds.width); + EMSG2(_("E253: Fontset name: %s"), base_name); + EMSG2(_("Font0: %s"), font_name[min_font_idx]); + EMSG2(_("Font1: %s"), font_name[i]); + EMSGN(_("Font%ld width is not twice that of font0"), i); + EMSGN(_("Font0 width: %ld"), xfs[min_font_idx]->max_bounds.width); + EMSGN(_("Font1 width: %ld"), xfs[i]->max_bounds.width); return FAIL; } } |