Skip to content

Commit

Permalink
Merge pull request #191 from nobu/fix-regexp-option
Browse files Browse the repository at this point in the history
Fix flag to `Regexp.new`
  • Loading branch information
nobu authored Jun 16, 2022
2 parents 341e581 + 65cd26e commit 2c70cfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/racc/statetransitiontable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def mkmapexp(arr)
end
i = ii
end
Regexp.compile(map, 'n')
Regexp.compile(map, nil, 'n')
end

def set_table(entries, dummy, tbl, chk, ptr)
Expand Down

0 comments on commit 2c70cfd

Please sign in to comment.