From 4b764c5b86e81b9a41c424304ff48d785daeb5f9 Mon Sep 17 00:00:00 2001 From: ervandew Date: Mon, 21 Nov 2011 14:32:02 -0800 Subject: [PATCH] Fix processing of netbeans messages Processing of netbeans messages in macvim has been broken since b4winckler/macvim@1e08012084f0d293c4046419307835ca4cf06606 due to that processing being moved to gui_x11.c. Add similar block to gui_macvim.m to restore the processing of netbeans messages. --- src/MacVim/gui_macvim.m | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/MacVim/gui_macvim.m b/src/MacVim/gui_macvim.m index 91ce04ac7b..3a7400ec32 100644 --- a/src/MacVim/gui_macvim.m +++ b/src/MacVim/gui_macvim.m @@ -392,6 +392,11 @@ gui_mch_wait_for_chars(int wtime) // called, so force a flush of the command queue here. [[MMBackend sharedInstance] flushQueue:YES]; +#if defined(FEAT_NETBEANS_INTG) + /* Process any queued netbeans messages. */ + netbeans_parse_messages(); +#endif + return [[MMBackend sharedInstance] waitForInput:wtime]; }