From: hanwen Date: Mon, 28 Jul 2003 23:21:50 +0000 (+0000) Subject: (accents): update to 1.8 X-Git-Tag: release/1.7.29~3 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=0e03fc14da5ba358a4c81701ec7cfa0b780dc440;p=lilypond.git (accents): update to 1.8 --- diff --git a/ChangeLog b/ChangeLog index b2c10030f5..ee6dd8a627 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2003-07-29 Han-Wen Nienhuys + * mutopia/claop.py (accents): update to 1.8 + * Documentation/user/music-glossary.tely (Top): remove 13pt. * Documentation/user/macros.itexi: don't color glossary links. diff --git a/Documentation/user/refman.itely b/Documentation/user/refman.itely index c138288147..6573cdec7a 100644 --- a/Documentation/user/refman.itely +++ b/Documentation/user/refman.itely @@ -6914,8 +6914,8 @@ work, and may cause crashes or other anomalous behavior. @seealso @internalsref{OverrideProperty}, @internalsref{RevertProperty}, -@internalsref{PropertySet}, @internalsref{backend properties}, and -@internalsref{All layout objects}. +@internalsref{PropertySet}, @internalsref{All-backend-properties}, and +@internalsref{All-layout-objects}. @refbugs @@ -7066,8 +7066,8 @@ Of course, the tweak may also done in a larger context than @internalsref{Score}. The internals document also contains alphabetical lists of -@internalsref{All contexts}, @internalsref{All layout objects} and -@internalsref{All music types}, so you can also find which objects to +@internalsref{Contexts}, @internalsref{All-layout-objects} and +@internalsref{Music-expressions}, so you can also find which objects to tweak by browsing the internals document. @@ -7444,7 +7444,7 @@ mode. @seealso -@internalsref{Markup functions}, and @file{scm/new-markup.scm}. +@internalsref{Markup-functions}, and @file{scm/new-markup.scm}. @refbugs diff --git a/mutopia/claop.py b/mutopia/claop.py index cae831896d..efef518631 100644 --- a/mutopia/claop.py +++ b/mutopia/claop.py @@ -273,7 +273,7 @@ sys.stdout.write (r""" \notes < \property Score.BarNumber \override #'padding = #2.5 \property Score.autoBeamSettings \override - #'(end * * * *) = #(make-moment 1 4) + #'(end * * * *) = #(ly:make-moment 1 4) \property Score.skipBars = ##t \context StaffGroup < \property StaffGroup.Stem \override #'direction = #1 diff --git a/python/lilylib.py b/python/lilylib.py index f171ff7499..a741647c44 100644 --- a/python/lilylib.py +++ b/python/lilylib.py @@ -242,9 +242,12 @@ def error_log (name): def read_pipe (cmd, mode = 'r'): redirect = '' + error_log_file = '' if __main__.verbose_p: progress (_ ("Opening pipe `%s\'") % cmd) - redirect = ' 2>%s' % error_log (command_name (cmd)) + error_log_file = error_log (command_name (cmd)) + redirect = ' 2>%s' % error_log_file + pipe = os.popen (cmd + redirect, mode) output = pipe.read () status = pipe.close () @@ -260,8 +263,13 @@ def read_pipe (cmd, mode = 'r'): error (_ ("The error log is as follows:")) sys.stderr.write (open (error_log (command_name (cmd)).read ())) exit (status) + if __main__.verbose_p: progress ('\n') + + if error_log_file: + os.unlink (error_log_file) + return output def system (cmd, ignore_error = 0, progress_p = 0): diff --git a/scm/document-backend.scm b/scm/document-backend.scm index 01584967f2..d41eabd370 100644 --- a/scm/document-backend.scm +++ b/scm/document-backend.scm @@ -184,8 +184,8 @@ node." (texi (description-list->texi descs)) ) (make - #:name "backend properties" - #:desc "all the properties in use as grob properties" + #:name "All backend properties" + #:desc "All grob properties in a big list" #:text texi) ))