Skip to content

Commit

Permalink
Fix fencepost error
Browse files Browse the repository at this point in the history
  • Loading branch information
spencertipping committed Aug 25, 2010
1 parent e42d6a6 commit 0a813b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/factor-js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ my %intersection;
map ++$intersection{$_}, @$_ for @files;
# Delete entries appearing in fewer than all files:
$intersection{$_} < $#files && delete $intersection{$_} for keys %intersection;
$intersection{$_} < @files && delete $intersection{$_} for keys %intersection;
# And write the common definitions. Arbitrarily, we use the first file for ordering:
open my $fh, '>', 'common.js';
Expand Down

0 comments on commit 0a813b0

Please sign in to comment.