aewl

diff tag.c @ 533:a5567a0d3011

do* has no Arg arument anymore (never called directly)
author Anselm R. Garbe <arg@10kloc.org>
date Fri, 06 Oct 2006 13:06:37 +0200
parents 651f2c868b31
children 797e27162b43
line diff
     1.1 --- a/tag.c	Fri Oct 06 11:50:15 2006 +0200
     1.2 +++ b/tag.c	Fri Oct 06 13:06:37 2006 +0200
     1.3 @@ -117,7 +117,7 @@
     1.4  		sel->tags[i] = False;
     1.5  	sel->tags[arg->i] = True;
     1.6  	sel->weight = arg->i;
     1.7 -	arrange(NULL);
     1.8 +	arrange();
     1.9  }
    1.10  
    1.11  void
    1.12 @@ -131,5 +131,5 @@
    1.13  	if(i == ntags)
    1.14  		sel->tags[arg->i] = True;
    1.15  	sel->weight = (i == ntags) ? arg->i : i;
    1.16 -	arrange(NULL);
    1.17 +	arrange();
    1.18  }