diff options
| author | Joakim Verona | 2010-09-10 12:22:44 +0200 |
|---|---|---|
| committer | Joakim Verona | 2010-09-10 12:22:44 +0200 |
| commit | a2080bef8a6de50deaa63e2b9eb53a8cc6308d7a (patch) | |
| tree | dc13434a2358a44bce6af0aa93a617dd82d5a3fb /src/xterm.c | |
| parent | 5d131913cfdb52afeec90b7bf37ba307e4d8b3b3 (diff) | |
| download | emacs-a2080bef8a6de50deaa63e2b9eb53a8cc6308d7a.tar.gz emacs-a2080bef8a6de50deaa63e2b9eb53a8cc6308d7a.zip | |
verified hypothesis that the stuck-xiwdgets-when-scrolling happens due to emacs redisplay optimizations. inhibit optimization completely for now, until some better solution is found.
Diffstat (limited to 'src/xterm.c')
| -rw-r--r-- | src/xterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c index 4790b75f923..41d7ffd73fc 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -10384,7 +10384,7 @@ static struct redisplay_interface x_redisplay_interface = | |||
| 10384 | x_write_glyphs, | 10384 | x_write_glyphs, |
| 10385 | x_insert_glyphs, | 10385 | x_insert_glyphs, |
| 10386 | x_clear_end_of_line, | 10386 | x_clear_end_of_line, |
| 10387 | x_scroll_run, | 10387 | x_scroll_run, //maybe xwidgets dont work too well with scrolling by blitting |
| 10388 | x_after_update_window_line, | 10388 | x_after_update_window_line, |
| 10389 | x_update_window_begin, | 10389 | x_update_window_begin, |
| 10390 | x_update_window_end, | 10390 | x_update_window_end, |