Skip to content

Commit 4b764c5

Browse files
ervandewb4winckler
authored andcommitted
Fix processing of netbeans messages
Processing of netbeans messages in macvim has been broken since 1e08012 due to that processing being moved to gui_x11.c. Add similar block to gui_macvim.m to restore the processing of netbeans messages.
1 parent a914f7d commit 4b764c5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/MacVim/gui_macvim.m

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,11 @@
392392
// called, so force a flush of the command queue here.
393393
[[MMBackend sharedInstance] flushQueue:YES];
394394

395+
#if defined(FEAT_NETBEANS_INTG)
396+
/* Process any queued netbeans messages. */
397+
netbeans_parse_messages();
398+
#endif
399+
395400
return [[MMBackend sharedInstance] waitForInput:wtime];
396401
}
397402

0 commit comments

Comments
 (0)