]> git.donarmstrong.com Git - lilypond.git/commitdiff
(error_log): remove '/' from name.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 24 Jul 2003 01:00:23 +0000 (01:00 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 24 Jul 2003 01:00:23 +0000 (01:00 +0000)
ChangeLog
python/lilylib.py

index 23d838bec6c31338777352d6b4085745b945ce21..43926c576e2c889340967431604d6c90cca28699 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,11 +1,16 @@
 2003-07-24  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * VERSION (PACKAGE_NAME): release 1.7.28
+
+       * python/lilylib.py (error_log): remove '/' from name.
+
+       * input/regression/pedal.ly: remove; dups input/test/
+       
        * stepmake/stepmake/texinfo-rules.make: remove footify everywhere.
 
        * Documentation/index.html.in: python style doco index.
 
        * Documentation/{footer,header}.html.in (src): remove, 
-       
 
        * Documentation/pictures: remove all but lelie-logo.xpm.
 
index 3cad32f1f31887b9fad74563596f19c1f366612e..fdd3be951b6c348efd4c6318522a43ce3f5a62de 100644 (file)
@@ -237,6 +237,7 @@ def command_name (cmd):
        return re.match ('^[ \t]*([^ \t]*)', cmd).group (1)
 
 def error_log (name):
+       name = re.sub('[/:]','x',name)
        return tempfile.mktemp ('%s.errorlog' % name)
 
 def read_pipe (cmd, mode = 'r'):