From e96c61d92d4f815389b3fd5ff7646fbab30195e9 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sun, 12 Oct 2025 23:52:35 -0400 Subject: [PATCH] vim-patch:8.2.4773: build failure without the +eval feature Problem: Build failure without the +eval feature. Solution: Use other error message. Avoid warnings. https://github.com/vim/vim/commit/a9549c9e8f368a7fa1dcbe14ec23e82c6a0b8715 Co-authored-by: Bram Moolenaar --- src/nvim/indent_c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvim/indent_c.c b/src/nvim/indent_c.c index 0c1220c1d9..d197e78187 100644 --- a/src/nvim/indent_c.c +++ b/src/nvim/indent_c.c @@ -559,7 +559,7 @@ static int cin_isdefault(const char *s) && s[1] != ':'; } -/// Recognize a scope declaration label set in 'cinscopedecls'. +/// Recognize a scope declaration label from the 'cinscopedecls' option. static bool cin_isscopedecl(const char *p) { const char *s = cin_skipcomment(p);