0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.0.1508: the :drop command is not always available

Problem:    The :drop command is not always available.
Solution:   Include :drop in all builds. (Yasuhiro Matsumoto, closes #2639)
This commit is contained in:
Bram Moolenaar
2018-02-12 22:08:06 +01:00
parent bfbea567d8
commit 5a656864a0
7 changed files with 34 additions and 45 deletions

View File

@@ -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]".