aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/tag.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-03-05 19:03:37 -0500
committerJustin M. Keyes <justinkz@gmail.com>2015-03-05 19:03:37 -0500
commita06186de41d4051c0fffbb936ae91238ee6c4169 (patch)
treeb0bb27feca64e5c1bff821225c642c42bd94122a /src/nvim/tag.c
parent0dd1ad0760ecdbfeef94da4ef33d71e66eab35b3 (diff)
parent117bf11e19bc0b23fb8baf79acc44ece9fcc8f2b (diff)
downloadrneovim-a06186de41d4051c0fffbb936ae91238ee6c4169.tar.gz
rneovim-a06186de41d4051c0fffbb936ae91238ee6c4169.tar.bz2
rneovim-a06186de41d4051c0fffbb936ae91238ee6c4169.zip
Merge #2011 'Macro cleanup'
Diffstat (limited to 'src/nvim/tag.c')
-rw-r--r--src/nvim/tag.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c
index 44c653c852..9e6a65cef3 100644
--- a/src/nvim/tag.c
+++ b/src/nvim/tag.c
@@ -2416,9 +2416,7 @@ jumpto_tag (
save_secure = secure;
secure = 1;
-#ifdef HAVE_SANDBOX
++sandbox;
-#endif
save_magic = p_magic;
p_magic = FALSE; /* always execute with 'nomagic' */
/* Save value of no_hlsearch, jumping to a tag is not a real search */
@@ -2525,9 +2523,7 @@ jumpto_tag (
wait_return(TRUE);
secure = save_secure;
p_magic = save_magic;
-#ifdef HAVE_SANDBOX
--sandbox;
-#endif
/* restore no_hlsearch when keeping the old search pattern */
if (search_options) {
SET_NO_HLSEARCH(save_no_hlsearch);