summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-02-12 22:08:06 +0100
committerBram Moolenaar <Bram@vim.org>2018-02-12 22:08:06 +0100
commit5a656864a0610547da28e0c8c1649ecd1d782948 (patch)
tree0e1ac6d440a00142418f5db8142a442e945da2de /src/ex_cmds.c
parentbfbea567d89fdaa08ed987fd80daa53a6ce399d1 (diff)
patch 8.0.1508: the :drop command is not always availablev8.0.1508
Problem: The :drop command is not always available. Solution: Include :drop in all builds. (Yasuhiro Matsumoto, closes #2639)
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r--src/ex_cmds.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 11dac06202..788e9eb828 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -8335,7 +8335,6 @@ ex_smile(exarg_T *eap UNUSED)
msg_clr_eos();
}
-#if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO)
/*
* ":drop"
* Opens the first argument in a window. When there are two or more arguments
@@ -8415,7 +8414,6 @@ ex_drop(exarg_T *eap)
ex_rewind(eap);
}
}
-#endif
/*
* Skip over the pattern argument of ":vimgrep /pat/[g][j]".