emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r115464: Fix conditions for prototype declarations.


From: Ken Brown
Subject: [Emacs-diffs] trunk r115464: Fix conditions for prototype declarations.
Date: Wed, 11 Dec 2013 16:52:31 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115464
revision-id: address@hidden
parent: address@hidden
committer: Ken Brown <address@hidden>
branch nick: trunk
timestamp: Wed 2013-12-11 11:52:34 -0500
message:
  Fix conditions for prototype declarations.
  
  * src/dispextern.h (erase_phys_cursor):
  * src/keyboard.h (make_ctrl_char): Declare prototypes if HAVE_NTGUI.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/dispextern.h               
dispextern.h-20091113204419-o5vbwnq5f7feedwu-218
  src/keyboard.h                 keyboard.h-20091113204419-o5vbwnq5f7feedwu-450
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-12-11 15:06:04 +0000
+++ b/src/ChangeLog     2013-12-11 16:52:34 +0000
@@ -1,3 +1,8 @@
+2013-12-11  Ken Brown  <address@hidden>
+
+       * dispextern.h (erase_phys_cursor):
+       * keyboard.h (make_ctrl_char): Declare prototypes if HAVE_NTGUI.
+
 2013-12-11  Dmitry Antipov  <address@hidden>
 
        * nsterm.m (x_free_frame_resources):

=== modified file 'src/dispextern.h'
--- a/src/dispextern.h  2013-12-04 16:58:05 +0000
+++ b/src/dispextern.h  2013-12-11 16:52:34 +0000
@@ -3251,7 +3251,7 @@
                                     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);

=== modified file 'src/keyboard.h'
--- a/src/keyboard.h    2013-11-30 09:25:31 +0000
+++ b/src/keyboard.h    2013-12-11 16:52:34 +0000
@@ -518,7 +518,7 @@
 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);


reply via email to

[Prev in Thread] Current Thread [Next in Thread]