diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-04-13 16:10:04 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-04-13 16:10:04 +0000 |
commit | 63525228467c28170396999d7e7b4bf1f0069942 (patch) | |
tree | 80d816d33e1a62c5e441365af46eca8b44b22887 /src/callint.c | |
parent | c3935f9df31c3dd63e7abf3dbd7dc43f936115e5 (diff) | |
download | emacs-63525228467c28170396999d7e7b4bf1f0069942.tar.gz emacs-63525228467c28170396999d7e7b4bf1f0069942.tar.bz2 emacs-63525228467c28170396999d7e7b4bf1f0069942.zip |
(Fcall_interactively): Fix paren nesting.
Diffstat (limited to 'src/callint.c')
-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 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))) |