From: Christian Brabandt Date: Fri, 30 Jan 2026 09:50:46 +0000 (+0000) Subject: patch 9.1.2117: unnecessary braces in terminal.c X-Git-Tag: v9.1.2117^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cfe9d83a8579698deb6abba2bcf31f717ae04577;p=thirdparty%2Fvim.git patch 9.1.2117: unnecessary braces in terminal.c Problem: unnecessary braces in terminal.c (Christ van Willegen, after v9.1.2113) Solution: Remove braces Signed-off-by: Christian Brabandt --- diff --git a/src/terminal.c b/src/terminal.c index 17a7758fa0..42eb5c823d 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -1488,9 +1488,7 @@ term_mouse_click(VTerm *vterm, int key) state = vterm_obtain_state(vterm); if (state == NULL) - { return FALSE; - } vterm_state_get_mousestate(state, &mouse_state); if (mouse_state.flags == 0) diff --git a/src/version.c b/src/version.c index 30f37349d3..aef56cbd24 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2117, /**/ 2116, /**/