]> git.donarmstrong.com Git - lilypond.git/commitdiff
strip double ' ', to adapt to new string_split() semantics
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 4 Jun 2007 01:16:13 +0000 (22:16 -0300)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 4 Jun 2007 01:16:13 +0000 (22:16 -0300)
lily/lily-guile.cc

index e5cdbc77f2732aef18d0e38794ccbf950e9aa710..9da6823f194e89e91ab15a13c4ab751ed3b4d03e 100644 (file)
@@ -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, ' '));
 }