mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.0-193
This commit is contained in:
parent
47b8b15b5f
commit
b01a8b749b
@ -6967,6 +6967,14 @@ ex_drop(eap)
|
||||
*/
|
||||
set_arglist(eap->arg);
|
||||
|
||||
/*
|
||||
* Expanding wildcards may result in an empty argument list. E.g. when
|
||||
* editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we
|
||||
* already did an error message for this.
|
||||
*/
|
||||
if (ARGCOUNT == 0)
|
||||
return;
|
||||
|
||||
# ifdef FEAT_WINDOWS
|
||||
if (cmdmod.tab)
|
||||
{
|
||||
|
@ -666,6 +666,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
193,
|
||||
/**/
|
||||
192,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user