]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fset_frame_height): Compare against height, not width.
authorKarl Heuer <kwzh@gnu.org>
Tue, 8 Nov 1994 02:43:25 +0000 (02:43 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 8 Nov 1994 02:43:25 +0000 (02:43 +0000)
src/frame.c

index cf25bf51bca8ffb697f61415175be3b85d326109..72d5025ac284ff23e1887c87de0370ec853644ac 100644 (file)
@@ -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