Skip to content

Commit

Permalink
fix r"\u2220" bug mentioned in #107
Browse files Browse the repository at this point in the history
  • Loading branch information
nolta committed Mar 8, 2013
1 parent 3fee09f commit 7909e3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions base/pcre.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const COMPILE_MASK =
DOTALL |
EXTENDED |
FIRSTLINE |
JAVASCRIPT_COMPAT |
MULTILINE |
NEWLINE_ANY |
NEWLINE_ANYCRLF |
Expand Down
2 changes: 1 addition & 1 deletion base/regex.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

include("pcre.jl")

const DEFAULT_OPTS = PCRE.UTF8
const DEFAULT_OPTS = PCRE.JAVASCRIPT_COMPAT | PCRE.UTF8

type Regex
pattern::ByteString
Expand Down

1 comment on commit 7909e3d

@StefanKarpinski
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks.

Please sign in to comment.