diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-06-21 22:37:39 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-06-21 22:37:39 +0000 |
commit | d857f0e0f419ffcc8a17d2724d5f3fa62da590a7 (patch) | |
tree | 0a5a35fc6d2861e18bc87f4a91652198a7a6e60b /src/netbeans.c | |
parent | 3f7704760770fb4382f61b27ae7762365db5c70a (diff) | |
download | vim-d857f0e0f419ffcc8a17d2724d5f3fa62da590a7.zip |
updated for version 7.0089
Diffstat (limited to 'src/netbeans.c')
-rw-r--r-- | src/netbeans.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/netbeans.c b/src/netbeans.c index f6fb52c4e..bebfa5e44 100644 --- a/src/netbeans.c +++ b/src/netbeans.c @@ -188,7 +188,7 @@ netbeans_disconnect(void) #endif /* FEAT_GUI_GTK */ #if defined(FEAT_GUI_W32) || defined(PROTO) - void + static void netbeans_w32_connect(void) { netbeans_connect(); @@ -742,7 +742,7 @@ messageFromNetbeans(gpointer clientData, gint unused1, nbdebug(("messageFromNetbeans: Error in read() from socket\n")); if (len < 0) PERROR(_("read from Netbeans socket")); - return; /* don't try to parse it */; + return; /* don't try to parse it */ } /* Parse the messages, but avoid recursion. */ @@ -863,8 +863,8 @@ struct nbbuf_struct typedef struct nbbuf_struct nbbuf_T; static nbbuf_T *buf_list = 0; -int buf_list_size = 0; /* size of buf_list */ -int buf_list_used = 0; /* nr of entries in buf_list actually in use */ +static int buf_list_size = 0; /* size of buf_list */ +static int buf_list_used = 0; /* nr of entries in buf_list actually in use */ static char **globalsignmap; static int globalsignmaplen; |