From 566a850964945d12e95fa6290f63783977038f53 Mon Sep 17 00:00:00 2001 From: Charlie Gordon Date: Mon, 19 Feb 2024 16:30:08 +0100 Subject: Rename regex flag and field utf16 -> unicode - rename is_utf16 structure member to is_unicode - rename flag LRE_FLAG_UTF16 as LRE_FLAG_UNICODE --- lib/quickjs/libregexp.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/quickjs/libregexp.h') diff --git a/lib/quickjs/libregexp.h b/lib/quickjs/libregexp.h index 7c03b1ad..757b2773 100644 --- a/lib/quickjs/libregexp.h +++ b/lib/quickjs/libregexp.h @@ -34,10 +34,9 @@ #define LRE_FLAG_IGNORECASE (1 << 1) #define LRE_FLAG_MULTILINE (1 << 2) #define LRE_FLAG_DOTALL (1 << 3) -#define LRE_FLAG_UTF16 (1 << 4) +#define LRE_FLAG_UNICODE (1 << 4) #define LRE_FLAG_STICKY (1 << 5) #define LRE_FLAG_INDICES (1 << 6) /* Unused by libregexp, just recorded. */ - #define LRE_FLAG_NAMED_GROUPS (1 << 7) /* named groups are present in the regexp */ uint8_t *lre_compile(int *plen, char *error_msg, int error_msg_size, -- cgit 1.4.1-2-gfad0 edit this file 'description' to name the repository.
about summary refs log tree commit diff stats
path: root/config.mk
blob: 0a86a54cddc7d0ca8e8521ad385a5f5f339fd4db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25