]> git.eshelyaron.com Git - emacs.git/commitdiff
(term_init): Avoid type-mismatch calling get_frame_size.
authorRichard M. Stallman <rms@gnu.org>
Tue, 3 Sep 1996 22:00:27 +0000 (22:00 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 3 Sep 1996 22:00:27 +0000 (22:00 +0000)
src/term.c

index a9533ece45a9a2ba0931c5bff674fe94567105b3..5515c555be338b0a5ba8b0e0c5a1ed98165a5ecd 100644 (file)
@@ -1585,8 +1585,13 @@ to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.\n",
   term_get_fkeys (address);
 
   /* Get frame size from system, or else from termcap.  */
-  get_frame_size (&FRAME_WIDTH (selected_frame),
-                  &FRAME_HEIGHT (selected_frame));
+  {
+    int height, width;
+    get_frame_size (&width, &height);
+    FRAME_WIDTH (selected_frame) = width;
+    FRAME_HEIGHT (selected_frame) = height;
+  }
+
   if (FRAME_WIDTH (selected_frame) <= 0)
     FRAME_WIDTH (selected_frame) = tgetnum ("co");
   if (FRAME_HEIGHT (selected_frame) <= 0)