actions: adjust names of a few actions to be more descriptive

This commit is contained in:
Andrzej Rybczak
2012-09-06 00:35:55 +02:00
parent 061fb9e60d
commit dc62bd5c29
5 changed files with 37 additions and 42 deletions

View File

@@ -165,7 +165,7 @@ std::string getEnclosedString(const std::string &s, char a, char b, size_t *pos)
++i;
while (i < s.length() && s[i] != b)
{
if (s[i] == '\\' && i+1 < s.length() && s[i+1] == b)
if (s[i] == '\\' && i+1 < s.length() && (s[i+1] == '\\' || s[i+1] == b))
result += s[++i];
else
result += s[i];