summaryrefslogtreecommitdiff
path: root/src
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
commit21ba0e68efc3960e82d3e876a4ebc34e66ca2b95 (patch)
treec953bab3365e17263f22bf5374adda18369f23bd /src
parent012733b38e2eaf7536c7f4381de4e320ae7abd6d (diff)
downloademacs-21ba0e68efc3960e82d3e876a4ebc34e66ca2b95.tar.gz
(Fcall_interactively): Fix handling of @
when it tests whether the event has a window in it.
Diffstat (limited to 'src')
-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))
{