diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-02-02 23:04:36 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-02-02 23:04:36 +0000 |
commit | 748bf0374b1dd63e7e3157237185030c47ae0c2c (patch) | |
tree | 67f9fa6429374750997486af9d50cfe75217002a /src/os_mswin.c | |
parent | 24c088a284f8759c62fd47870411a836f02da99d (diff) | |
download | vim-git-748bf0374b1dd63e7e3157237185030c47ae0c2c.tar.gz |
updated for version 7.0047
Diffstat (limited to 'src/os_mswin.c')
-rw-r--r-- | src/os_mswin.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/os_mswin.c b/src/os_mswin.c index f2a6c905b..f5c4abf4a 100644 --- a/src/os_mswin.c +++ b/src/os_mswin.c @@ -595,11 +595,16 @@ display_errors() #endif STRCPY(s, _("...(truncated)")); } + + (void)gui_mch_dialog(VIM_ERROR, (char_u *)_("Error"), + p, (char_u *)_("&Ok"), 1, NULL); +#if 0 #ifdef WIN3264 MessageBox(NULL, p, "Vim", MB_TASKMODAL|MB_SETFOREGROUND); #else MessageBox(NULL, p, "Vim", MB_TASKMODAL); #endif +#endif break; } ga_clear(&error_ga); |