0
0
mirror of https://github.com/vim/vim.git synced 2025-09-28 04:24:06 -04:00

updated for version 7.2-055

This commit is contained in:
Bram Moolenaar
2008-11-28 20:29:07 +00:00
parent a40b46614a
commit fe86f2d7cd
23 changed files with 157 additions and 129 deletions

View File

@@ -1043,7 +1043,7 @@ netbeans_end(void)
nbdebug(("EVT: %s", buf));
/* nb_send(buf, "netbeans_end"); avoid "write failed" messages */
if (sd >= 0)
sock_write(sd, buf, (int)STRLEN(buf)); /* ignore errors */
ignored = sock_write(sd, buf, (int)STRLEN(buf));
}
}
@@ -2277,9 +2277,6 @@ nb_do_cmd(
int serNum;
int localTypeNum;
int typeNum;
# ifdef NBDEBUG
int len;
# endif
pos_T *pos;
if (buf == NULL || buf->bufp == NULL)
@@ -2303,13 +2300,10 @@ nb_do_cmd(
pos = get_off_or_lnum(buf->bufp, &args);
cp = (char *)args;
# ifdef NBDEBUG
len =
# endif
strtol(cp, &cp, 10);
ignored = (int)strtol(cp, &cp, 10);
args = (char_u *)cp;
# ifdef NBDEBUG
if (len != -1)
if (ignored != -1)
{
nbdebug((" partial line annotation -- Not Yet Implemented!\n"));
}