summaryrefslogtreecommitdiff
path: root/tags.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-10-17 13:27:30 -0400
committerpommicket <pommicket@gmail.com>2023-10-17 13:27:30 -0400
commited07fe85ec0b85d8d0ade65caac0f04b999890b4 (patch)
treee30eb2aa794e6068366086423754332f80c796f5 /tags.c
parent7b7fb826b33773bab0cb57cc0dc234a9d7a0742e (diff)
set things up for UTF-8 PCRE2
Diffstat (limited to 'tags.c')
-rw-r--r--tags.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/tags.c b/tags.c
index 7d8086b..68a3f2c 100644
--- a/tags.c
+++ b/tags.c
@@ -324,18 +324,18 @@ top:;
if (end_anchored) options |= PCRE2_ENDANCHORED;
int error_code;
PCRE2_SIZE error_offset;
- pcre2_code *code = pcre2_compile(pattern32.str, pattern32.len,
+ pcre2_code_32 *code = pcre2_compile_32(pattern32.str, pattern32.len,
options, &error_code, &error_offset, NULL);
if (code) {
- pcre2_match_data *match_data = pcre2_match_data_create(10, NULL);
+ pcre2_match_data_32 *match_data = pcre2_match_data_create_32(10, NULL);
if (match_data) {
for (u32 line_idx = 0, line_count = buffer_line_count(buffer); line_idx < line_count; ++line_idx) {
String32 line = buffer_get_line(buffer, line_idx);
- int n = pcre2_match(code, line.str, line.len, 0, PCRE2_NOTEMPTY,
+ int n = pcre2_match_32(code, line.str, line.len, 0, PCRE2_NOTEMPTY,
match_data, NULL);
if (n == 1) {
// found it!
- PCRE2_SIZE *ovector = pcre2_get_ovector_pointer(match_data);
+ PCRE2_SIZE *ovector = pcre2_get_ovector_pointer_32(match_data);
PCRE2_SIZE index = ovector[0];
BufferPos pos = {line_idx, (u32)index};
buffer_cursor_move_to_pos(buffer, pos);
@@ -344,9 +344,9 @@ top:;
break;
}
}
- pcre2_match_data_free(match_data);
+ pcre2_match_data_free_32(match_data);
}
- pcre2_code_free(code);
+ pcre2_code_free_32(code);
}
str32_free(&pattern32);
free(pattern);