Skip to content

Commit

Permalink
Whoops, getting ahead of myself
Browse files Browse the repository at this point in the history
  • Loading branch information
brucemiller committed Jul 13, 2023
1 parent b23b130 commit ab7074b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/LaTeXML/Core/Token.pm
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ sub defined_as {
my $cc = $$self[1];
my $occ = $$token[1];
return 1 if ($cc == $occ) && (($occ == CC_SPACE) || ($$self[0] eq $$token[0]));
if (my $defn = (($cc == CC_CS) || ($cc == CC_ACTIVE)) && LookupMeaning($self)) {
if (my $defn = (($cc == CC_CS) || ($cc == CC_ACTIVE)) && $STATE->ookupMeaning($self)) {
my $letto = ((ref $defn eq 'LaTeXML::Core::Token') ? $defn : $defn->getCS);
return 1 if ($$letto[1] == $occ) && (($occ == CC_SPACE) || ($$letto[0] eq $$token[0])); }
return; }
Expand Down

0 comments on commit ab7074b

Please sign in to comment.