diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-11-24 00:09:02 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-11-24 00:09:02 +0000 |
commit | 24fe33a83a5130a5369f06d88000a3a0590a59ec (patch) | |
tree | ced9a9caae2018ee4daf04defd1feac80d1e2088 /src/arglist.c | |
parent | b59ae59a58706e454ef8c78276f021b1f58466e7 (diff) | |
download | vim-git-24fe33a83a5130a5369f06d88000a3a0590a59ec.tar.gz |
patch 9.0.0934: various code formatting issuesv9.0.0934
Problem: Various code formatting issues.
Solution: Improve code formatting.
Diffstat (limited to 'src/arglist.c')
-rw-r--r-- | src/arglist.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/arglist.c b/src/arglist.c index b35cdfe7a..6183fafff 100644 --- a/src/arglist.c +++ b/src/arglist.c @@ -413,8 +413,7 @@ arglist_del_files(garray_T *alist_ga) didone = FALSE; for (match = 0; match < ARGCOUNT; ++match) - if (vim_regexec(®match, alist_name(&ARGLIST[match]), - (colnr_T)0)) + if (vim_regexec(®match, alist_name(&ARGLIST[match]), (colnr_T)0)) { didone = TRUE; vim_free(ARGLIST[match].ae_fname); |