Skip to content

Commit

Permalink
Merge pull request #1174 from drgrice1/explicit-multiplication-mq-prec
Browse files Browse the repository at this point in the history
Give explicit multiplication the special mq_precedence as well.
  • Loading branch information
pstaabp authored Jan 28, 2025
2 parents 29483af + 79f9625 commit 65f8625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Parser/Context.pm
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ sub usePrecedence {
/^Standard/i and do {
$self->operators->set(
' *' => { precedence => 3, mq_precedence => 2.9 },
'* ' => { precedence => 3 },
'* ' => { precedence => 3, mq_precedence => 2.9 },
' /' => { precedence => 3 },
'/ ' => { precedence => 3 },
fn => { precedence => 7.5 },
Expand Down

0 comments on commit 65f8625

Please sign in to comment.