Update to 7-Zip 17.00 Beta

This commit is contained in:
Tino Reichardt
2017-04-30 14:14:14 +02:00
parent 54389d6e2f
commit aa5ba75da0
451 changed files with 15746 additions and 8574 deletions
+4 -4
View File
@@ -178,13 +178,13 @@ void CPairsStorage::SaveToString(UString &text) const
const CTextPair &pair = Pairs[i];
bool multiWord = (pair.ID.Find(L' ') >= 0);
if (multiWord)
text += L'\"';
text += '\"';
text += pair.ID;
if (multiWord)
text += L'\"';
text += L' ';
text += '\"';
text += ' ';
text += pair.Value;
text += L'\x0D';
text += '\x0D';
text.Add_LF();
}
}