diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-12-04 12:31:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-04 12:31:42 +0100 |
commit | 76af219e3e481222e6fece34c7c022d6a58998e1 (patch) | |
tree | fbd587dc61b84e67573231a66c136cc278bd6af1 /src/nvim/syntax.c | |
parent | 2ccf6567b7ca0456d13e8fb32ea7b111a6de197e (diff) | |
parent | 849f104c2789c884428fd45501912c6591a78e12 (diff) | |
download | rneovim-76af219e3e481222e6fece34c7c022d6a58998e1.tar.gz rneovim-76af219e3e481222e6fece34c7c022d6a58998e1.tar.bz2 rneovim-76af219e3e481222e6fece34c7c022d6a58998e1.zip |
Merge pull request #16411 from dundargoc/refactor/upgrade-uncrustify
refactor: upgrade uncrustify config version to 0.74.0
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r-- | src/nvim/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c index 49f8bbab37..cb243668ce 100644 --- a/src/nvim/syntax.c +++ b/src/nvim/syntax.c @@ -7573,7 +7573,7 @@ static bool syn_list_header(const bool did_header, const int outlen, const int i // Show "xxx" with the attributes. if (!did_header) { if (endcol == Columns - 1 && endcol <= name_col) { - msg_putchar(' '); + msg_putchar(' '); } msg_puts_attr("xxx", syn_id2attr(id)); msg_putchar(' '); |