aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-04-11 03:04:38 +0000
committerRichard M. Stallman1995-04-11 03:04:38 +0000
commit21ba0e68efc3960e82d3e876a4ebc34e66ca2b95 (patch)
treec953bab3365e17263f22bf5374adda18369f23bd /src
parent012733b38e2eaf7536c7f4381de4e320ae7abd6d (diff)
downloademacs-21ba0e68efc3960e82d3e876a4ebc34e66ca2b95.tar.gz
emacs-21ba0e68efc3960e82d3e876a4ebc34e66ca2b95.zip
(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.")
383 383
384 event = XVECTOR (this_command_keys)->contents[next_event]; 384 event = XVECTOR (this_command_keys)->contents[next_event];
385 if (EVENT_HAS_PARAMETERS (event) 385 if (EVENT_HAS_PARAMETERS (event)
386 && (event = XCONS (event)->car, CONSP (event)) 386 && (event = XCONS (event)->cdr, CONSP (event))
387 && (event = XCONS (event)->car, CONSP (event)) 387 && (event = XCONS (event)->car, CONSP (event))
388 && (event = XCONS (event)->car), WINDOWP (event)) 388 && (event = XCONS (event)->car), WINDOWP (event))
389 { 389 {