summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-02-05 21:35:05 +0000
committerBram Moolenaar <Bram@vim.org>2005-02-05 21:35:05 +0000
commit8089cae03baf229b28bb850297da874024ca9f26 (patch)
tree55fbb09d0d3a8f8e17b7033221983c99f4d0cc09 /src
parent758711c5dc0cbbcc8499214a3743f0d6b17fbe27 (diff)
updated for version 7.0048
Diffstat (limited to 'src')
-rw-r--r--src/os_mswin.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/os_mswin.c b/src/os_mswin.c
index f5c4abf4a6..5d45d7bfb9 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);