X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Fgraphviz.scm;h=657fdb23b3e00e5233c583ad8b31bd19ea4c4c84;hb=8659a99f233f5c4684292728e7ad4206669b35b0;hp=fb85076a1c67133a84a116bfe913c839b07a1ca1;hpb=e24fb7cc5671aea95211d4a0c56f28fb6fe8720e;p=lilypond.git diff --git a/scm/graphviz.scm b/scm/graphviz.scm index fb85076a1c..657fdb23b3 100644 --- a/scm/graphviz.scm +++ b/scm/graphviz.scm @@ -1,6 +1,6 @@ ;;;; This file is part of LilyPond, the GNU music typesetter. ;;;; -;;;; Copyright (C) 2007--2014 Joe Neeman +;;;; Copyright (C) 2007--2015 Joe Neeman ;;;; ;;;; LilyPond is free software: you can redistribute it and/or modify ;;;; it under the terms of the GNU General Public License as published by @@ -69,7 +69,9 @@ es) (for-each (lambda (c) (format out "subgraph cluster_~a {\nlabel= \"~a\"\ncolor=blue\n" - (string-filter (car c) char-alphabetic?) + (if (guile-v2) + (string-filter char-alphabetic? (car c)) + (string-filter (car c) char-alphabetic?)) (car c)) (for-each (lambda (n) (format out "~a\n" n)) (cdr c)) (display "}\n" out))