From 357583ff8ca4aaaeef656a5c4856ee23b0d7e98e Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Tue, 3 Feb 2015 20:07:00 -0500 Subject: Macro cleanup: HAVE_SANDBOX --- src/nvim/edit.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/nvim/edit.c') diff --git a/src/nvim/edit.c b/src/nvim/edit.c index c0bd8cc8fd..fcbbc8ab7f 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -268,13 +268,11 @@ edit ( // set Insstart_orig to Insstart update_Insstart_orig = true; -#ifdef HAVE_SANDBOX - /* Don't allow inserting in the sandbox. */ + // Don't allow inserting in the sandbox. if (sandbox != 0) { EMSG(_(e_sandbox)); return FALSE; } -#endif /* Don't allow changes in the buffer while editing the cmdline. The * caller of getcmdline() may get confused. */ if (textlock != 0) { -- cgit