summaryrefslogtreecommitdiff
path: root/src/callint.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-04-11 03:04:38 +0000
committerRichard M. Stallman <rms@gnu.org>1995-04-11 03:04:38 +0000
commit8b06ac575ba7372177f7d4ebe57fb8bcb1e6fb5b (patch)
tree605c6aeb4e5279f6efc2dce1941ece66746b5c63 /src/callint.c
parent07412aa93e794330c731b6da3399c7253418fb1c (diff)
downloademacs-8b06ac575ba7372177f7d4ebe57fb8bcb1e6fb5b.tar.gz
(Fcall_interactively): Fix handling of @
when it tests whether the event has a window in it.
Diffstat (limited to 'src/callint.c')
-rw-r--r--src/callint.c2
1 files changed, 1 insertions, 1 deletions
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))
{