aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1994-11-08 02:43:25 +0000
committerKarl Heuer1994-11-08 02:43:25 +0000
commit3558db6f4de3e35f75d97b24f24a4abff3b86115 (patch)
tree1c796337f886b3ab50b293a4738ed28bd881c652
parentbcce3e0245afd9deb2a914a3b80d68f8f6ebc8f1 (diff)
downloademacs-3558db6f4de3e35f75d97b24f24a4abff3b86115.tar.gz
emacs-3558db6f4de3e35f75d97b24f24a4abff3b86115.zip
(Fset_frame_height): Compare against height, not width.
-rw-r--r--src/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index cf25bf51bca..72d5025ac28 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -1610,7 +1610,7 @@ but that the idea of the actual height of the frame should not be changed.")
1610#ifdef HAVE_X_WINDOWS 1610#ifdef HAVE_X_WINDOWS
1611 if (FRAME_X_P (f)) 1611 if (FRAME_X_P (f))
1612 { 1612 {
1613 if (XINT (rows) != f->width) 1613 if (XINT (rows) != f->height)
1614 x_set_window_size (f, 1, f->width, XINT (rows)); 1614 x_set_window_size (f, 1, f->width, XINT (rows));
1615 } 1615 }
1616 else 1616 else