]> git.lyx.org Git - features.git/commitdiff
lyxfind: cleanup regex_replace() and back to a sane amount of logging during findadv...
authorTommaso Cucinotta <tommaso@lyx.org>
Sun, 16 Apr 2017 22:41:29 +0000 (00:41 +0200)
committerTommaso Cucinotta <tommaso@lyx.org>
Sun, 16 Apr 2017 22:41:29 +0000 (00:41 +0200)
src/lyxfind.cpp

index 0ffb5b203c7b38893783f88b9bef897e0e90f1e5..c743fb81a1058780e00dba185f6a50bc7af1a862 100644 (file)
@@ -672,23 +672,13 @@ string escape_for_regex(string s, bool match_latex)
 bool regex_replace(string const & s, string & t, string const & searchstr,
                   string const & replacestr)
 {
-       LYXERR(Debug::FIND, "regex_replace() - s='" << s
-              << "', searchstr='" << searchstr
-              << "', replacestr='" << replacestr);
-#if LYX_USE_STD_REGEX
-       // this is the default anyway
        lyx::regex e(searchstr, regex_constants::ECMAScript);
-#else
-       // TBD: check
-       lyx::regex e(searchstr, regex_constants::ECMAScript);
-#endif
        ostringstream oss;
        ostream_iterator<char, char> it(oss);
        lyx::regex_replace(it, s.begin(), s.end(), e, replacestr);
        // tolerate t and s be references to the same variable
        bool rv = (s != oss.str());
        t = oss.str();
-       LYXERR(Debug::FIND, "regex_replace() - t='" << t << "', rv=" << rv);
        return rv;
 }