diff options
author | Anton Ovchinnikov <revolver112@gmail.com> | 2015-03-15 00:13:12 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-03-16 11:01:08 -0400 |
commit | 53452663cc2e9f629361282476d74c54eb5c58ec (patch) | |
tree | b99640ba424c505b87bf39746028f259e2ccfc5b /src | |
parent | a62a2b6250daa1f4043461d0e2358531ad2ee40d (diff) | |
download | rneovim-53452663cc2e9f629361282476d74c54eb5c58ec.tar.gz rneovim-53452663cc2e9f629361282476d74c54eb5c58ec.tar.bz2 rneovim-53452663cc2e9f629361282476d74c54eb5c58ec.zip |
Remove redundant parentheses
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/tag.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c index 1bb18bee6e..361afb7e07 100644 --- a/src/nvim/tag.c +++ b/src/nvim/tag.c @@ -223,7 +223,7 @@ do_tag ( /* * Don't add a tag to the tagstack if 'tagstack' has been reset. */ - if ((!p_tgst && *tag != NUL)) { + if (!p_tgst && *tag != NUL) { use_tagstack = FALSE; new_tag = TRUE; } else { |