diff options
author | James McCoy <jamessan@jamessan.com> | 2016-12-07 11:04:33 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-12-07 11:04:33 -0500 |
commit | f7a49532b16851af1ab5599c5aa6c93c45f7d686 (patch) | |
tree | 78942ea2378e2acd6985f219aa89e12bc6106c25 /src | |
parent | 035eb2757567a54f8898ccd430307470f1758b29 (diff) | |
download | rneovim-f7a49532b16851af1ab5599c5aa6c93c45f7d686.tar.gz rneovim-f7a49532b16851af1ab5599c5aa6c93c45f7d686.tar.bz2 rneovim-f7a49532b16851af1ab5599c5aa6c93c45f7d686.zip |
lint
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/tag.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c index a2d87a4bd2..1df1952f53 100644 --- a/src/nvim/tag.c +++ b/src/nvim/tag.c @@ -214,8 +214,8 @@ do_tag ( * Don't add a tag to the tagstack if 'tagstack' has been reset. */ if (!p_tgst && *tag != NUL) { - use_tagstack = FALSE; - new_tag = TRUE; + use_tagstack = false; + new_tag = true; if (g_do_tagpreview != 0) { xfree(ptag_entry.tagname); ptag_entry.tagname = vim_strsave(tag); |