]> git.donarmstrong.com Git - lilypond.git/commitdiff
* lily/script-engraver.cc (acknowledge_grob): only take into
authorhanwen <hanwen>
Fri, 20 Aug 2004 17:38:08 +0000 (17:38 +0000)
committerhanwen <hanwen>
Fri, 20 Aug 2004 17:38:08 +0000 (17:38 +0000)
account note heads with a music cause. Fixes ambitus-accent.ly

* scm/define-markup-commands.scm (finger): set encoding to
fetaNumber.

ChangeLog
lily/instrument-name-engraver.cc
lily/script-engraver.cc
scm/define-markup-commands.scm

index 074aefe34496542c7438d98eb7578d274cffc85d..b18ef134285d95d6c9a4ae752ee6f8bd0eadc25a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2004-08-20  Han-Wen Nienhuys   <hanwen@xs4all.nl>
+
+       * lily/script-engraver.cc (acknowledge_grob): only take into
+       account note heads with a music cause. Fixes ambitus-accent.ly
+
+       * scm/define-markup-commands.scm (finger): set encoding to
+       fetaNumber.
+
 2004-08-20  Erik Sandberg <ersa9195@student.uu.se>
 
        * scripts/convert-ly.py: typo
index c99b6f5c775ae93f9807f7b159e3d77dcb1e6d43..0de40cf688f2ade2316e615eef528c0eb90ed569 100644 (file)
@@ -51,7 +51,7 @@ Instrument_name_engraver::stop_translation_timestep ()
   if (text_)
     {
       text_->set_property ("side-support-elements",
-                               get_property ("instrumentSupport"));
+                          get_property ("instrumentSupport"));
       text_ = 0;
     }
 }
index 20ec7faae69e97a116040cc8cc15d37245910bb8..21072b1132a9b61192c9bc9ccc9135c53927fe00 100644 (file)
@@ -164,7 +164,8 @@ Script_engraver::acknowledge_grob (Grob_info info)
          Side_position_interface::add_support (e, info.grob_);
        }
     }
-  else if (Rhythmic_head::has_interface (info.grob_))
+  else if (Rhythmic_head::has_interface (info.grob_)
+          && info.music_cause ())
     {
       for (int i = 0; i < script_count; i++)
        {
index a89a968da969fe145061d930f03265a96e252006..ed8cc41c09649f34d864cccd48ebda9c8a25eb70 100644 (file)
@@ -138,7 +138,7 @@ determines the space between each markup in @var{args}."
 (def-markup-command (finger paper props arg) (markup?)
   "Set the argument as small numbers."
   (interpret-markup paper
-                    (cons '((font-size . -5) (font-family . number)) props)
+                    (cons '((font-size . -5) (font-encoding . fetaNumber)) props)
                     arg))
 
 (def-markup-command (fontsize paper props mag arg) (number? markup?)