0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

updated for version 7.0-184

This commit is contained in:
Bram Moolenaar
2007-01-16 14:18:41 +00:00
parent 863b53b72e
commit 84c4d79ad4
2 changed files with 4 additions and 1 deletions

View File

@@ -627,10 +627,11 @@ cs_cnt_matches(idx)
* If the database is out of date, or there's some other problem,
* cscope will output error messages before the number-of-lines output.
* 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)
continue;
if (strcmp((const char *)stok, "cscope:"))
if (strstr((const char *)stok, "cscope:") == NULL)
continue;
if ((stok = strtok(NULL, (const char *)" ")) == NULL)

View File

@@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
184,
/**/
183,
/**/