]> git.donarmstrong.com Git - lilypond.git/commitdiff
(accents): update to 1.8
authorhanwen <hanwen>
Mon, 28 Jul 2003 23:21:50 +0000 (23:21 +0000)
committerhanwen <hanwen>
Mon, 28 Jul 2003 23:21:50 +0000 (23:21 +0000)
ChangeLog
Documentation/user/refman.itely
mutopia/claop.py
python/lilylib.py
scm/document-backend.scm

index b2c10030f5f0c4c83a7a0d666ec0513ffe70d196..ee6dd8a627d39cb2b6b44cb709dcad6a0e96a0e0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2003-07-29  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * 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.
index c138288147d0e3cb5fc81da4cb5e2a02014c5e6d..6573cdec7aa5ab856a2add4ad5248cdc22bef74e 100644 (file)
@@ -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
 
index cae831896db02cb3f67e501fc38b99abc94f2b38..efef518631a601431a14d27f5cd8c99d027fa7ff 100644 (file)
@@ -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
index f171ff7499ccbaf9a6c6b90ebb920f4767134616..a741647c44ca325172594430848d116a230cf79f 100644 (file)
@@ -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):
index 01584967f2e1d79599bdac85185f8b0532f71bfd..d41eabd3704a792403502a9349fc3e23a38243b5 100644 (file)
@@ -184,8 +184,8 @@ node."
        (texi (description-list->texi descs))
        )
     (make <texi-node>
-      #: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)
   ))