From f2a4e33ffb75a07ce7c64783113c82231b1b979a Mon Sep 17 00:00:00 2001
From: Bram Moolenaar <Bram@vim.org>
Date: Tue, 27 Feb 2007 17:08:16 +0000
Subject: [PATCH] updated for version 7.0-204

---
 src/if_cscope.c | 10 ++--------
 src/version.c   |  2 ++
 2 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/src/if_cscope.c b/src/if_cscope.c
index 97145aa9ca..fd831393a2 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 aa1091161d..f9ad029a7b 100644
--- a/src/version.c
+++ b/src/version.c
@@ -666,6 +666,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    204,
 /**/
     203,
 /**/
-- 
GitLab