]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/lily.scm
Fix major minor 7 in chord table
[lilypond.git] / scm / lily.scm
index 9a152ed0aa66f3384f32644b3c16fc080f9eccc3..b72878f61b9f170ce39c0cce3cde1bac6d404148 100644 (file)
@@ -115,6 +115,9 @@ output to log file `FOO.log'.")
                         "midi")
 "Set the default file extension for MIDI output
 file to given string.")
+    (music-strings-to-paths #f
+"Convert text strings to paths when glyphs belong
+to a music font.")
     (old-relative #f
 "Make \\relative mode for simultaneous music work
 similar to chord syntax.")
@@ -245,6 +248,11 @@ messages into errors.")
 
 (define-public parser #f)
 
+(define music-string-to-path-backends
+  '(svg))
+
+(if (memq (ly:get-option 'backend) music-string-to-path-backends)
+    (ly:set-option 'music-strings-to-paths #t))
 
 ;; gettext wrapper for guile < 1.7.2
 (if (defined? 'gettext)