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 ...@@ -305,7 +305,7 @@ std::string OUTPUTFORMATTER::Quoted( const std::string& aWrapee ) throw( IO_ERRO
break; break;
case '\r': case '\r':
ret += '\\'; ret += '\\';
ret += 'n'; ret += 'r';
break; break;
case '\\': case '\\':
ret += '\\'; 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