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/ex_docmd.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/ex_docmd.c')
-rw-r--r-- | src/ex_docmd.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 6d2a58b246..888148eb69 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -155,7 +155,6 @@ static void ex_stop(exarg_T *eap); static void ex_exit(exarg_T *eap); static void ex_print(exarg_T *eap); static void ex_goto(exarg_T *eap); -static void ex_shell(exarg_T *eap); static void ex_preserve(exarg_T *eap); static void ex_recover(exarg_T *eap); static void ex_mode(exarg_T *eap); @@ -5722,14 +5721,6 @@ static void ex_goto(exarg_T *eap) goto_byte(eap->line2); } -/* - * ":shell". - */ -static void ex_shell(exarg_T *eap) -{ - do_shell(NULL, 0); -} - #if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \ || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \ || defined(FEAT_GUI_MSWIN) \ |