summaryrefslogtreecommitdiff
path: root/src/callint.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-03-09 06:13:36 +0000
committerKarl Heuer <kwzh@gnu.org>1994-03-09 06:13:36 +0000
commit8472ce540de8065430ef7552c65fd6054915020a (patch)
treeea1ace639eb9f6accee26f7ce59407f1f6ada81b /src/callint.c
parent7c41ceeaeb0cb700eb450c41f6e00db38727468e (diff)
downloademacs-8472ce540de8065430ef7552c65fd6054915020a.tar.gz
Fix typo in previous change.
Diffstat (limited to 'src/callint.c')
-rw-r--r--src/callint.c4
1 files changed, 2 insertions, 2 deletions
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);
}