diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-05-31 22:14:58 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-05-31 22:14:58 +0000 |
commit | 5c06f8b043e413d887ceb1af850ac7ba5034151e (patch) | |
tree | 0f7254afd8be58a253c6c73dc9e4711b2ad5bd3e /src/if_cscope.c | |
parent | a04f10b6066952725b53c3bda9ce259ab29a5e3b (diff) | |
download | vim-git-5c06f8b043e413d887ceb1af850ac7ba5034151e.tar.gz |
updated for version 7.0077
Diffstat (limited to 'src/if_cscope.c')
-rw-r--r-- | src/if_cscope.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/if_cscope.c b/src/if_cscope.c index 1b0771337..9693f845d 100644 --- a/src/if_cscope.c +++ b/src/if_cscope.c @@ -1130,7 +1130,7 @@ cs_find_common(opt, pat, forceit, verbose) if (matches == NULL) return FALSE; - (void)cs_manage_matches(matches, contexts, totmatches, Store); + (void)cs_manage_matches(matches, contexts, matched, Store); return do_tag((char_u *)pat, DT_CSCOPE, 0, forceit, verbose); } @@ -1693,8 +1693,8 @@ cs_file_results(f, nummatches_a) for (j = 0; j < nummatches_a[i]; j++) { - if ((fullname=cs_parse_results(i, buf, CSREAD_BUFSIZE, &cntx, - &slno, &search))==NULL) + if ((fullname = cs_parse_results(i, buf, CSREAD_BUFSIZE, &cntx, + &slno, &search)) == NULL) continue; context = (char *)alloc(strlen(cntx)+5); |