From 21ba0e68efc3960e82d3e876a4ebc34e66ca2b95 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 11 Apr 1995 03:04:38 +0000 Subject: [PATCH] (Fcall_interactively): Fix handling of @ when it tests whether the event has a window in it. --- src/callint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/callint.c b/src/callint.c index 8fbd45c3614..b11c3d2d029 100644 --- a/src/callint.c +++ b/src/callint.c @@ -383,7 +383,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.") event = XVECTOR (this_command_keys)->contents[next_event]; if (EVENT_HAS_PARAMETERS (event) - && (event = XCONS (event)->car, CONSP (event)) + && (event = XCONS (event)->cdr, CONSP (event)) && (event = XCONS (event)->car, CONSP (event)) && (event = XCONS (event)->car), WINDOWP (event)) { -- 2.39.5