From 3fcff30d9ad509b3bf1e10d24a6439ce2426d1a3 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Wed, 2 Apr 2014 11:32:41 -0300 Subject: Remove `:shell` and `suspend_shell` Issue #450 contains more details --- src/ui.c | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'src/ui.c') diff --git a/src/ui.c b/src/ui.c index 685b44ed28..43a99adef4 100644 --- a/src/ui.c +++ b/src/ui.c @@ -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'. -- cgit