X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Flily-guile.cc;h=9da6823f194e89e91ab15a13c4ab751ed3b4d03e;hb=9c22d78d8b7c787348ee0f03f97aa65a5b3b69d9;hp=976b19e47c0819a32111fea6f28d5261d24ee2ae;hpb=ac1340846e81661575ba3036b251e8ab55b13023;p=lilypond.git diff --git a/lily/lily-guile.cc b/lily/lily-guile.cc index 976b19e47c..9da6823f19 100644 --- a/lily/lily-guile.cc +++ b/lily/lily-guile.cc @@ -118,7 +118,7 @@ ly_scm2string (SCM str) SCM ly_string2scm (string const &str) { - return scm_from_locale_stringn (str.c_str(), + return scm_from_locale_stringn (str.c_str (), str.length ()); } @@ -126,7 +126,7 @@ ly_string2scm (string const &str) char * ly_scm2newstr (SCM str, size_t *lenp) { - SCM_ASSERT_TYPE (scm_is_string (str), str, SCM_ARG1, __FUNCTION__, "string"); + LY_ASSERT_TYPE (scm_is_string, str, 1); size_t len = scm_i_string_length (str); if (char *new_str = (char *) malloc ((len + 1) * sizeof (char))) @@ -308,7 +308,7 @@ ly_offsets2scm (vector os) for (vsize i = 0; i < os.size (); i++) { *tail = scm_cons (ly_offset2scm (os[i]), SCM_EOL); - tail = SCM_CDRLOC(*tail); + tail = SCM_CDRLOC (*tail); } return l; } @@ -630,11 +630,16 @@ mangle_cxx_identifier (string cxx_id) cxx_id = "ly:" + cxx_id; } if (cxx_id.substr (cxx_id.length () - 2) == "_p") - cxx_id = cxx_id.replace (cxx_id.length () - 2, 1, "?"); + cxx_id = cxx_id.replace (cxx_id.length () - 2, 2, "?"); else if (cxx_id.substr (cxx_id.length () - 2) == "_x") - cxx_id = cxx_id.replace (cxx_id.length () - 2, 1, "!"); + cxx_id = cxx_id.replace (cxx_id.length () - 2, 2, "!"); + cxx_id = replace_all (cxx_id, "_less?", ""); + cxx_id = replace_all (cxx_id, "__", "::"); cxx_id = replace_all (cxx_id, '_', '-'); + + return cxx_id; } @@ -658,6 +663,7 @@ parse_symbol_list (char const *symbols) string s = symbols; replace_all (s, '\n', ' '); replace_all (s, '\t', ' '); + replace_all (s, " ", " "); return ly_string_array_to_scm (string_split (s, ' ')); }