Skip to content

Commit

Permalink
up default regexp size since this is definitely not enough for Ruby s…
Browse files Browse the repository at this point in the history
…tdlib regexps
  • Loading branch information
enebo committed May 16, 2024
1 parent 3750dcb commit 648837c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/joni/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import java.io.PrintStream;

public interface Config extends org.jcodings.Config {
final int REGEX_MAX_LENGTH = ConfigSupport.getInt("joni.regex_max_length", 10000);
final int REGEX_MAX_LENGTH = ConfigSupport.getInt("joni.regex_max_length", 15000);
final int CHAR_TABLE_SIZE = ConfigSupport.getInt("joni.char_table_size", 256);
final boolean USE_NO_INVALID_QUANTIFIER = ConfigSupport.getBoolean("joni.use_no_invalid_quantifier", true);
final int SCANENV_MEMNODES_SIZE = ConfigSupport.getInt("joni.scanenv_memnodes_size", 8);
Expand Down

0 comments on commit 648837c

Please sign in to comment.