From 780c810a9f1cb1461d8c28da4b7ebbb5a34af041 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Thu, 6 Apr 2017 01:07:00 +0200 Subject: [PATCH] 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]. --- charset.plp | 4 ---- 1 file changed, 4 deletions(-) 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; } -- 2.30.0