fix carriage return escape

This commit is contained in:
Dick Hollenbeck 2011-01-30 14:06:05 -06:00
parent 604edcac3a
commit 9d870fe157
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ std::string OUTPUTFORMATTER::Quoted( const std::string& aWrapee ) throw( IO_ERRO
break;
case '\r':
ret += '\\';
ret += 'n';
ret += 'r';
break;
case '\\':
ret += '\\';