[Debtags-commits] [svn] r1548 - in tagcoll/trunk: . debian tools

Enrico Zini enrico at costa.debian.org
Thu Feb 9 15:45:32 UTC 2006


Author: enrico
Date: Thu Feb  9 15:45:31 2006
New Revision: 1548

Modified:
   tagcoll/trunk/   (props changed)
   tagcoll/trunk/debian/changelog
   tagcoll/trunk/tools/tagcoll.cc
Log:
 r5847 at viaza:  enrico | 2005-11-12 13:28:22 +0100
 tagcoll --remove-tags now does the right thing


Modified: tagcoll/trunk/debian/changelog
==============================================================================
--- tagcoll/trunk/debian/changelog	(original)
+++ tagcoll/trunk/debian/changelog	Thu Feb  9 15:45:31 2006
@@ -3,9 +3,12 @@
   * New upstream version
      * Applied patch from Torsten Marek to allow tagcoll to play well with
        SWIG
+     * tagcoll --remove-tags now does what it says it should do, which is the
+       exact opposite of what it was doing before.  If you were using it in
+       scripts, you need to add or remove a '!' in front of the expression.
   * Build-depend on tetex-bin instead of latex and dvips.  Closes: #337457.
 
- -- Enrico Zini <enrico at debian.org>  Sat, 12 Nov 2005 13:14:31 +0100
+ -- Enrico Zini <enrico at debian.org>  Sat, 12 Nov 2005 13:26:21 +0100
 
 tagcoll (1.5-1) unstable; urgency=low
 

Modified: tagcoll/trunk/tools/tagcoll.cc
==============================================================================
--- tagcoll/trunk/tools/tagcoll.cc	(original)
+++ tagcoll/trunk/tools/tagcoll.cc	Thu Feb  9 15:45:31 2006
@@ -443,7 +443,7 @@
 		FilterTagsByExpression<string, string> filterByExpression("");
 		if (opts.get("remove-tags").defined())
 		{
-			filterByExpression.setExpression(opts.get("remove-tags").stringVal()); 
+			filterByExpression.setExpression(not Expression(opts.get("remove-tags").stringVal())); 
 			filters.appendFilter(filterByExpression);
 		}
 



More information about the Debtags-commits mailing list