From ec8cf4e4f58a7f2d69b479fb64cbdc13a8d3764f Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 27 Jan 2016 23:39:35 +0100 Subject: Fix µ-iness. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libs/pbd/controllable.cc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libs/pbd/controllable.cc b/libs/pbd/controllable.cc index 58ae731fbe..a1144286ad 100644 --- a/libs/pbd/controllable.cc +++ b/libs/pbd/controllable.cc @@ -110,7 +110,13 @@ Controllable::get_state () LocaleGuard lg (X_("C")); char buf[64]; - node->add_property (X_("name"), _name); // not reloaded from XML state, just there to look at + /* Waves' "Pressure3" has a parameter called "µ-iness" + * which causes a parser error : Input is not proper UTF-8, indicate encoding ! + * Bytes: 0xB5 0x2D 0x69 0x6E + * add_property (X_("name"), _name); // not reloaded from XML state, just there to look at + id().print (buf, sizeof (buf)); node->add_property (X_("id"), buf); node->add_property (X_("flags"), enum_2_string (_flags)); -- cgit v1.2.3