From 665b6912dcdd2c8dbc893bea12329134f174764e Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 10 Feb 2020 01:23:19 -0500 Subject: Match URLs surrounded by parentheses But include a pair of parentheses in the URL itself. --- url.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'url.c') diff --git a/url.c b/url.c index 7ab1e53..1ccc206 100644 --- a/url.c +++ b/url.c @@ -43,7 +43,7 @@ static const char *Pattern = { "telnet|" "vnc" ")" - ":[^[:space:]>\"]+" + ":([^[:space:]>\"()]|[(][^)]*[)])+" }; static regex_t Regex; -- cgit 1.4.1