summaryrefslogtreecommitdiff
path: root/src/callint.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-04-13 16:10:04 +0000
committerRichard M. Stallman <rms@gnu.org>1995-04-13 16:10:04 +0000
commit38e1b058b65da285d06313da6d0453008976839c (patch)
treef08b7df59e8f85a0a28ac58b5e88f39cbfc2465b /src/callint.c
parenteb2a76c92431db07bea6d32e82a60af8a0b20479 (diff)
downloademacs-38e1b058b65da285d06313da6d0453008976839c.tar.gz
(Fcall_interactively): Fix paren nesting.
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 b11c3d2d029..0654c4a33fd 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -385,7 +385,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
if (EVENT_HAS_PARAMETERS (event)
&& (event = XCONS (event)->cdr, CONSP (event))
&& (event = XCONS (event)->car, CONSP (event))
- && (event = XCONS (event)->car), WINDOWP (event))
+ && (event = XCONS (event)->car, WINDOWP (event))
{
if (MINI_WINDOW_P (XWINDOW (event))
&& ! (minibuf_level > 0 && EQ (event, minibuf_window)))