diff options
author | bptato <nincsnevem662@gmail.com> | 2024-03-21 18:28:07 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-03-21 18:28:07 +0100 |
commit | fb4e7db781c743d7b83245097c7dc91b87b76eb8 (patch) | |
tree | 06e86acbcaea5c15150f8b872cc2430652184394 /src/bindings | |
parent | dfd6c3f2f0b5494da192ee60f2c588a92ceef089 (diff) | |
download | chawan-fb4e7db781c743d7b83245097c7dc91b87b76eb8.tar.gz |
libregexp: update LRE_FLAG_UTF16 name
upstream now calls it unicode
Diffstat (limited to 'src/bindings')
-rw-r--r-- | src/bindings/libregexp.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bindings/libregexp.nim b/src/bindings/libregexp.nim index 709a0bc0..7f7b37cf 100644 --- a/src/bindings/libregexp.nim +++ b/src/bindings/libregexp.nim @@ -4,7 +4,7 @@ type LRE_FLAG_IGNORECASE = "i" LRE_FLAG_MULTILINE = "m" LRE_FLAG_DOTALL = "s" - LRE_FLAG_UTF16 = "u" + LRE_FLAG_UNICODE = "u" LRE_FLAG_STICKY = "y" LREFlags* = set[LREFlag] |