# HG changeset patch # User vimboss # Date 1172596096 0 # Node ID a36d21d4a87596abd8775c322fced6a539385ab3 # Parent a11e2070c964de1cfb9fdf3ce339ec75b7a983cd updated for version 7.0-204 diff --git a/src/if_cscope.c b/src/if_cscope.c --- a/src/if_cscope.c +++ b/src/if_cscope.c @@ -1932,14 +1932,8 @@ cs_print_tags_priv(matches, cntxts, num_ 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 --- 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,