Subject: | dictionary link files broken in 2.5201 |
Use of $HOME dictionary link files and --links_dictionaries appears to be broken in 2.5201, and has been broken for years in previous releases. My attached one-line fix comes from 2011. I am unclear why this bug has remained unfixed for so long.
Subject: | link-dict-fix.diff |
*** ./TextToHTML.pm.orig 2019-08-31 13:35:36.684420846 -0400
--- ./TextToHTML.pm 2019-08-31 13:44:35.357164295 -0400
***************
*** 5290,5296 ****
if (-r $ld)
{
$self->{'make_links'} = 1;
! $self->args(['--links_dictionaries', $ld]);
}
else
{
--- 5290,5296 ----
if (-r $ld)
{
$self->{'make_links'} = 1;
! push(@{$self->{links_dictionaries}}, $ld);
}
else
{