aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAnton Ovchinnikov <revolver112@gmail.com>2015-03-15 00:13:12 +0100
committerJustin M. Keyes <justinkz@gmail.com>2015-03-16 11:01:08 -0400
commit53452663cc2e9f629361282476d74c54eb5c58ec (patch)
treeb99640ba424c505b87bf39746028f259e2ccfc5b /src
parenta62a2b6250daa1f4043461d0e2358531ad2ee40d (diff)
downloadrneovim-53452663cc2e9f629361282476d74c54eb5c58ec.tar.gz
rneovim-53452663cc2e9f629361282476d74c54eb5c58ec.tar.bz2
rneovim-53452663cc2e9f629361282476d74c54eb5c58ec.zip
Remove redundant parentheses
Diffstat (limited to 'src')
-rw-r--r--src/nvim/tag.c2
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 {