From: Richard M. Stallman Date: Thu, 13 Apr 1995 16:10:04 +0000 (+0000) Subject: (Fcall_interactively): Fix paren nesting. X-Git-Tag: emacs-19.34~4443 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=63525228467c28170396999d7e7b4bf1f0069942;p=emacs.git (Fcall_interactively): Fix paren nesting. --- 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)))