# HG changeset patch # User Richard M. Stallman # Date 797789404 0 # Node ID a80915e0d1413966b1e4c271873b8dc59dc349df # Parent 60d40ca8c16b5693bcf2cc91b31c63413028f2a1 (Fcall_interactively): Fix paren nesting. diff -r 60d40ca8c16b -r a80915e0d141 src/callint.c --- 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)))