]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/program-option-scheme.cc
Use alist for design sizes in gonville.ly.
[lilypond.git] / lily / program-option-scheme.cc
index 86c57226d1ed734abe32c4431bac40db656bdefd..ffd1f86267dba24eff3cf05dee87999825a8917d 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2001--2009  Han-Wen Nienhuys <hanwen@xs4all.nl>
+  Copyright (C) 2001--2010  Han-Wen Nienhuys <hanwen@xs4all.nl>
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -34,6 +34,7 @@ bool debug_skylines;
 bool debug_property_callbacks;
 bool debug_page_breaking_scoring;
 
+bool music_strings_to_paths;
 bool relative_includes;
 
 /*
@@ -126,6 +127,11 @@ internal_set_option (SCM var,
     }
   else if (var == ly_symbol2scm ("warning-as-error"))
     val = scm_from_bool (to_boolean (val));
+  else if (var == ly_symbol2scm ("music-strings-to-paths"))
+    {
+      music_strings_to_paths = to_boolean (val);
+      val = scm_from_bool (to_boolean (val));
+    }
 
   scm_hashq_set_x (option_hash, var, val);
 }