Commit 9d870fe1 authored by Dick Hollenbeck's avatar Dick Hollenbeck

fix carriage return escape

parent 604edcac
......@@ -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 += '\\';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment