diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-11-05 21:09:53 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-11-05 21:09:53 +0100 |
commit | e251c6463913bcd7c9c40b4dc168010f6de68b5a (patch) | |
tree | a8d2cfcfa09de64d86b10f1a6137373b553f078b /src/work.c | |
parent | 436557eca3da4492def86d5ef8c2d84c5d1c3e71 (diff) |
Check for whitespace after regex using islbrk()
Diffstat (limited to 'src/work.c')
-rw-r--r-- | src/work.c | 13 |
1 files changed, 0 insertions, 13 deletions
@@ -41,7 +41,6 @@ typedef struct { static void compute_pos(const char8_t *p, pos_state_t *ps); static bool has_lbrk_p(u8view_t sv); -static bool islbrk(u8view_t g); static int svposcmp(const void *a, const void *b); static void write_match_to_buffer(u8view_t sv, u8view_t *hl); @@ -482,18 +481,6 @@ has_lbrk_p(u8view_t sv) return false; } -bool -islbrk(u8view_t g) -{ - return ucseq(g, U8("\n")) - || ucseq(g, U8("\v")) - || ucseq(g, U8("\f")) - || ucseq(g, U8("\r\n")) - || ucseq(g, U8("\x85")) - || ucseq(g, U8("\u2028")) - || ucseq(g, U8("\u2029")); -} - int svposcmp(const void *a_, const void *b_) { |