]> git.donarmstrong.com Git - lilypond.git/commitdiff
(acknowledge_grob):
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 23 Apr 2002 13:15:30 +0000 (13:15 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 23 Apr 2002 13:15:30 +0000 (13:15 +0000)
compare #'glyph as strings.

ChangeLog
lily/system-start-delimiter-engraver.cc

index b06bd38c923b74c6e9512b081aa41912c4247859..d65f487fb8db1d6aca97740f9a12004842654da3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2002-04-23  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * lily/system-start-delimiter-engraver.cc (acknowledge_grob):
+       compare #'glyph as strings. 
+
        * scripts/lilypond-book.py: fix by Mats. Try to import pre if available.
 
        * scripts/ly2dvi.py (setup_environment): fix by Mats.
@@ -36,7 +39,7 @@
 
 2002-04-22  Han-Wen  <hanwen@cs.uu.nl>
 
-       * mf/feta-nummer-code.mf (code): three fixes.
+       * mf/feta-nummer-code.mf (code): fixes for 3 glyph.
 
 2002-04-21  Han-Wen  <hanwen@cs.uu.nl>
 
index 6dd02513da3bebefbcfc469ad9596c2c3381723e..382ca4694bcd66f10f64f9cccc75bfefc8d44814 100644 (file)
@@ -43,8 +43,8 @@ System_start_delimiter_engraver::acknowledge_grob (Grob_info inf)
     }
   else if (System_start_delimiter::has_interface (inf.grob_l_))
     {
-      SCM gl = inf.grob_l_->get_grob_property ("glyph");
-      SCM my_gl = delim_->get_grob_property ("glyph");
+      SCM gl = scm_string_to_symbol (inf.grob_l_->get_grob_property ("glyph"));
+      SCM my_gl = scm_string_to_symbol (delim_->get_grob_property ("glyph"));
 
       /*
        UGH UGH