Skip to content

Commit

Permalink
Recursivley remove escaped characters ("\\\\t" => "\t")
Browse files Browse the repository at this point in the history
  • Loading branch information
epasveer committed Nov 23, 2023
1 parent c595f0c commit 88d8b15
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/SeerUtl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ namespace Seer {
tmp.replace("\\n", "\n");
}

return tmp;
if (tmp == str) {
return tmp;
}

return Seer::filterEscapes(tmp, handleCR);
}

QStringList filterEscapes (const QStringList& strings, bool handleCR) {
Expand Down

0 comments on commit 88d8b15

Please sign in to comment.