diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-11-16 15:04:57 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-11-16 15:04:57 +0100 |
commit | 03531f79c3255dc917177dcb16feaed0ba6be684 (patch) | |
tree | 9253ae3fc6228be652ca97ef4dcbb03920701c4f /src/gui_x11.c | |
parent | 3c53160348b8c63f5129a65cbeffd2c1453ce47d (diff) | |
download | vim-git-03531f79c3255dc917177dcb16feaed0ba6be684.tar.gz |
updated for version 7.3.059v7.3.059
Problem: Netbeans: Problem with recursively handling messages for Athena
and Motif.
Solution: Call netbeans_parse_messages() in the main loop, like it's done
for GTK. (Xavier de Gaye)
Diffstat (limited to 'src/gui_x11.c')
-rw-r--r-- | src/gui_x11.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui_x11.c b/src/gui_x11.c index b61aae077..e4a056ee6 100644 --- a/src/gui_x11.c +++ b/src/gui_x11.c @@ -2895,6 +2895,11 @@ gui_mch_wait_for_chars(wtime) focus = gui.in_focus; } +#if defined(FEAT_NETBEANS_INTG) + /* Process any queued netbeans messages. */ + netbeans_parse_messages(); +#endif + /* * Don't use gui_mch_update() because then we will spin-lock until a * char arrives, instead we use XtAppProcessEvent() to hang until an |