X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Fgraphviz.scm;h=657fdb23b3e00e5233c583ad8b31bd19ea4c4c84;hb=90e4d7057f3857da049dfda3d130017d4719bd6b;hp=fb85076a1c67133a84a116bfe913c839b07a1ca1;hpb=40aac0ae57ee113faa860ba221d83d9e6312173e;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))