diff options
| author | Eli Zaretskii | 2013-09-05 14:00:55 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-09-05 14:00:55 +0300 |
| commit | e7873136dd8dbacbbebf534500355d29a07fed8e (patch) | |
| tree | e84dbf7101c2a271a12da76d6f17a3c7767ad874 /src/w32console.c | |
| parent | 50a5f95ec5e610e8edbe09b03388c83684d87fd7 (diff) | |
| download | emacs-e7873136dd8dbacbbebf534500355d29a07fed8e.tar.gz emacs-e7873136dd8dbacbbebf534500355d29a07fed8e.zip | |
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) | |||
| 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". */ |
| 558 | int | 558 | int |
| 559 | curX (struct tty_display_info *tty) | 559 | cursorX (struct tty_display_info *tty) |
| 560 | { | 560 | { |
| 561 | return cursor_coords.X; | 561 | return cursor_coords.X; |
| 562 | } | 562 | } |
| 563 | 563 | ||
| 564 | int | 564 | int |
| 565 | curY (struct tty_display_info *tty) | 565 | cursorY (struct tty_display_info *tty) |
| 566 | { | 566 | { |
| 567 | return cursor_coords.Y; | 567 | return cursor_coords.Y; |
| 568 | } | 568 | } |