From: Karl Heuer Date: Tue, 8 Nov 1994 02:43:25 +0000 (+0000) Subject: (Fset_frame_height): Compare against height, not width. X-Git-Tag: emacs-19.34~6024 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3558db6f4de3e35f75d97b24f24a4abff3b86115;p=emacs.git (Fset_frame_height): Compare against height, not width. --- 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