aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.cxx
diff options
context:
space:
mode:
authorNeil Hodgson <nyamatongwe@gmail.com>2018-05-16 11:43:01 +1000
committerNeil Hodgson <nyamatongwe@gmail.com>2018-05-16 11:43:01 +1000
commit811e4dd5158e45e2830d2d431a48a9a2297de226 (patch)
tree6370f6a223de64b65d0636209c78bd866c9c6cfb /src/Document.cxx
parent4d667aefdae2f120ae77548f07c0a18fd83f0a8a (diff)
downloadscintilla-mirror-811e4dd5158e45e2830d2d431a48a9a2297de226.tar.gz
Fix regex crash reported with libstdc++ on macOS that occurs
when the regex has a locale imbued.
Diffstat (limited to 'src/Document.cxx')
-rw-r--r--src/Document.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/Document.cxx b/src/Document.cxx
index bcc368a68..222a8bc31 100644
--- a/src/Document.cxx
+++ b/src/Document.cxx
@@ -2949,13 +2949,6 @@ Sci::Position Cxx11RegexFindText(const Document *doc, Sci::Position minPos, Sci:
#endif
ws[outLen] = 0;
std::wregex regexp;
-#if defined(__APPLE__)
- // Using a UTF-8 locale doesn't change to Unicode over a byte buffer so '.'
- // is one byte not one character.
- // However, on OS X this makes wregex act as Unicode
- std::locale localeU("en_US.UTF-8");
- regexp.imbue(localeU);
-#endif
regexp.assign(&ws[0], flagsRe);
matched = MatchOnLines<UTF8Iterator>(doc, regexp, resr, search);