termcol: rename scumm preset to dosbox
[sheet.git] / perl.plp
index 1f5cfe79fa41360d75907ded5cb2003423d7807b..716a1ebfcc51a40ce8554f5da32d028bd4449a9e 100644 (file)
--- a/perl.plp
+++ b/perl.plp
@@ -2,7 +2,7 @@
 
 Html({
        title => 'perl version cheat sheet',
-       version => '1.4',
+       version => '1.5',
        keywords => [qw'
                perl version feature features comparison
                sheet cheat overview summary
@@ -11,6 +11,7 @@ Html({
        data => ['perl.inc.pl'],
 });
 
+use experimental 'signatures';
 :>
 <h1>Perl release summary</h1>
 
@@ -111,7 +112,7 @@ sub featattrs ($attr) {
                $title = 'experimental';
        }
        if (defined $attr->{dropped}) {
-               next unless exists $get{v};
+               return '' unless exists $get{v};
                $title = sprintf 'removed in %vd', $_ for $attr->{dropped} || ();
        }
        elsif ($attr->{stable}) {