Mercurial > emacs
changeset 11415:a80915e0d141
(Fcall_interactively): Fix paren nesting.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 13 Apr 1995 16:10:04 +0000 |
parents | 60d40ca8c16b |
children | 764094d03938 |
files | src/callint.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/callint.c Thu Apr 13 16:09:46 1995 +0000 +++ b/src/callint.c Thu Apr 13 16:10:04 1995 +0000 @@ -385,7 +385,7 @@ 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)))