comparison src/gui.c @ 8493:caed4b2d305f v7.4.1537

commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 11 22:52:15 2016 +0100 patch 7.4.1537 Problem: Too many feature flags for pipes, jobs and channels. Solution: Only use FEAT_JOB_CHANNEL.
author Christian Brabandt <cb@256bit.org>
date Fri, 11 Mar 2016 23:00:06 +0100
parents 563c923b1584
children 2f57bbe870ea
comparison
equal deleted inserted replaced
8492:a2a51c928924 8493:caed4b2d305f
4947 { 4947 {
4948 /* Clear the command. Needed for when forking+exiting, to avoid part 4948 /* Clear the command. Needed for when forking+exiting, to avoid part
4949 * of the argument ending up after the shell prompt. */ 4949 * of the argument ending up after the shell prompt. */
4950 msg_clr_eos_force(); 4950 msg_clr_eos_force();
4951 gui_start(); 4951 gui_start();
4952 #ifdef FEAT_CHANNEL 4952 #ifdef FEAT_JOB_CHANNEL
4953 channel_gui_register_all(); 4953 channel_gui_register_all();
4954 #endif 4954 #endif
4955 } 4955 }
4956 if (!ends_excmd(*eap->arg)) 4956 if (!ends_excmd(*eap->arg))
4957 ex_next(eap); 4957 ex_next(eap);