Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
> > I just realized that > > if(!strcmp(optarg,"@")) > > should be > > if(strcmp(optarg,"@")) > > shouldn't it? (since you want ignore_cvsignore set when the argument IS > > matched against "@") > > strcmp returns 0 when the strings match. Sorry... hayfever season so brain not on full power. Yep, you're right. > > > - if (ign_name (dp->d_name)) > > + if (ignore_cvsignore==0 && ign_name (dp->d_name)) > > { > > add_log ('I', dp->d_name); > > Not sure about this one.. it's quite legitimate to do: > > -I @ -I *.exe -I *.dll Ah. Yes. My thinking was when you are doing an import, you specify -I @ because this means you want all the files imported, without any further exception whatsoever... But I'm sure somebody would want to do -I @ -I *.exe -I *.dll or similar... ok, so I guess we should allow for that situation. Greetings from Luxembourg, David