]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix conditions for prototype declarations.
authorKen Brown <kbrown@cornell.edu>
Wed, 11 Dec 2013 16:52:34 +0000 (11:52 -0500)
committerKen Brown <kbrown@cornell.edu>
Wed, 11 Dec 2013 16:52:34 +0000 (11:52 -0500)
* src/dispextern.h (erase_phys_cursor):
* src/keyboard.h (make_ctrl_char): Declare prototypes if HAVE_NTGUI.

src/ChangeLog
src/dispextern.h
src/keyboard.h

index 9f3161a220d7cb1b61dac448a7c1dc55706bf912..89c640bd8c785f30a4d748938d15424a37a20316 100644 (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):
index 7de4edf21965028815b1d900370365ec965545c3..5976d068a780efbbc36107beb5987a8e291ed323 100644 (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);
index a1aa59fe988a55771a40bdfeb67509a63ebfa765..33a2d535cd6b84be3fd12b5705c4c1567beda30d 100644 (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);