1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-03 11:33:37 +00:00

Fix conditions for prototype declarations.

* src/dispextern.h (erase_phys_cursor):
* src/keyboard.h (make_ctrl_char): Declare prototypes if HAVE_NTGUI.
This commit is contained in:
Ken Brown 2013-12-11 11:52:34 -05:00
parent 7ae3ae3963
commit 1421be8445
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2013-12-11 Ken Brown <kbrown@cornell.edu>
* dispextern.h (erase_phys_cursor):
* keyboard.h (make_ctrl_char): Declare prototypes if HAVE_NTGUI.
2013-12-11 Dmitry Antipov <dmantipov@yandex.ru>
* nsterm.m (x_free_frame_resources):

View File

@ -3251,7 +3251,7 @@ extern void draw_phys_cursor_glyph (struct window *,
enum draw_glyphs_face);
extern void get_phys_cursor_geometry (struct window *, struct glyph_row *,
struct glyph *, int *, int *, int *);
#ifdef WINDOWSNT
#if HAVE_NTGUI
extern void erase_phys_cursor (struct window *);
#endif
extern void display_and_set_cursor (struct window *, bool, int, int, int, int);

View File

@ -518,7 +518,7 @@ extern bool input_polling_used (void);
extern void clear_input_pending (void);
extern bool requeued_events_pending_p (void);
extern void bind_polling_period (int);
#ifdef WINDOWSNT
#if HAVE_NTGUI
extern int make_ctrl_char (int) ATTRIBUTE_CONST;
#endif
extern void stuff_buffered_input (Lisp_Object);