]> git.donarmstrong.com Git - lilypond.git/commitdiff
move fixed dimensions from paper.scm
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 26 Oct 2005 09:18:03 +0000 (09:18 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 26 Oct 2005 09:18:03 +0000 (09:18 +0000)
ChangeLog
Documentation/user/lilypond.tely
lily/axis-group-engraver.cc
ly/paper-defaults.ly
scm/paper.scm

index 43c7d32c3bd02c6cbbec858060d2190ab284e668..8bf927ddc55db8055385c0ed1a6405ec56376c18 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-10-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
+
+       * ly/paper-defaults.ly: move fixed dimensions from paper.scm 
+
 2005-10-25  Jan Nieuwenhuizen  <janneke@gnu.org>
 
        * HACKING: Update.
index e7d66c74300cef602f9226fcaac2c265019c4f5d..1b69793dbb4090b341159f37b33bc8264dba8bd1 100644 (file)
@@ -246,7 +246,7 @@ Copyright 1999--2005 by the authors
 @top GNU LilyPond --- The music typesetter
 @c HJJ: Info needs `@top', which is a synonym for `@unnumbered' in TeX.
 
-This is the user manual for GNU LilyPond 2.6.x series.
+This is the user manual for GNU LilyPond 2.7.x series.
 @ifhtml
 (See the bottom of this page for the exact version number).
 @end ifhtml
index 2796f05ca4272ac18134954e6fea6c42ec9ea4b3..c52eeb90531fc5b369b986ab182a1b9ab8df3081 100644 (file)
@@ -82,19 +82,7 @@ Axis_group_engraver::process_acknowledged ()
              staffline_ = 0;
              break;
            }
-#if 0 
-         else if (elts_[i]->is_empty (Y_AXIS))
-           {
-             /*
-               We have to do _something_, otherwise staff objects will
-               end up with System as parent.
-
-             */
-             elts_[i]->set_parent (staffline_, Y_AXIS);
-           }
-         else
-#endif
-           add_element (elts_[i]);
+         add_element (elts_[i]);
        }
     }
   elts_.clear ();
index a87599f61a22d0adaa49fd9f2dbd562e4d719e2e..e35adf1a0a25aba3c82772527f303c0a431734df 100644 (file)
     #(set-paper-dimension-variables (current-module))
 
     \include "titling-init.ly"
-}
+
+
+    topmargin = 5 \mm
+    bottommargin = 6 \mm
+    headsep = 4 \mm
+    footsep = 4 \mm
+    rightmargin = 10 \mm
+
+    leftmargin = ##f
+    firstpagenumber = #1
+    printfirstpagenumber =##f)
+
+  }
index f86aeb0161591d6f7a36b245e51dcc4fb6569012..e42369462a984a10dc611869a5a826b2ff940cfc 100644 (file)
     (module-define! m 'indent (/ w 14))
 
     ;; page layout - what to do with (printer specific!) margin settings?
-    (module-define! m 'topmargin (* 5 mm))
-    (module-define! m 'bottommargin (* 6 mm))
-    (module-define! m 'headsep (* 4 mm))
-    (module-define! m 'footsep (* 4 mm))
-    (module-define! m 'leftmargin #f)
-    (module-define! m 'firstpagenumber 1)
-    (module-define! m 'printfirstpagenumber #f)
-    (module-define! m 'rightmargin (* 10 mm))))
+
+    ))
 
 (define (internal-set-paper-size module name landscape?)
   (define (swap x)