Skip to content

Commit 8b76a61

Browse files
committed
Fix possible precedence problem between ! and %s
1 parent 107c109 commit 8b76a61

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pgbadger

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20539,7 +20539,7 @@ sub highlight_code {
2053920539
|| ( !$self->_is_keyword( $token, $next_token, $last_token )
2054020540
&& $next_token ne '('
2054120541
&& $token ne '('
20542-
&& !$self->_is_comment($token) )
20542+
&& not $self->_is_comment($token) )
2054320543
)
2054420544
{
2054520545
if ( $self->{'uc_functions'} == 1 ) {

0 commit comments

Comments
 (0)