From c9f630705d1f24c326f6ddaf28426efbce99788f Mon Sep 17 00:00:00 2001 From: Kazuhiro Ito Date: Thu, 14 Nov 2013 19:43:49 +0200 Subject: [PATCH] Fix bug #15892 with link failures of the Cygwin w32 build. src/keyboard.c (make_ctrl_char) [HAVE_NTGUI]: Now externally visible for Cygwin w32 build. src/xdisp.c (erase_phys_cursor) [HAVE_NTGUI]: Now externally visible for Cygwin w32 build. --- src/ChangeLog | 8 ++++++++ src/keyboard.c | 2 +- src/xdisp.c | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 290b83a7ecf..fb262a6efb0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,11 @@ +2013-11-14 Kazuhiro Ito (tiny change) + + * keyboard.c (make_ctrl_char) [HAVE_NTGUI]: Now externally visible + for Cygwin w32 build. + + * xdisp.c (erase_phys_cursor) [HAVE_NTGUI]: Now externally visible + for Cygwin w32 build. (Bug#15892) + 2013-11-14 Paul Eggert Simplify, port and tune bool vector implementation. diff --git a/src/keyboard.c b/src/keyboard.c index 0fcea387aea..450592a07b6 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -2086,7 +2086,7 @@ bind_polling_period (int n) /* Apply the control modifier to CHARACTER. */ -#ifndef WINDOWSNT +#ifndef HAVE_NTGUI static #endif int diff --git a/src/xdisp.c b/src/xdisp.c index d6269f24413..47855a1de3c 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -26345,7 +26345,7 @@ draw_phys_cursor_glyph (struct window *w, struct glyph_row *row, /* Erase the image of a cursor of window W from the screen. */ -#ifndef WINDOWSNT +#ifndef HAVE_NTGUI static #endif void -- 2.39.2