Skip to content

Commit

Permalink
The generator erroneously required "U+" to be used in both parts of a…
Browse files Browse the repository at this point in the history
… CSS range. Not anymore.
  • Loading branch information
sorccu committed Jan 7, 2010
1 parent 8e19694 commit 2a3ae8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate/lib/UnicodeRange.php
Expand Up @@ -137,7 +137,7 @@ private static function solve($range)
return array($from, $from, false);
}

$to = hexdec(substr(end($stops), 2));
$to = hexdec(end($stops));

return array($from, $to);
}
Expand Down

0 comments on commit 2a3ae8c

Please sign in to comment.