From 63525228467c28170396999d7e7b4bf1f0069942 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 13 Apr 1995 16:10:04 +0000 Subject: [PATCH] (Fcall_interactively): Fix paren nesting. --- src/callint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/callint.c b/src/callint.c index b11c3d2d029..0654c4a33fd 100644 --- a/src/callint.c +++ b/src/callint.c @@ -385,7 +385,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.") if (EVENT_HAS_PARAMETERS (event) && (event = XCONS (event)->cdr, CONSP (event)) && (event = XCONS (event)->car, CONSP (event)) - && (event = XCONS (event)->car), WINDOWP (event)) + && (event = XCONS (event)->car, WINDOWP (event)) { if (MINI_WINDOW_P (XWINDOW (event)) && ! (minibuf_level > 0 && EQ (event, minibuf_window))) -- 2.39.5