diff options
| author | Richard M. Stallman <rms@gnu.org> | 1995-04-11 03:04:38 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1995-04-11 03:04:38 +0000 |
| commit | 21ba0e68efc3960e82d3e876a4ebc34e66ca2b95 (patch) | |
| tree | c953bab3365e17263f22bf5374adda18369f23bd /src | |
| parent | 012733b38e2eaf7536c7f4381de4e320ae7abd6d (diff) | |
| download | emacs-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.c | 2 |
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)) { |
