diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-22 18:28:27 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-22 18:28:27 +0200 |
commit | 67c53844343011089e1b847200b5c5257a83e1c4 (patch) | |
tree | 8f1c5bfe10864b7e49a8bc62ce12b1db449803da /src/feature.h | |
parent | ca7e1f2066e3518ee6caeef32e499ab954ec05a3 (diff) | |
download | vim-git-67c53844343011089e1b847200b5c5257a83e1c4.tar.gz |
Included the patch to support netbeans in a terminal.
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/feature.h b/src/feature.h index 4568ffc1d..6b8f600ec 100644 --- a/src/feature.h +++ b/src/feature.h @@ -1193,11 +1193,9 @@ #endif /* - * The Netbeans features currently only work with Motif and GTK and Win32. - * It also requires +listcmds and +eval. + * The Netbeans feature requires +listcmds and +eval. */ -#if ((!defined(FEAT_GUI_MOTIF) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_W32)) \ - || !defined(FEAT_LISTCMDS) || !defined(FEAT_EVAL)) \ +#if (!defined(FEAT_LISTCMDS) || !defined(FEAT_EVAL)) \ && defined(FEAT_NETBEANS_INTG) # undef FEAT_NETBEANS_INTG #endif |