﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
136	Glob exclude broken	michel	somebody	"Excluding files from a set does not work. Let's assume we have a directory with two .cpp files (helloworld.cpp and excludefile.cpp). The following line

{{{
ECHO [ glob *.cpp : excludefile.cpp ] ;
}}}

will output

{{{
helloworld.cpp excludefile.cpp
}}}

although ""excludefile.cpp"" has been excluded.

I have a workaround for this problem:

{{{
import set ;
ECHO [ set.difference [ glob *.cpp ] : excludefile.cpp ] ;
}}}

will output

{{{
helloworld.cpp
}}}

only."	defect	closed	major		component1	2.0	worksforme		
