From 849f104c2789c884428fd45501912c6591a78e12 Mon Sep 17 00:00:00 2001 From: Dundar Göc Date: Mon, 22 Nov 2021 10:57:37 +0100 Subject: 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. --- src/nvim/syntax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/syntax.c') 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(' '); -- cgit