1
0
forked from aniani/vim

updated for version 7.0b01

This commit is contained in:
Bram Moolenaar
2006-03-25 21:48:58 +00:00
parent 7fcab2a02c
commit c17ef8ef36
6 changed files with 33 additions and 17 deletions

View File

@@ -598,8 +598,16 @@ display_errors()
}
#endif
(void)gui_mch_dialog(VIM_ERROR, (char_u *)_("Error"),
p, (char_u *)_("&Ok"), 1, NULL);
(void)gui_mch_dialog(
#ifdef FEAT_GUI
gui.starting ? VIM_INFO :
#endif
VIM_ERROR,
#ifdef FEAT_GUI
gui.starting ? (char_u *)_("Message") :
#endif
(char_u *)_("Error"),
p, (char_u *)_("&Ok"), 1, NULL);
#if 0
#ifdef WIN3264
MessageBox(NULL, p, "Vim", MB_TASKMODAL|MB_SETFOREGROUND);