aboutsummaryrefslogtreecommitdiff
path: root/src/tafwriter.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2008-04-14 22:36:34 +0000
committerMike Buland <eichlan@xagasoft.com>2008-04-14 22:36:34 +0000
commitd416848a9c212bf0503ec5b9de4cd23449ecd73c (patch)
tree60766f975beff8bdf99bb8b1fcbce044d060c02c /src/tafwriter.cpp
parent37f43e6004b979a48aa99609264d12511023a956 (diff)
downloadlibbu++-d416848a9c212bf0503ec5b9de4cd23449ecd73c.tar.gz
libbu++-d416848a9c212bf0503ec5b9de4cd23449ecd73c.tar.bz2
libbu++-d416848a9c212bf0503ec5b9de4cd23449ecd73c.tar.xz
libbu++-d416848a9c212bf0503ec5b9de4cd23449ecd73c.zip
The Bu::TafReader parser now knows about \\, \t, and \n escape sequences. The
writer also knows about \\, but will not insert \t or \n for now. It just uses a tab and newline for those.
Diffstat (limited to 'src/tafwriter.cpp')
-rw-r--r--src/tafwriter.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tafwriter.cpp b/src/tafwriter.cpp
index 8dcde86..c30bc67 100644
--- a/src/tafwriter.cpp
+++ b/src/tafwriter.cpp
@@ -97,6 +97,8 @@ void Bu::TafWriter::writeString( const Bu::FString &str )
97 { 97 {
98 if( *s == '\"' ) 98 if( *s == '\"' )
99 sOut.write("\\\"", 2 ); 99 sOut.write("\\\"", 2 );
100 else if( *s == '\\' )
101 sOut.write("\\\\", 2 );
100 else 102 else
101 sOut.write( s, 1 ); 103 sOut.write( s, 1 );
102 } 104 }