From: Han-Wen Nienhuys Date: Thu, 10 Aug 2006 19:04:03 +0000 (+0000) Subject: (bar-line::calc-glyph-name): add dashed liine X-Git-Tag: release/2.10.0-2~388 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7885b07ffa52242ee7e7863535d0c83b4581b235;p=lilypond.git (bar-line::calc-glyph-name): add dashed liine break specification. --- diff --git a/ChangeLog b/ChangeLog index e7817fe766..1b91969043 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-08-10 Han-Wen Nienhuys + + * scm/output-lib.scm (bar-line::calc-glyph-name): add dashed liine + break specification. + 2006-08-10 Joe Neeman * Documentation/user: convert-ly the user manual @@ -32,7 +37,8 @@ * lily/piano-pedal-engraver.cc (struct Pedal_type_info): idem - * lily/include/translator.hh (struct Acknowledge_information): add Protected_scm + * lily/include/translator.hh (struct Acknowledge_information): add + Protected_scm * ly/music-functions-init.ly: change name to BreathingEvent @@ -53,7 +59,8 @@ * lily/spacing-engraver.cc (stop_translation_timestep): set spacing for proportional notation too. - * scm/translation-functions.scm (format-bass-figure): inspect stream-event. + * scm/translation-functions.scm (format-bass-figure): inspect + stream-event. * scripts/lilypond-book.py (bindir): add bindir to $PATH. @@ -73,7 +80,8 @@ revokePageTurns functionality. If there is a special barline within the breakable region, break there instead of at the end of the region. - * lily/paper-book.cc (pages): use the new page-breaking calling convention + * lily/paper-book.cc (pages): use the new page-breaking calling + convention 2006-08-07 Erik Sandberg diff --git a/scm/define-event-classes.scm b/scm/define-event-classes.scm index c7f28846dd..d8056ba6d8 100644 --- a/scm/define-event-classes.scm +++ b/scm/define-event-classes.scm @@ -41,7 +41,7 @@ )) ;; Maps event-class to a list of ancestors (inclusive) -(define ancestor-lookup (make-hash-table)) +(define ancestor-lookup (make-hash-table 11)) ;; Each class will be defined as ;; (class parent grandparent .. ) diff --git a/scm/output-lib.scm b/scm/output-lib.scm index 66ffcb0314..2071541029 100644 --- a/scm/output-lib.scm +++ b/scm/output-lib.scm @@ -206,6 +206,7 @@ centered, X==1 is at the right, X == -1 is at the left." (result (assoc glyph '((":|:" . (":|" . "|:")) ("||:" . ("||" . "|:")) + ("dashed" . ("dashed" . '())) ("|" . ("|" . ())) ("||:" . ("||" . "|:")) ("|s" . (() . "|"))