From 1a1b3ecfee276795e4c9b2981207e2aba289976c Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 11 May 2021 19:06:41 -0700 Subject: Renamed boundary->edge --- pattern.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pattern.c') diff --git a/pattern.c b/pattern.c index b1bd61a..f107000 100644 --- a/pattern.c +++ b/pattern.c @@ -305,11 +305,11 @@ static pat_t *_bp_simplepattern(file_t *f, const char *str) if (c == '{') { // Surround with `|` word boundaries pat_t *left = new_pat(f, start, start+1, -1, BP_REF); - left->args.ref.name = "left-word-boundary"; + left->args.ref.name = "left-word-edge"; left->args.ref.len = strlen(left->args.ref.name); pat_t *right = new_pat(f, str, str+1, -1, BP_REF); - right->args.ref.name = "right-word-boundary"; + right->args.ref.name = "right-word-edge"; right->args.ref.len = strlen(right->args.ref.name); pat = chain_together(f, left, chain_together(f, pat, right)); -- cgit v1.2.3