diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2021-10-19 06:51:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 06:51:42 -0700 |
commit | aac15cf4ade5cb67000abe171ff8e2060b78907e (patch) | |
tree | cc91a6759c739044a5a338bc938cfa033d7273ac /src/nvim/edit.c | |
parent | 29b718d04c474433977e952ac7f3561041f3bda0 (diff) | |
parent | 6059784770c4c88fb6fe528b9f7634192fa1164e (diff) | |
download | rneovim-aac15cf4ade5cb67000abe171ff8e2060b78907e.tar.gz rneovim-aac15cf4ade5cb67000abe171ff8e2060b78907e.tar.bz2 rneovim-aac15cf4ade5cb67000abe171ff8e2060b78907e.zip |
Merge #16000 refactor: uncrustify
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index ea49222a93..b3a08971e9 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -6216,8 +6216,8 @@ static void internal_format(int textwidth, int second_indent, int flags, int for open_line(FORWARD, OPENLINE_DELSPACES + OPENLINE_MARKFIX + (fo_white_par ? OPENLINE_KEEPTRAIL : 0) + (do_comments ? OPENLINE_DO_COM : 0) - + ((flags & INSCHAR_COM_LIST) ? OPENLINE_COM_LIST : 0) - , ((flags & INSCHAR_COM_LIST) ? second_indent : old_indent)); + + ((flags & INSCHAR_COM_LIST) ? OPENLINE_COM_LIST : 0), + ((flags & INSCHAR_COM_LIST) ? second_indent : old_indent)); if (!(flags & INSCHAR_COM_LIST)) { old_indent = 0; } |