From 324a5fe7324c7717199f263b4ccd003953ae1334 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Fri, 14 Apr 2017 11:19:55 +0200 Subject: [PATCH] latin: enable perl warnings in include data Catch some inexact nulls. --- writing-latn.inc.pl | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/writing-latn.inc.pl b/writing-latn.inc.pl index 83660bf..35ab1ab 100644 --- a/writing-latn.inc.pl +++ b/writing-latn.inc.pl @@ -1,8 +1,14 @@ use 5.014; use utf8; +use warnings; use List::Util qw( pairs pairmap sum ); -my %C = qw(red #EC1C24 blue #3953A3 yellow #F9EC31 black #231F20); +my %C = ( + red => '#EC1C24', + blue => '#3953A3', + yellow => '#F9EC31', + black => '#231F20', +); my $U = 0; # optional unicode alternatives my @wrapstyle = ( @@ -455,7 +461,7 @@ code128 => { list => [map { dispbar($_) } qw( 111323 131123 131321 112313 132113 132311 211313 231113 231311 112133 112331 132131 113123 113321 133121 313121 211331 231131 213113 213311 - 213131 311123 311321 331121 312113 312311 212222 0 211412 2331112 + 213131 311123 311321 331121 312113 312311 212222 0 211412 23311120 )], }, rm4scc => { @@ -495,7 +501,7 @@ rgbmap => { ], list => [ map { disphues($_, [0, 240, 120], 1) } # Red, Blue, Green - 0 .. 3*3*3 - 1 + 0 .. 3*3*3 - 2 ], }, cmymap => { @@ -585,7 +591,7 @@ nyctographs => { # draw style (0=empty, 1=dot, 2=line connect) to right, down, left, up qw( 0010 0112 2022 2220 2000 2012 0122 0202 0020 0220 0012 0022 2202 - 0222 2222 0102 0200 2201 2002 2200 0100 0110 0120 2001 2010 2020 0 + 0222 2222 0102 0200 2201 2002 2200 0100 0110 0120 2001 2010 2020 0000 ), ], }, -- 2.30.0