Skip to content

Commit

Permalink
updating installer data
Browse files Browse the repository at this point in the history
  • Loading branch information
norbusan committed Jan 21, 2025
1 parent 7619202 commit 8ff8f57
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions tlpkg/TeXLive/TLUtils.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3762,17 +3762,19 @@ sub parse_AddHyphen_line {
return %ret;
}
if (! $ret{"name"}) {
$ret{"error"} = "AddHyphen is missing name setting: $a";
$ret{"error"} = "AddHyphen is missing name setting: $line";
return %ret;
}
if ($ret{"lefthyphenmin"} !~ /^[0-9]$/) {
$ret{"lefthyphenmin"} = "" if ! $ret{"lefthyphenmin"}; #undef warning
$ret{"error"} = "AddHyphen has missing or bad "
. " lefthyphenmin ($ret{lefthyphenmin}): $a";
. " lefthyphenmin ($ret{lefthyphenmin}): $line";
return %ret;
}
if ($ret{"righthyphenmin"} !~ /^[0-9]$/) {
$ret{"righthyphenmin"} = "" if ! $ret{"righthyphenmin"}; #undef warning
$ret{"error"} = "AddHyphen has missing or bad "
. " righthyphenmin ($ret{righthyphenmin}): $a";
. " righthyphenmin ($ret{righthyphenmin}): $line";
return %ret;
}
# this default value couldn't be set earlier
Expand Down

0 comments on commit 8ff8f57

Please sign in to comment.