Skip to content

Commit

Permalink
Add guard
Browse files Browse the repository at this point in the history
  • Loading branch information
brucemiller committed Oct 10, 2024
1 parent 76b13c3 commit c5815a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/LaTeXML/Engine/TeX_Math.pool.ltxml
Original file line number Diff line number Diff line change
Expand Up @@ -582,8 +582,8 @@ DefConstructor('\delimiter Number',
$n = $n >> 12; # Ignore 3 rightmost digits and treat as \mathchar
my ($glyph, $f, $rev, %props) = decodeMathChar($n);
$whatsit->setProperty(glyph => $glyph) if $glyph;
$whatsit->setProperties(%props);
$whatsit->setProperty(font => $f) if $glyph;
$whatsit->setProperties(%props) if %props;
$whatsit->setProperty(font => $f) if $glyph;
return; });

# Almost like a register, but different...
Expand Down

0 comments on commit c5815a3

Please sign in to comment.