emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r114314: * xterm.c (handle_one_xevent): Do not call


From: Dmitry Antipov
Subject: [Emacs-diffs] trunk r114314: * xterm.c (handle_one_xevent): Do not call to x_clear_area
Date: Tue, 17 Sep 2013 06:58:55 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114314
revision-id: address@hidden
parent: address@hidden
committer: Dmitry Antipov <address@hidden>
branch nick: trunk
timestamp: Tue 2013-09-17 10:57:30 +0400
message:
  * xterm.c (handle_one_xevent): Do not call to x_clear_area
  if GTK >= 2.7.0.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/xterm.c                    xterm.c-20091113204419-o5vbwnq5f7feedwu-244
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-09-17 06:33:24 +0000
+++ b/src/ChangeLog     2013-09-17 06:57:30 +0000
@@ -5,6 +5,8 @@
        (fn_g_type_init) [!WINDOWSNT]: Define only if Glib < 2.36.0.
        * xsettings.c (init_gconf, init_gsettings): Do not check
        for g_type_init.
+       * xterm.c (handle_one_xevent): Do not call to x_clear_area
+       if GTK >= 2.7.0.
 
 2013-09-16  Jan Djärv  <address@hidden>
 

=== modified file 'src/xterm.c'
--- a/src/xterm.c       2013-09-16 11:23:03 +0000
+++ b/src/xterm.c       2013-09-17 06:57:30 +0000
@@ -6151,7 +6151,7 @@
       f = x_window_to_frame (dpyinfo, event->xexpose.window);
       if (f)
         {
-#ifdef USE_GTK
+#if ! GTK_CHECK_VERSION (2, 7, 0)
           /* This seems to be needed for GTK 2.6.  */
          x_clear_area (event->xexpose.display,
                        event->xexpose.window,


reply via email to

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