summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2007-02-27 17:08:16 +0000
committervimboss <devnull@localhost>2007-02-27 17:08:16 +0000
commitc5dd6f8dde838baf48024b54bfe9a2316c7b463b (patch)
treece562382630f7a9965e003edafc272d22da5543b
parent32ac21832a0a1d2a2c9455c5c3e575037377d5c9 (diff)
downloadvim-c5dd6f8dde838baf48024b54bfe9a2316c7b463b.tar.gz
updated for version 7.0-204v7.0.204v7-0-204
-rw-r--r--src/if_cscope.c10
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 8 deletions
diff --git a/src/if_cscope.c b/src/if_cscope.c
index 97145aa9..fd831393 100644
--- a/src/if_cscope.c
+++ b/src/if_cscope.c
@@ -1932,14 +1932,8 @@ cs_print_tags_priv(matches, cntxts, num_matches)
if ((fname = strtok(NULL, (const char *)"\t")) == NULL)
continue;
if ((lno = strtok(NULL, (const char *)"\t")) == NULL)
- {
- /* if NULL, then no "extra", although in cscope's case, there
- * should always be "extra".
- */
- extra = NULL;
- }
-
- extra = lno + strlen(lno) + 1;
+ continue;
+ extra = strtok(NULL, (const char *)"\t");
lno[strlen(lno)-2] = '\0'; /* ignore ;" at the end */
diff --git a/src/version.c b/src/version.c
index aa109116..f9ad029a 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 204,
+/**/
203,
/**/
202,