]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/scope.cc
release: 1.3.6
[lilypond.git] / lily / scope.cc
index be98f18612c6064a533093459c4bf9fa43c8c0df..5262ea179d8072ff2425693853714ac0ea43c25b 100644 (file)
@@ -58,14 +58,14 @@ Scope::Scope ()
 bool
 Scope::elem_b (String s) const
 {
-  return elem_b (ly_symbol (s.ch_C()));
+  return elem_b (ly_symbol2scm (s.ch_C()));
 }
 
 
 Identifier *&
 Scope::elem (String s) 
 {
-  return elem (ly_symbol (s.ch_C()));
+  return elem (ly_symbol2scm (s.ch_C()));
 }
 
 
@@ -78,7 +78,7 @@ String
 Scope_iter::key () const
 {
   SCM s= Hash_table_iter<Protected_scm,Identifier*>::key ();
-  return symbol_to_string (s);
+  return ly_symbol2string (s);
 }
 
 bool