aboutsummaryrefslogtreecommitdiff
path: root/src/formatter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/formatter.cpp')
-rw-r--r--src/formatter.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/formatter.cpp b/src/formatter.cpp
index 27925b0..7ebe256 100644
--- a/src/formatter.cpp
+++ b/src/formatter.cpp
@@ -239,7 +239,11 @@ Bu::Formatter &Bu::operator<<( Bu::Formatter &f, Bu::Formatter::Special s )
239 { 239 {
240 case Formatter::nl: 240 case Formatter::nl:
241 { 241 {
242#ifdef WIN32
243 f.write("\r\n", 2 );
244#else
242 f.write("\n", 1 ); 245 f.write("\n", 1 );
246#endif
243 char ci = f.getIndentChar(); 247 char ci = f.getIndentChar();
244 for( int j = 0; j < f.getIndent(); j++ ) 248 for( int j = 0; j < f.getIndent(); j++ )
245 f.write( &ci, 1 ); 249 f.write( &ci, 1 );