emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r115105: Fix bug #15892 with link failures of the Cy


From: Eli Zaretskii
Subject: [Emacs-diffs] trunk r115105: Fix bug #15892 with link failures of the Cygwin w32 build.
Date: Thu, 14 Nov 2013 17:45:04 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115105
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/15892
author: Kazuhiro Ito <address@hidden>
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Thu 2013-11-14 19:43:49 +0200
message:
  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.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/keyboard.c                 keyboard.c-20091113204419-o5vbwnq5f7feedwu-449
  src/xdisp.c                    xdisp.c-20091113204419-o5vbwnq5f7feedwu-240
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-11-14 02:39:28 +0000
+++ b/src/ChangeLog     2013-11-14 17:43:49 +0000
@@ -1,3 +1,11 @@
+2013-11-14  Kazuhiro Ito  <address@hidden>  (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  <address@hidden>
 
        Simplify, port and tune bool vector implementation.

=== modified file 'src/keyboard.c'
--- a/src/keyboard.c    2013-11-11 05:18:53 +0000
+++ b/src/keyboard.c    2013-11-14 17:43:49 +0000
@@ -2086,7 +2086,7 @@
 
 /* Apply the control modifier to CHARACTER.  */
 
-#ifndef WINDOWSNT
+#ifndef HAVE_NTGUI
 static
 #endif
 int

=== modified file 'src/xdisp.c'
--- a/src/xdisp.c       2013-11-08 10:21:35 +0000
+++ b/src/xdisp.c       2013-11-14 17:43:49 +0000
@@ -26345,7 +26345,7 @@
 
 /* Erase the image of a cursor of window W from the screen.  */
 
-#ifndef WINDOWSNT
+#ifndef HAVE_NTGUI
 static
 #endif
 void


reply via email to

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