From: Richard Kimberly Heck Date: Sat, 27 May 2023 15:37:00 +0000 (-0400) Subject: Fix typo X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=04fe6c89dc0e40b9483029b53c97fd5081dc165f;p=features.git Fix typo --- diff --git a/src/Text.cpp b/src/Text.cpp index 923fc1db6c..80bd80c1d5 100644 --- a/src/Text.cpp +++ b/src/Text.cpp @@ -5396,7 +5396,7 @@ void Text::dispatch(Cursor & cur, FuncRequest & cmd) // invalid after regex_match returns, since it is then // being given a temporary object. (Thanks to Georg for // figuring that out.) - regex const link_re("^(([a-z]+):|www\.).*"); + regex const link_re("^(([a-z]+):|www\\.).*"); smatch matches; string const c = to_utf8(lowercase(content));