summaryrefslogtreecommitdiff
path: root/src/misc2.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-30 23:20:33 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-30 23:20:33 +0100
commit20fb9f346497daca4d19402fdfa5de7958642477 (patch)
treea5f484e21e755b04f4e2ab195c8aac3e8c299daa /src/misc2.c
parentba4ef2757cfc126f342b710f1ad9ea39e6b56cec (diff)
downloadvim-git-20fb9f346497daca4d19402fdfa5de7958642477.tar.gz
patch 7.4.1217v7.4.1217
Problem: Execution of command on channel doesn't work yet. Solution: Implement the "ex" and "normal" commands.
Diffstat (limited to 'src/misc2.c')
-rw-r--r--src/misc2.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/misc2.c b/src/misc2.c
index 05f779f9b..78a7479cc 100644
--- a/src/misc2.c
+++ b/src/misc2.c
@@ -6240,6 +6240,10 @@ parse_queued_messages(void)
/* Process the queued netbeans messages. */
netbeans_parse_messages();
# endif
+# ifdef FEAT_CHANNEL
+ /* Process the messages queued on channels. */
+ channel_parse_messages();
+# endif
# if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
/* Process the queued clientserver messages. */
server_parse_messages();