mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 22:18:33 +00:00
fixup: apply the change on more files
This commit is contained in:

committed by
Lewis Russell

parent
4b3845be2e
commit
200e7ad157
@@ -104,12 +104,12 @@ void ex_trust(exarg_T *eap)
|
||||
action = "deny";
|
||||
} else if (strcmp(arg1, "++remove") == 0) {
|
||||
action = "remove";
|
||||
} else if (*arg1 != '\0') {
|
||||
} else if (*arg1 != NUL) {
|
||||
semsg(e_invarg2, arg1);
|
||||
goto theend;
|
||||
}
|
||||
|
||||
if (path[0] == '\0') {
|
||||
if (path[0] == NUL) {
|
||||
path = NULL;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user