diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2014-07-30 08:03:45 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2014-07-30 08:03:45 +0400 |
commit | 609fc791b884bd6986cbe50b5a697ed1fe1f697c (patch) | |
tree | 27de51d973b29efc220c5c610e8b5ab555eaec27 /src/xterm.c | |
parent | 173a45a0895fa70ec77312764ecb7af5e3391134 (diff) | |
download | emacs-609fc791b884bd6986cbe50b5a697ed1fe1f697c.tar.gz emacs-609fc791b884bd6986cbe50b5a697ed1fe1f697c.tar.bz2 emacs-609fc791b884bd6986cbe50b5a697ed1fe1f697c.zip |
* xterm.c (x_sync_with_move): Really wait 0.5s, not 0.0005s.
Diffstat (limited to 'src/xterm.c')
-rw-r--r-- | src/xterm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xterm.c b/src/xterm.c index b4eba7fcf82..e35d63c785f 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -9351,7 +9351,7 @@ x_sync_with_move (struct frame *f, int left, int top, int fuzzy) 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 @@ x_sync_with_move (struct frame *f, int left, int top, int fuzzy) /* 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); } |