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:
@@ -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"));
|
||||
}
|
||||
|
Reference in New Issue
Block a user