From: Karl Heuer Date: Wed, 9 Mar 1994 06:13:36 +0000 (+0000) Subject: Fix typo in previous change. X-Git-Tag: emacs-19.34~9581 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d68807fc714ef48a1b16716122ebc12b8f9fa981;p=emacs.git Fix typo in previous change. --- diff --git a/src/callint.c b/src/callint.c index a489a8243d6..340ab5a617a 100644 --- a/src/callint.c +++ b/src/callint.c @@ -329,9 +329,9 @@ Otherwise, this is done only if an arg is read using the minibuffer.") && XTYPE (event = XCONS (event)->car) == Lisp_Cons && XTYPE (event = XCONS (event)->car) == Lisp_Window) { - if (MINI_WINDOW_P (XWINDOW (window)) + if (MINI_WINDOW_P (XWINDOW (event)) && NILP (call1 (intern ("minibuffer-window-active-p"), - window))) + event))) error ("Attempt to select inactive minibuffer window"); Fselect_window (event); }