Remove redundant parentheses

This commit is contained in:
Anton Ovchinnikov
2015-03-15 00:13:12 +01:00
committed by Justin M. Keyes
parent a62a2b6250
commit 53452663cc

View File

@@ -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 {