summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2010-09-30 21:03:26 +0200
committerBram Moolenaar <bram@vim.org>2010-09-30 21:03:26 +0200
commit010955d85636194b44c2459083d264366a5cd21d (patch)
tree176263099ecdb0a4a2b792554ae6d8dfd29acc27
parent725fd86f9d774560609fca231201d9f9ff4a016f (diff)
downloadvim-010955d85636194b44c2459083d264366a5cd21d.tar.gz
updated for version 7.3.019v7.3.019v7-3-019
Problem: ":nbstart" can fail silently. Solution: Give an error when netbeans is not supported by the GUI. (Xavier de Gaye)
-rw-r--r--src/netbeans.c10
-rw-r--r--src/version.c2
2 files changed, 12 insertions, 0 deletions
diff --git a/src/netbeans.c b/src/netbeans.c
index f39111dc..6f92b3c3 100644
--- a/src/netbeans.c
+++ b/src/netbeans.c
@@ -2773,6 +2773,16 @@ ex_nbkey(eap)
ex_nbstart(eap)
exarg_T *eap;
{
+#ifdef FEAT_GUI
+# if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \
+ && !defined(FEAT_GUI_W32)
+ if (gui.in_use)
+ {
+ EMSG(_("E838: netbeans is not supported with this GUI"));
+ return;
+ }
+# endif
+#endif
netbeans_open((char *)eap->arg, FALSE);
}
diff --git a/src/version.c b/src/version.c
index 2154b3c1..38a08135 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 19,
+/**/
18,
/**/
17,