aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-27 03:46:21 +0000
committerRichard M. Stallman1993-05-27 03:46:21 +0000
commita2db42d60fad5502066d0cd037f544b54a0b185b (patch)
treec8dcc55e8a99d448711f6419091485a96518e6de /src
parentecc99658d3fcf24f38781421327dbc8ec2d56ebe (diff)
downloademacs-a2db42d60fad5502066d0cd037f544b54a0b185b.tar.gz
emacs-a2db42d60fad5502066d0cd037f544b54a0b185b.zip
(window_loop, case GET_LRU_WINDOW): Get frame's width properly.
Diffstat (limited to 'src')
-rw-r--r--src/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c
index a1fda056463..0fbc4d41f64 100644
--- a/src/window.c
+++ b/src/window.c
@@ -1131,7 +1131,7 @@ window_loop (type, obj, mini, frames)
1131 case GET_LRU_WINDOW: 1131 case GET_LRU_WINDOW:
1132 /* t as arg means consider only full-width windows */ 1132 /* t as arg means consider only full-width windows */
1133 if (!NILP (obj) && XFASTINT (XWINDOW (w)->width) 1133 if (!NILP (obj) && XFASTINT (XWINDOW (w)->width)
1134 != FRAME_WIDTH (frame)) 1134 != FRAME_WIDTH (XFRAME (WINDOW_FRAME (XWINDOW (w)))))
1135 break; 1135 break;
1136#if 0 1136#if 0
1137 /* Ignore invisible and iconified frames. */ 1137 /* Ignore invisible and iconified frames. */