Skip to content

Commit

Permalink
Add flags for \x{7HHHHHHH} to Java syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
haozhun authored and cberner committed Apr 21, 2015
1 parent 7b2fc9e commit 389f2bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/org/joni/Syntax.java
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,8 @@ public boolean warnReduntantNestedRepeat() {
public static final Syntax Java = new Syntax(
(( GNU_REGEX_OP | OP_QMARK_NON_GREEDY |
OP_ESC_CONTROL_CHARS | OP_ESC_C_CONTROL |
OP_ESC_OCTAL3 | OP_ESC_X_HEX2 )
OP_ESC_OCTAL3 | OP_ESC_X_HEX2 |
OP_ESC_X_BRACE_HEX8)
& ~OP_ESC_LTGT_WORD_BEGIN_END ),

( OP2_ESC_CAPITAL_Q_QUOTE | OP2_QMARK_GROUP_EFFECT |
Expand Down

0 comments on commit 389f2bb

Please sign in to comment.