mirror of
https://github.com/neovim/neovim.git
synced 2025-10-15 06:16:08 +00:00
refactor: convert macros to all-caps (#17895)
Closes https://github.com/neovim/neovim/issues/6297
This commit is contained in:
@@ -123,7 +123,7 @@ void ga_remove_duplicate_strings(garray_T *gap)
|
||||
|
||||
// loop over the growing array in reverse
|
||||
for (int i = gap->ga_len - 1; i > 0; i--) {
|
||||
if (fnamecmp(fnames[i - 1], fnames[i]) == 0) {
|
||||
if (FNAMECMP(fnames[i - 1], fnames[i]) == 0) {
|
||||
xfree(fnames[i]);
|
||||
|
||||
// close the gap (move all strings one slot lower)
|
||||
|
Reference in New Issue
Block a user