aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-09-23 22:49:47 +0000
committerRichard M. Stallman1994-09-23 22:49:47 +0000
commitaea9f59e1c92e9d3b0e7879f294eb2c3c3a0ded8 (patch)
tree24faf6b34635e3049838924fe3d3cc767b0e1c83 /src
parentd6c862ca685b042eed6cbaa9bcdac06e00051903 (diff)
downloademacs-aea9f59e1c92e9d3b0e7879f294eb2c3c3a0ded8.tar.gz
emacs-aea9f59e1c92e9d3b0e7879f294eb2c3c3a0ded8.zip
(prev_frame): Fix typo.
Diffstat (limited to 'src')
-rw-r--r--src/frame.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frame.c b/src/frame.c
index 8998dd8eb91..be80ea221fc 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -670,7 +670,7 @@ prev_frame (frame, minibuf)
670 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f))) 670 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
671 prev = f; 671 prev = f;
672 } 672 }
673 else if (XTYPE (minibuf) == Lisp_Window) 673 else if (WINDOWP (minibuf))
674 { 674 {
675 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf) 675 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
676 /* Check that F either is, or has forwarded its focus to, 676 /* Check that F either is, or has forwarded its focus to,
@@ -686,7 +686,7 @@ prev_frame (frame, minibuf)
686 if (FRAME_VISIBLE_P (XFRAME (f))) 686 if (FRAME_VISIBLE_P (XFRAME (f)))
687 prev = f; 687 prev = f;
688 } 688 }
689 else if (XFASTINT (f) == 0) 689 else if (XFASTINT (minibuf) == 0)
690 { 690 {
691 FRAME_SAMPLE_VISIBILITY (XFRAME (f)); 691 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
692 if (FRAME_VISIBLE_P (XFRAME (f)) 692 if (FRAME_VISIBLE_P (XFRAME (f))