summaryrefslogtreecommitdiffstats
path: root/src/arglist.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-11-24 00:09:02 +0000
committerBram Moolenaar <Bram@vim.org>2022-11-24 00:09:02 +0000
commit24fe33a83a5130a5369f06d88000a3a0590a59ec (patch)
treeced9a9caae2018ee4daf04defd1feac80d1e2088 /src/arglist.c
parentb59ae59a58706e454ef8c78276f021b1f58466e7 (diff)
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.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/arglist.c b/src/arglist.c
index b35cdfe7ab..6183fafff6 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(&regmatch, alist_name(&ARGLIST[match]),
- (colnr_T)0))
+ if (vim_regexec(&regmatch, alist_name(&ARGLIST[match]), (colnr_T)0))
{
didone = TRUE;
vim_free(ARGLIST[match].ae_fname);