mirror of
https://github.com/neovim/neovim.git
synced 2026-08-28 18:11:47 +00:00
Remove redundant parentheses
This commit is contained in:
committed by
Justin M. Keyes
parent
a62a2b6250
commit
53452663cc
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user