From: Bram Moolenaar Date: Sat, 5 Feb 2005 21:35:05 +0000 (+0000) Subject: updated for version 7.0048 X-Git-Tag: v7.0048~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8089cae03baf229b28bb850297da874024ca9f26;p=vim updated for version 7.0048 --- diff --git a/src/os_mswin.c b/src/os_mswin.c index f5c4abf4a..5d45d7bfb 100644 --- a/src/os_mswin.c +++ b/src/os_mswin.c @@ -584,6 +584,7 @@ display_errors() for (p = (char *)error_ga.ga_data; *p; ++p) if (!isspace(*p)) { +#if 0 /* Truncate a very long message, it will go off-screen. */ if (STRLEN(p) > 2000) { @@ -595,6 +596,7 @@ display_errors() #endif STRCPY(s, _("...(truncated)")); } +#endif (void)gui_mch_dialog(VIM_ERROR, (char_u *)_("Error"), p, (char_u *)_("&Ok"), 1, NULL);