From ebfec1c531f32d424bb2aca6e7391ef3bfcbfe20 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 22 Jan 2023 21:14:53 +0000 Subject: patch 9.0.1234: the code style has to be checked manually Problem: The code style has to be checked manually. Solution: Add basic code style checks in a test. Fix or avoid uncovered problems. --- src/gui_beval.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/gui_beval.c') diff --git a/src/gui_beval.c b/src/gui_beval.c index daeac8f3b7..9d85d90e00 100644 --- a/src/gui_beval.c +++ b/src/gui_beval.c @@ -645,7 +645,8 @@ pointerEvent(BalloonEval *beval, XEvent *event) XtTranslateKeycode(gui.dpy, event->xkey.keycode, event->xkey.state, &modifier, &keysym); - if ((keysym == XK_Shift_L) || (keysym == XK_Shift_R)) { + if ((keysym == XK_Shift_L) || (keysym == XK_Shift_R)) + { beval->showState = ShS_UPDATE_PENDING; (*beval->msgCB)(beval, 0); } -- cgit v1.2.3