From: Mischa POSLAWSKY Date: Wed, 5 Apr 2017 23:07:00 +0000 (+0200) Subject: charset: drop cell output code support X-Git-Tag: v1.10~238 X-Git-Url: http://git.shiar.nl/sheet.git/commitdiff_plain/780c810a9f1cb1461d8c28da4b7ebbb5a34af041 charset: drop cell output code support Custom output has been replaced by standardised ranges. Last usage was removed in commit v1.9-12-g6d8c2623e1 (2017-03-29) [charset: common cell formatting for utf8 schema]. --- diff --git a/charset.plp b/charset.plp index 33eb679..ff5419f 100644 --- a/charset.plp +++ b/charset.plp @@ -173,10 +173,6 @@ for my $row (@request) { for my $lsb (0 .. $cols - 1) { my $val = ( ($msb * $cols) + $lsb ) * $colsize; if ($row->{cell}) { - if (ref $row->{cell} eq 'CODE') { - print $row->{cell}->($val); - next; - } print range_cell($row->{cell}, $val); next; }