Skip to content
Snippets Groups Projects
Commit 84c4d79a authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.0-184

parent 863b53b7
No related branches found
No related tags found
No related merge requests found
...@@ -627,10 +627,11 @@ cs_cnt_matches(idx) ...@@ -627,10 +627,11 @@ cs_cnt_matches(idx)
* If the database is out of date, or there's some other problem, * If the database is out of date, or there's some other problem,
* cscope will output error messages before the number-of-lines output. * cscope will output error messages before the number-of-lines output.
* Display/discard any output that doesn't match what we want. * Display/discard any output that doesn't match what we want.
* Accept "\S*cscope: X lines", also matches "mlcscope".
*/ */
if ((stok = strtok(buf, (const char *)" ")) == NULL) if ((stok = strtok(buf, (const char *)" ")) == NULL)
continue; continue;
if (strcmp((const char *)stok, "cscope:")) if (strstr((const char *)stok, "cscope:") == NULL)
continue; continue;
if ((stok = strtok(NULL, (const char *)" ")) == NULL) if ((stok = strtok(NULL, (const char *)" ")) == NULL)
......
...@@ -666,6 +666,8 @@ static char *(features[]) = ...@@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
184,
/**/ /**/
183, 183,
/**/ /**/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment