diff options
| author | James Tirta Halim <tirtajames45@gmail.com> | 2024-06-03 11:10:30 +0700 |
|---|---|---|
| committer | Lewis Russell <me@lewisr.dev> | 2024-06-04 09:42:19 +0100 |
| commit | 200e7ad1578619e78c664bd0c6be024168433412 (patch) | |
| tree | c2387df2811637efb1f743693ed6b8ca172aeb74 /src/nvim/lua | |
| parent | 4b3845be2e497f96f855782d52dd1d02a4cabb6f (diff) | |
| download | rneovim-200e7ad1578619e78c664bd0c6be024168433412.tar.gz rneovim-200e7ad1578619e78c664bd0c6be024168433412.tar.bz2 rneovim-200e7ad1578619e78c664bd0c6be024168433412.zip | |
fixup: apply the change on more files
Diffstat (limited to 'src/nvim/lua')
| -rw-r--r-- | src/nvim/lua/secure.c | 4 | ||||
| -rw-r--r-- | src/nvim/lua/treesitter.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/lua/secure.c b/src/nvim/lua/secure.c index a84d6c4d65..61277949c4 100644 --- a/src/nvim/lua/secure.c +++ b/src/nvim/lua/secure.c @@ -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; } diff --git a/src/nvim/lua/treesitter.c b/src/nvim/lua/treesitter.c index e87cf756a8..b13a162074 100644 --- a/src/nvim/lua/treesitter.c +++ b/src/nvim/lua/treesitter.c @@ -279,7 +279,7 @@ static const char *input_cb(void *payload, uint32_t byte_index, TSPoint position memcpy(buf, line + position.column, tocopy); // Translate embedded \n to NUL - memchrsub(buf, '\n', '\0', tocopy); + memchrsub(buf, '\n', NUL, tocopy); *bytes_read = (uint32_t)tocopy; if (tocopy < BUFSIZE) { // now add the final \n. If it didn't fit, input_cb will be called again |