From ae8dfb9f9c613c9cef343ec4c33c4154da715918 Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Mon, 15 Dec 2025 20:06:18 -0600 Subject: remove apostrophe from selurl urlchars since it caused false positives --- st.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/st.c b/st.c index e3ec184..686e1a2 100644 --- a/st.c +++ b/st.c @@ -3223,7 +3223,7 @@ daddch(URLdfa *dfa, char c) */ static const char URLCHARS[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz" - "0123456789-._~:/?#@!$&'*+,;=%"; + "0123456789-._~:/?#@!$&*+,;=%"; // removed apostrophe (') since it causes false positives as well static const char RPFX[] = "//:sptth"; if (!strchr(URLCHARS, c)) { -- cgit v1.2.3