diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-01-31 18:55:55 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-01-31 18:55:55 +0000 |
commit | 5b625c53a5ba3ac92be790eda4d9548eae0a1a1e (patch) | |
tree | 8d3435f20f525e6d345240257eeb5b04316f5a0f /src/netbeans.c | |
parent | 532c780ef0691152a20d0e2e176d1c0ef624cbde (diff) | |
download | vim-5b625c53a5ba3ac92be790eda4d9548eae0a1a1e.zip |
updated for version 7.0046
Diffstat (limited to 'src/netbeans.c')
-rw-r--r-- | src/netbeans.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/netbeans.c b/src/netbeans.c index 159058152..1611a8fa0 100644 --- a/src/netbeans.c +++ b/src/netbeans.c @@ -204,7 +204,7 @@ netbeans_disconnect(void) } #endif /* FEAT_GUI_GTK */ -#ifdef FEAT_GUI_W32 +#if defined(FEAT_GUI_W32) || defined(PROTO) void netbeans_w32_connect(void) { @@ -1682,13 +1682,14 @@ nb_do_cmd( && !buf->bufp->b_netbeans_file) EMSGN(_("E658: NetBeans connection lost for buffer %ld"), buf->bufp->b_fnum); +#if 0 /* This breaks Agide. */ else { do_bufdel(DOBUF_DEL, (char_u *)"", 1, buf->bufp->b_fnum, buf->bufp->b_fnum, TRUE); - /* add_to_input_buf((char_u *)"\f", 1); */ vim_memset(buf, 0, sizeof(nbbuf_T)); } +#endif } /* =====================================================================*/ } @@ -1942,7 +1943,6 @@ nb_do_cmd( /* Quit a hit-return or more prompt. */ if (State == HITRETURN || State == ASKMORE) { - /* add_to_input_buf((char_u *)"\003", 1); */ #ifdef FEAT_GUI_GTK if (gtk_main_level() > 0) gtk_main_quit(); @@ -2312,7 +2312,6 @@ nb_do_cmd( * and it may no longer be necessary. If its not needed then needupdate * and doupdate can also be removed. */ - if (buf != NULL && buf->initDone && doupdate) { update_screen(NOT_VALID); @@ -2323,7 +2322,6 @@ nb_do_cmd( /* Quit a hit-return or more prompt. */ if (State == HITRETURN || State == ASKMORE) { - /* add_to_input_buf((char_u *)"\003", 1);*/ #ifdef FEAT_GUI_GTK if (gtk_main_level() > 0) gtk_main_quit(); @@ -2958,7 +2956,8 @@ netbeans_keystring(int key, char *keyName) nbdebug(("EVT: %s", buf)); nb_send(buf, "netbeans_keycommand"); - postpone_keycommand(key); + if (key > 0) + postpone_keycommand(key); return; } |