UnicodeFuzzySearch: Add parenthesis around the function call.

`chr` or `hex` was eating up everything in the function and treating them all as parameters. Because of that, it results into:

```perl
{
    symbol => "...",
}
```

Instead of:

```perl
{
    symbol => "...",
    code => "...",
    name => "...",
}
```
master
jagtalon 2014-07-22 20:20:04 +00:00
parent f9c3c07aa2
commit 335029025a
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ handle remainder => sub {
@matches = map {
(my $code, my $name) = split /;/;
{symbol => chr hex $code,
{symbol => chr(hex($code)),
code => $code,
name => $name};
} @matches;