From: Richard M. Stallman Date: Tue, 11 Apr 1995 03:04:38 +0000 (+0000) Subject: (Fcall_interactively): Fix handling of @ X-Git-Tag: emacs-19.34~4487 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=21ba0e68efc3960e82d3e876a4ebc34e66ca2b95;p=emacs.git (Fcall_interactively): Fix handling of @ when it tests whether the event has a window in it. --- 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)) {