diff options
author | Dundar Göc <gocdundar@gmail.com> | 2021-11-22 10:57:37 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2021-11-23 10:28:49 +0100 |
commit | 849f104c2789c884428fd45501912c6591a78e12 (patch) | |
tree | 1906bf49e09896b9215579cb03f1466d2da491d6 /src/nvim/syntax.c | |
parent | fd6df7481a88006fd60bc8980b4db1000ddeda27 (diff) | |
download | rneovim-849f104c2789c884428fd45501912c6591a78e12.tar.gz rneovim-849f104c2789c884428fd45501912c6591a78e12.tar.bz2 rneovim-849f104c2789c884428fd45501912c6591a78e12.zip |
refactor: upgrade uncrustify config version to 0.74.0
Disable formatting for assert.h since there's a bug that results in a
segmentation fault in uncrustify.
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 dd3f1b4dc9..f493b33654 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(' '); |