From 42a8fa5c4e57c2851c78141e1b1c8388fac71615 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Fri, 27 Oct 2023 00:24:23 +0200 Subject: [PATCH] apl: restore styling of empty meaning cells Broken in commit v1.13-22-g97470ff139 (2022-06-04) [apl: silence warning about printf parameters]. --- apl.plp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apl.plp b/apl.plp index 395cf20..302a55d 100644 --- a/apl.plp +++ b/apl.plp @@ -70,7 +70,7 @@ for my $op (@{$ops}) { printf( '%s', map { defined ? (!!$_->[1] && qq( title="$_->[1]"), $_->[0]) : (' class=Xi', '') } - [map { EscapeHTML($_) } split /\n/, $_, 2] + $_ && [map { EscapeHTML($_) } split /\n/, $_, 2] ) for $monad, $dyad; say ''; } -- 2.30.0