diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-02-12 22:08:06 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-02-12 22:08:06 +0100 |
commit | 5a656864a0610547da28e0c8c1649ecd1d782948 (patch) | |
tree | 0e1ac6d440a00142418f5db8142a442e945da2de /src/ex_cmds2.c | |
parent | bfbea567d89fdaa08ed987fd80daa53a6ce399d1 (diff) | |
download | vim-git-5a656864a0610547da28e0c8c1649ecd1d782948.tar.gz |
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_cmds2.c')
-rw-r--r-- | src/ex_cmds2.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index 8dae69a72..c36435cc1 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -2549,7 +2549,6 @@ get_arglist_exp( } #endif -#if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO) /* * Redefine the argument list. */ @@ -2558,7 +2557,6 @@ set_arglist(char_u *str) { do_arglist(str, AL_SET, 0); } -#endif /* * "what" == AL_SET: Redefine the argument list to 'str'. |