- Fixed bug whereby after a merge, the undo.data file had all lines
  concatenated without \n characters.
This commit is contained in:
Paul Beckingham 2010-10-05 18:24:01 -04:00
parent 6fd876b8dd
commit cb14ed128e

View file

@ -1535,7 +1535,7 @@ void TDB::merge (const std::string& mergeFile)
}
// write undo file
if (! File::write (undoFile, undo, false))
if (! File::write (undoFile, undo, true))
throw std::string ("Could not write '") + undoFile + "'.";
}
else // nothing to be done