From 442a6cca387948c2cad3bb4e1d9d26df4666fa18 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Sun, 3 Jun 2007 22:16:13 -0300 Subject: [PATCH] strip double ' ', to adapt to new string_split() semantics --- lily/lily-guile.cc | 1 + 1 file changed, 1 insertion(+) 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, ' ')); } -- 2.39.2