From 29e9fb2c921a4d7c32320fde2f53968b5f75c27b Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Wed, 26 May 2004 13:21:55 +0000 Subject: [PATCH] (header): kludge: hard code linewidth. --- ChangeLog | 2 ++ scm/output-tex.scm | 8 +++++++- scripts/lilypond.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1abfdfc38a..99082be3b4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2004-05-26 Han-Wen Nienhuys + * scm/output-tex.scm (header): kludge: hard code linewidth. + * lily/my-lily-parser.cc (My_lily_parser): don't delete lexer. 2004-05-25 Han-Wen Nienhuys diff --git a/scm/output-tex.scm b/scm/output-tex.scm index dbc8a67b67..e44ab4c316 100644 --- a/scm/output-tex.scm +++ b/scm/output-tex.scm @@ -264,7 +264,13 @@ "") ;; FIXME: duplicated in every backend "\\def\\lilypondtagline{Engraved by LilyPond (version " - (lilypond-version)")}\n")) + (lilypond-version)")}\n" + + ;; FIXME + ;; this is -of course- severely broken, (--hwn) + (tex-string-def "lilypondpaper" 'linewidth + "18cm") + )) (define (output-tex-string s) (if (ly:get-option 'safe) diff --git a/scripts/lilypond.py b/scripts/lilypond.py index 2a45a682d4..9e0e160ef1 100644 --- a/scripts/lilypond.py +++ b/scripts/lilypond.py @@ -486,7 +486,7 @@ def run_dvips (outbase, extra): leaving a PS file in OUTBASE.ps ''' #FIXME: papersize, orientation must come from lilypond-bin - + opts = '' if extra['papersize']: opts = ' -t%s' % extra['papersize'][0] -- 2.39.2