aboutsummaryrefslogtreecommitdiff
path: root/src/ser.rs
diff options
context:
space:
mode:
authorMatti Niemenmaa <matti.niemenmaa+git@iki.fi>2018-10-01 11:58:57 +0300
committerMatti Niemenmaa <matti.niemenmaa+git@iki.fi>2018-10-01 11:58:57 +0300
commit2059589f5420bed3d490822fc9560db3c3a21515 (patch)
tree019d9a7a18b1512d099e8a8b704caad1b3c97b1f /src/ser.rs
parentf998fbe360b4ea37f27793a55831e988415b4b6d (diff)
downloadmilf-rs-2059589f5420bed3d490822fc9560db3c3a21515.tar.gz
milf-rs-2059589f5420bed3d490822fc9560db3c3a21515.zip
Avoid panic on pretty string ending in single quote
Fixes #262.
Diffstat (limited to 'src/ser.rs')
-rw-r--r--src/ser.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ser.rs b/src/ser.rs
index 9d989db..9f36f59 100644
--- a/src/ser.rs
+++ b/src/ser.rs
@@ -585,6 +585,10 @@ impl<'a> Serializer<'a> {
}
}
}
+ if can_be_pretty && found_singles > 0 && value.ends_with('\'') {
+ // We cannot escape the ending quote so we must use """
+ can_be_pretty = false;
+ }
if !can_be_pretty {
debug_assert!(ty != Type::OnelineTripple);
return Repr::Std(ty);