From 3558db6f4de3e35f75d97b24f24a4abff3b86115 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Tue, 8 Nov 1994 02:43:25 +0000 Subject: [PATCH] (Fset_frame_height): Compare against height, not width. --- src/frame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.") #ifdef HAVE_X_WINDOWS if (FRAME_X_P (f)) { - if (XINT (rows) != f->width) + if (XINT (rows) != f->height) x_set_window_size (f, 1, f->width, XINT (rows)); } else -- 2.39.5