X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Fgraphviz.scm;h=657fdb23b3e00e5233c583ad8b31bd19ea4c4c84;hb=926115ff42def8bc1ce767029e4f03c8072994ba;hp=fc2076be24c9624cf262d6bf0f3edff4d0d00403;hpb=bd751630011a6fbfcf069ec1fc41a8eaed8a6b87;p=lilypond.git diff --git a/scm/graphviz.scm b/scm/graphviz.scm index fc2076be24..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--2012 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))