style cleanups

This commit is contained in:
Kurtis Rader
2017-03-15 14:06:58 -07:00
parent f0469d829a
commit 84cf391faa
7 changed files with 41 additions and 51 deletions

View File

@@ -852,7 +852,7 @@ static void escape_string_internal(const wchar_t *orig_in, size_t in_len, wcstri
case L'\\':
case L'\'': {
need_escape = need_complex_escape = 1;
//WTF if (escape_all) out += L'\\';
// WTF if (escape_all) out += L'\\';
out += L'\\';
out += *in;
break;