]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/keyword.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / keyword.cc
index d854fbeecd324327f0e9d0dc8fb9df25a5e498d3..84065ab4f6fd0093f621e0d87d3a351b9f027ab3 100644 (file)
@@ -19,7 +19,7 @@ Keyword_table::Keyword_table (Keyword_ent *tab)
   while (tab->name_)
     table_.push_back (*tab++);
 
-  table_.sort (tabcmp);
+  vector_sort (table_, tabcmp);
 }
 
 vsize
@@ -30,6 +30,5 @@ Keyword_table::lookup (char const *s) const
   vsize idx = binary_search (table_, e, tabcmp);
   if (idx != VPOS)
     return table_[idx].tokcode_;
-  else
-    return VPOS;
+  return VPOS;
 }