]> Sergey Matveev's repositories - public-inbox.git/commitdiff
treewide: kill problematic "$h->{k} //= do {" assignments
authorEric Wong <e@80x24.org>
Mon, 1 Nov 2021 19:06:09 +0000 (19:06 +0000)
committerEric Wong <e@80x24.org>
Mon, 1 Nov 2021 19:49:39 +0000 (19:49 +0000)
As stated in the previous change, conditional hash assignments
which trigger other hash assignments seem problematic, at times.
So replace:

$h->{k} //= do { $h->{x} = ...; $val };

$h->{k} // do {
$h->{x} = ...;
$hk->{k} = $val
};

"||=" is affected the same way, and some instances of "||=" are
replaced with "//=" or "// do {", now.


No differences found