Fix processing of netbeans messages

Processing of netbeans messages in macvim has been broken since
b4winckler/macvim@1e08012084 due to that
processing being moved to gui_x11.c. Add similar block to gui_macvim.m
to restore the processing of netbeans messages.
This commit is contained in:
ervandew
2011-11-21 14:32:02 -08:00
committed by Bjorn Winckler
parent a914f7d905
commit 4b764c5b86
+5
View File
@@ -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];
}