emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r117611: * xterm.c (x_sync_with_move): Really wait 0


From: Dmitry Antipov
Subject: [Emacs-diffs] trunk r117611: * xterm.c (x_sync_with_move): Really wait 0.5s, not 0.0005s.
Date: Wed, 30 Jul 2014 04:04:22 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117611
revision-id: address@hidden
parent: address@hidden
committer: Dmitry Antipov <address@hidden>
branch nick: trunk
timestamp: Wed 2014-07-30 08:03:45 +0400
message:
  * xterm.c (x_sync_with_move): Really wait 0.5s, not 0.0005s.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/xterm.c                    xterm.c-20091113204419-o5vbwnq5f7feedwu-244
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2014-07-30 03:41:56 +0000
+++ b/src/ChangeLog     2014-07-30 04:03:45 +0000
@@ -3,6 +3,7 @@
        * xrdb.c (x_load_resources) [USE_MOTIF]: Although not strictly
        necessary, put horizontal scroll bar resources as well.  See
        <http://lists.gnu.org/archive/html/emacs-devel/2014-07/msg00430.html>.
+       * xterm.c (x_sync_with_move): Really wait 0.5s, not 0.0005s.
 
 2014-07-29  Dmitry Antipov  <address@hidden>
 

=== modified file 'src/xterm.c'
--- a/src/xterm.c       2014-07-27 13:21:30 +0000
+++ b/src/xterm.c       2014-07-30 04:03:45 +0000
@@ -9351,7 +9351,7 @@
           if (eabs (current_left - left) <= 10
              && eabs (current_top - top) <= 40)
             return;
-  }
+       }
       else if (current_left == left && current_top == top)
         return;
     }
@@ -9359,7 +9359,7 @@
   /* As a last resort, just wait 0.5 seconds and hope that XGetGeometry
      will then return up-to-date position info. */
 
-  wait_reading_process_output (0, 500000, 0, 0, Qnil, NULL, 0);
+  wait_reading_process_output (0, 500000000, 0, 0, Qnil, NULL, 0);
 }
 
 


reply via email to

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