diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-15 02:13:13 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-15 02:13:13 -0400 |
commit | be1525d3c95db99d50c1538e73dfcbf8a4f83782 (patch) | |
tree | ab38a031422332883ecf294238714996cc412de2 | |
parent | a0938e068f99b56a3474fd739f1a3f52240d28f7 (diff) | |
download | rneovim-be1525d3c95db99d50c1538e73dfcbf8a4f83782.tar.gz rneovim-be1525d3c95db99d50c1538e73dfcbf8a4f83782.tar.bz2 rneovim-be1525d3c95db99d50c1538e73dfcbf8a4f83782.zip |
lint
-rw-r--r-- | src/nvim/tag.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c index 2e26f95e70..2a980af2a2 100644 --- a/src/nvim/tag.c +++ b/src/nvim/tag.c @@ -953,11 +953,11 @@ void do_tags(exarg_T *eap) msg_putchar('\n'); vim_snprintf((char *)IObuff, IOSIZE, "%c%2d %2d %-15s %5ld ", - i == tagstackidx ? '>' : ' ', - i + 1, - tagstack[i].cur_match + 1, - tagstack[i].tagname, - tagstack[i].fmark.mark.lnum); + i == tagstackidx ? '>' : ' ', + i + 1, + tagstack[i].cur_match + 1, + tagstack[i].tagname, + tagstack[i].fmark.mark.lnum); msg_outtrans(IObuff); msg_outtrans_attr(name, tagstack[i].fmark.fnum == curbuf->b_fnum ? HL_ATTR(HLF_D) : 0); @@ -2618,7 +2618,7 @@ static int jumpto_tag( } erret: - g_do_tagpreview = 0; /* For next time */ + g_do_tagpreview = 0; // For next time xfree(lbuf); xfree(pbuf); xfree(tofree_fname); |