]> git.eshelyaron.com Git - emacs.git/commitdiff
(OUTPUT_IF, OUTPUT): Cast frame height to int.
authorRichard M. Stallman <rms@gnu.org>
Tue, 3 Sep 1996 22:22:10 +0000 (22:22 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 3 Sep 1996 22:22:10 +0000 (22:22 +0000)
src/term.c

index 5515c555be338b0a5ba8b0e0c5a1ed98165a5ecd..351cfd2c37e67ff317d8d09597289be0d25401d7 100644 (file)
@@ -37,10 +37,10 @@ extern Lisp_Object Fmake_sparse_keymap ();
 #define max(a, b) ((a) > (b) ? (a) : (b))
 #define min(a, b) ((a) < (b) ? (a) : (b))
 
-#define OUTPUT(a) tputs (a, FRAME_HEIGHT (selected_frame) - curY, cmputc)
+#define OUTPUT(a) tputs (a, (int) (FRAME_HEIGHT (selected_frame) - curY), cmputc)
 #define OUTPUT1(a) tputs (a, 1, cmputc)
 #define OUTPUTL(a, lines) tputs (a, lines, cmputc)
-#define OUTPUT_IF(a) { if (a) tputs (a, FRAME_HEIGHT (selected_frame) - curY, cmputc); }
+#define OUTPUT_IF(a) { if (a) tputs (a, (int) (FRAME_HEIGHT (selected_frame) - curY), cmputc); }
 #define OUTPUT1_IF(a) { if (a) tputs (a, 1, cmputc); }
 
 /* Function to use to ring the bell.  */