0
0
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:
Bram Moolenaar 2007-02-13 02:47:22 +00:00
parent 47b8b15b5f
commit b01a8b749b
2 changed files with 10 additions and 0 deletions

View File

@ -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)
{

View File

@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
193,
/**/
192,
/**/