aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32console.c
diff options
context:
space:
mode:
authorEli Zaretskii2013-09-05 14:00:55 +0300
committerEli Zaretskii2013-09-05 14:00:55 +0300
commite7873136dd8dbacbbebf534500355d29a07fed8e (patch)
treee84dbf7101c2a271a12da76d6f17a3c7767ad874 /src/w32console.c
parent50a5f95ec5e610e8edbe09b03388c83684d87fd7 (diff)
downloademacs-e7873136dd8dbacbbebf534500355d29a07fed8e.tar.gz
emacs-e7873136dd8dbacbbebf534500355d29a07fed8e.zip
Fixed C compilation problems.
Diffstat (limited to 'src/w32console.c')
-rw-r--r--src/w32console.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/w32console.c b/src/w32console.c
index a85469cb382..cb42bae1421 100644
--- a/src/w32console.c
+++ b/src/w32console.c
@@ -553,16 +553,16 @@ Wcm_clear (struct tty_display_info *tty)
553 553
554 554
555/* Report the current cursor position. The following two functions 555/* Report the current cursor position. The following two functions
556 mirror cm.h macros and are used in term.c's tty menu code, so they 556 are used in term.c's tty menu code, so they are not really
557 are not really "stubs". */ 557 "stubs". */
558int 558int
559curX (struct tty_display_info *tty) 559cursorX (struct tty_display_info *tty)
560{ 560{
561 return cursor_coords.X; 561 return cursor_coords.X;
562} 562}
563 563
564int 564int
565curY (struct tty_display_info *tty) 565cursorY (struct tty_display_info *tty)
566{ 566{
567 return cursor_coords.Y; 567 return cursor_coords.Y;
568} 568}