diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-09-05 14:00:55 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-09-05 14:00:55 +0300 |
commit | e7873136dd8dbacbbebf534500355d29a07fed8e (patch) | |
tree | e84dbf7101c2a271a12da76d6f17a3c7767ad874 /src/w32console.c | |
parent | 50a5f95ec5e610e8edbe09b03388c83684d87fd7 (diff) | |
download | emacs-e7873136dd8dbacbbebf534500355d29a07fed8e.tar.gz |
Fixed C compilation problems.
Diffstat (limited to 'src/w32console.c')
-rw-r--r-- | src/w32console.c | 8 |
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) /* Report the current cursor position. The following two functions - mirror cm.h macros and are used in term.c's tty menu code, so they - are not really "stubs". */ + are used in term.c's tty menu code, so they are not really + "stubs". */ int -curX (struct tty_display_info *tty) +cursorX (struct tty_display_info *tty) { return cursor_coords.X; } int -curY (struct tty_display_info *tty) +cursorY (struct tty_display_info *tty) { return cursor_coords.Y; } |