diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-03 15:14:46 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-03 15:14:46 -0400 |
| commit | e86813d9c1e363da269a8730c6b1fc620cf3ed2d (patch) | |
| tree | 713fc10efe19a69b1cbb3ba27e5e8ea3b7db7dfc /builtins/text.c | |
| parent | 75b703236355de1ac2837828fdae9b6fdd198c28 (diff) | |
Bugfix for $/{..}/
Diffstat (limited to 'builtins/text.c')
| -rw-r--r-- | builtins/text.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/text.c b/builtins/text.c index 422f99a5..1bffbf27 100644 --- a/builtins/text.c +++ b/builtins/text.c @@ -1148,7 +1148,7 @@ int64_t match(Text_t text, Pattern_t pattern, int64_t text_index, int64_t patter if (prop_name[1] == '.') { any = true; prop = UC_PROPERTY_PRIVATE_USE; - break; + goto got_prop; } break; case 'd': |
