From: Tom Cato Amundsen Date: Fri, 29 Sep 2000 09:11:53 +0000 (+0200) Subject: patch::: 1.3.91.tca2 X-Git-Tag: release/1.3.92~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=88104d01c6fa8c33ebe4d3fb7c6508e09afea4f5;p=lilypond.git patch::: 1.3.91.tca2 --- diff --git a/VERSION b/VERSION index b592e13656..f34eb289b7 100644 --- a/VERSION +++ b/VERSION @@ -2,7 +2,7 @@ PACKAGE_NAME=LilyPond MAJOR_VERSION=1 MINOR_VERSION=3 PATCH_LEVEL=91 -MY_PATCH_LEVEL=tca1 +MY_PATCH_LEVEL=tca2 # use the above to send patches: MY_PATCH_LEVEL is always empty for a # released version. diff --git a/scripts/mudela-book.py b/scripts/mudela-book.py index d04d8e1e57..8a334b40b6 100644 --- a/scripts/mudela-book.py +++ b/scripts/mudela-book.py @@ -199,7 +199,6 @@ class LatexPaper: #return self.m_paperdef[self.m_papersize][self.m_landscape] def _calc_linewidth(self): - Fortsettt # since geometry sometimes ignores 'includemp', this is # more complicated than it should be mp = 0 @@ -742,10 +741,12 @@ def read_doc_file (filename): error("error: can't determine format, please specify") if texinfo: __main__.format = 'texi' - __main__.paperguru = TexiPaper() else: __main__.format = 'latex' - __main__.paperguru = LatexPaper() + if __main__.format == 'texi': + __main__.paperguru = TexiPaper() + else: + __main__.paperguru = LatexPaper() chunks = [('input', str)] # we have to check for verbatim before doing include, # because we don't want to include files that are mentioned