]> git.donarmstrong.com Git - lilypond.git/blobdiff - buildscripts/lilylib.py.in
release: 1.5.18
[lilypond.git] / buildscripts / lilylib.py.in
index fea6ffda23dc163ba242f2be3b61b42ac5a0c9ea..10ee45aa9ce39a2bdaad3e67a3f57e2285f3ed6c 100644 (file)
@@ -177,21 +177,6 @@ def cleanup_temp ():
                shutil.rmtree (temp_dir)
 
 
-#what a name.
-def set_setting (dict, key, val):
-       try:
-               val = string.atof (val)
-       except ValueError:
-               #warning (_ ("invalid value: %s") % `val`)
-               pass
-
-       try:
-               dict[key].append (val)
-       except KeyError:
-               warning (_ ("no such setting: %s") % `key`)
-               dict[key] = [val]
-
-
 def strip_extension (f, ext):
        (p, e) = os.path.splitext (f)
        if e == ext: