]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.5.47
authorfred <fred>
Wed, 27 Mar 2002 02:47:35 +0000 (02:47 +0000)
committerfred <fred>
Wed, 27 Mar 2002 02:47:35 +0000 (02:47 +0000)
VERSION
ly/grace-init.ly
scripts/ly2dvi.py

diff --git a/VERSION b/VERSION
index 500f43c91c94a5254c286a319699fbef1606748f..e6d9e5925e9018554490bfba153904d001edac32 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1,7 +1,7 @@
 PACKAGE_NAME=LilyPond
 MAJOR_VERSION=1
 MINOR_VERSION=5
-PATCH_LEVEL=46
+PATCH_LEVEL=47
 MY_PATCH_LEVEL=
 
 
index b139a85bff0936c3e61d6b9563a147612084af41..c03ea803d421a182205bca33853e8acc3dadd68b 100644 (file)
@@ -1,8 +1,4 @@
 
-#(define (grace-beam-space-function multiplicity)
-  (* (if (<= multiplicity 3) 0.816 0.844) 0.8))
-
-
 startGraceMusic = {
     \property Voice.Stem \override  #'direction = #1
     \property Voice.Stem \override #'length = #6
@@ -26,7 +22,6 @@ startGraceMusic = {
 
 stopGraceMusic = {
     \property Staff.Accidentals \revert #'font-relative-size
-    \property Voice.Beam \revert #'space-function
     \property Voice.Beam \revert #'thickness
 
     \property Voice.Stem \revert #'flag-style
index da78c42198d1a423f3d29f68970dc7bb5aff19e7..75d80b0657362f5cf37e6d8ff55a00feda072ae4 100644 (file)
@@ -552,15 +552,16 @@ lily output file in TFILES after that, and return the Latex file constructed.  '
                s = s + '\\include{%s}\n' \
                        % string.join (extra['latexheaders'], '}\n\\include{')
 
+       unit = extra['unit'][-1]
+
        textheight = ''
        if extra['textheight']:
-               textheight = ',textheight=%fpt' % extra['textheight'][0]
+               textheight = ',textheight=%f%s' % (extra['textheight'][0], unit)
 
        orientation = 'portrait'
        if extra['orientation']:
                orientation = extra['orientation'][0]
 
-       unit = extra['unit'][-1]
        # set sane geometry width (a4-width) for linewidth = -1.
        maxlw = max (extra['linewidth'] + [-1])
        if maxlw < 0: