]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lily-guile.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / lily-guile.cc
index 19fe4b0132f9fa87f3837f822e05935b5d4cb6a9..e44e47f4be27f6f30b64817b760191a678e4441f 100644 (file)
@@ -373,7 +373,7 @@ parse_symbol_list (char const *symbols)
   string s = symbols;
   replace_all (s, '\n', ' ');
   replace_all (s, '\t', ' ');
-  return ly_string_array_to_scm (split_string (s, ' '));
+  return ly_string_array_to_scm (string_split (s, ' '));
 }
 
 SCM
@@ -498,7 +498,9 @@ scm_default_compare (void const *a, void const *b)
   return pa < pb ? -1 : 1;
 }
 
-/*  Modify LST in place: qsort it.  */
+/*  Modify LST in place: qsort it.
+
+FIXME: unused, junk? */
 SCM
 ly_list_qsort_uniq_x (SCM lst)
 {