From ccf57714417146d0701bee70c5dbb696782f070c Mon Sep 17 00:00:00 2001 From: Flaviu Tamas Date: Sat, 10 Jan 2015 19:12:21 -0500 Subject: [PATCH] Allow `u` for unicode matching --- src/nre.nim | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nre.nim b/src/nre.nim index 64ed8c75d8..044d25d4e1 100644 --- a/src/nre.nim +++ b/src/nre.nim @@ -155,6 +155,7 @@ let Options: Table[string, int] = { "O" : pcre.NO_AUTO_POSSESS, "s" : pcre.DOTALL, "U" : pcre.UNGREEDY, + "u" : pcre.UTF8, "W" : pcre.UCP, "X" : pcre.EXTRA, "x" : pcre.EXTENDED,