summaryrefslogtreecommitdiff
path: root/libs/ardour/export_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/export_handler.cc')
-rw-r--r--libs/ardour/export_handler.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc
index 0653185e87..c38bd7ef3e 100644
--- a/libs/ardour/export_handler.cc
+++ b/libs/ardour/export_handler.cc
@@ -597,6 +597,8 @@ ExportHandler::toc_escape_string (const std::string& txt)
if ((*c) == '"') {
out += "\\\"";
+ } else if ((*c) == '\\') {
+ out += "\\034";
} else if (g_unichar_isprint (*c)) {
out += *c;
} else {