diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-04-13 16:55:10 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-04-13 16:55:10 +0000 |
commit | a6d1245e3aa6e1f41bbdd56e69b4c0348f3ab75f (patch) | |
tree | faee3673028aafcc08d33b1844081ca9243622ed /src/callint.c | |
parent | 2a77a7d71231271411bcc0fdc20b1ef752b68548 (diff) | |
download | emacs-a6d1245e3aa6e1f41bbdd56e69b4c0348f3ab75f.tar.gz emacs-a6d1245e3aa6e1f41bbdd56e69b4c0348f3ab75f.tar.bz2 emacs-a6d1245e3aa6e1f41bbdd56e69b4c0348f3ab75f.zip |
Fix previous change.
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 0654c4a33fd..3c05d8de932 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))) |