aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1994-03-09 06:13:36 +0000
committerKarl Heuer1994-03-09 06:13:36 +0000
commitd68807fc714ef48a1b16716122ebc12b8f9fa981 (patch)
treef45bc7fc83202bc540aebe618d35da28398416f9
parentd1fa2e8a7adc18d129b5d80f8b83d1ebe431a054 (diff)
downloademacs-d68807fc714ef48a1b16716122ebc12b8f9fa981.tar.gz
emacs-d68807fc714ef48a1b16716122ebc12b8f9fa981.zip
Fix typo in previous change.
-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.")
329 && XTYPE (event = XCONS (event)->car) == Lisp_Cons 329 && XTYPE (event = XCONS (event)->car) == Lisp_Cons
330 && XTYPE (event = XCONS (event)->car) == Lisp_Window) 330 && XTYPE (event = XCONS (event)->car) == Lisp_Window)
331 { 331 {
332 if (MINI_WINDOW_P (XWINDOW (window)) 332 if (MINI_WINDOW_P (XWINDOW (event))
333 && NILP (call1 (intern ("minibuffer-window-active-p"), 333 && NILP (call1 (intern ("minibuffer-window-active-p"),
334 window))) 334 event)))
335 error ("Attempt to select inactive minibuffer window"); 335 error ("Attempt to select inactive minibuffer window");
336 Fselect_window (event); 336 Fselect_window (event);
337 } 337 }