diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-02 11:32:41 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-03 12:06:50 -0300 |
commit | 3fcff30d9ad509b3bf1e10d24a6439ce2426d1a3 (patch) | |
tree | 2b709b644e8f1ab6943afe73432ed2684a3af08b /src/ui.c | |
parent | b336eb46f0868a5e769b3b7655e9be055a4abfdb (diff) | |
download | rneovim-3fcff30d9ad509b3bf1e10d24a6439ce2426d1a3.tar.gz rneovim-3fcff30d9ad509b3bf1e10d24a6439ce2426d1a3.tar.bz2 rneovim-3fcff30d9ad509b3bf1e10d24a6439ce2426d1a3.zip |
Remove `:shell` and `suspend_shell`
Issue #450 contains more details
Diffstat (limited to 'src/ui.c')
-rw-r--r-- | src/ui.c | 17 |
1 files changed, 0 insertions, 17 deletions
@@ -209,23 +209,6 @@ void ui_suspend(void) mch_suspend(); } -#if !defined(UNIX) || !defined(SIGTSTP) || defined(PROTO) || defined(__BEOS__) -/* - * When the OS can't really suspend, call this function to start a shell. - * This is never called in the GUI. - */ -void suspend_shell(void) -{ - if (*p_sh == NUL) - EMSG(_(e_shellempty)); - else { - MSG_PUTS(_("new shell started\n")); - do_shell(NULL, 0); - } -} - -#endif - /* * Try to get the current Vim shell size. Put the result in Rows and Columns. * Use the new sizes as defaults for 'columns' and 'lines'. |