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/gui_w48.c | |
parent | ca7e1f2066e3518ee6caeef32e499ab954ec05a3 (diff) | |
download | vim-git-67c53844343011089e1b847200b5c5257a83e1c4.tar.gz |
Included the patch to support netbeans in a terminal.
Diffstat (limited to 'src/gui_w48.c')
-rw-r--r-- | src/gui_w48.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui_w48.c b/src/gui_w48.c index 477acfa94..b1ea5687d 100644 --- a/src/gui_w48.c +++ b/src/gui_w48.c @@ -1732,7 +1732,7 @@ process_message(void) #ifdef FEAT_NETBEANS_INTG if (msg.message == WM_NETBEANS) { - messageFromNetbeansW32(); + netbeans_read(); return; } #endif @@ -1999,7 +1999,8 @@ gui_mch_wait_for_chars(int wtime) #ifdef FEAT_NETBEANS_INTG /* Process the queued netbeans messages. */ - netbeans_parse_messages(); + if (usingNetbeans) + netbeans_parse_messages(); #endif /* |