From: Han-Wen Nienhuys Date: Mon, 4 Jun 2007 01:16:13 +0000 (-0300) Subject: strip double ' ', to adapt to new string_split() semantics X-Git-Tag: release/2.11.26-1~16 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=442a6cca387948c2cad3bb4e1d9d26df4666fa18;p=lilypond.git strip double ' ', to adapt to new string_split() semantics --- diff --git a/lily/lily-guile.cc b/lily/lily-guile.cc index e5cdbc77f2..9da6823f19 100644 --- a/lily/lily-guile.cc +++ b/lily/lily-guile.cc @@ -663,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, ' ')); }