From 63e9a4b1e1fe99462ec97b2145b91898fa5b4085 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Mon, 31 May 2021 08:40:26 -0700 Subject: [PATCH] * src/keyboard.c (make_lispy_event): Fix previous. --- src/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keyboard.c b/src/keyboard.c index 4433cfa4193..bddbb793a50 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -5733,7 +5733,7 @@ make_lispy_event (struct input_event *event) /* Was the down event in a window body? */ && FIXNUMP (Fcar (Fcdr (start_pos))) && WINDOW_LIVE_P (Fcar (start_pos)) - && Ffboundp (Qwindow_edges)) + && !NILP (Ffboundp (Qwindow_edges))) /* If the window (etc.) at the mouse position has changed between the down event and the up event, we assume there's been a redisplay between the -- 2.39.2