diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-03-12 21:59:33 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-03-12 21:59:33 -0400 |
commit | b5bb6269b0f27c5192eaed6a069ba564c278760a (patch) | |
tree | 675c4cfe46db1eda93287965a3704ba65fa8cb44 /src/nvim/ex_docmd.c | |
parent | 5fcd12f8b54afbf5675f164ca1ecf774adc3dad2 (diff) | |
parent | 29ad67dd470a44f7697ca401d838c1dd38f7ef61 (diff) | |
download | rneovim-b5bb6269b0f27c5192eaed6a069ba564c278760a.tar.gz rneovim-b5bb6269b0f27c5192eaed6a069ba564c278760a.tar.bz2 rneovim-b5bb6269b0f27c5192eaed6a069ba564c278760a.zip |
Merge #2008 'Special interfaces cleanup'
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index 4e835cc43a..fa6021075d 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -5375,9 +5375,7 @@ static void ex_hide(exarg_T *eap) */ static void ex_stop(exarg_T *eap) { - /* - * Disallow suspending for "rvim". - */ + // Disallow suspending in restricted mode (-Z) if (!check_restricted()) { if (!eap->forceit) { autowrite_all(); |