]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/keyword.cc
* flower
[lilypond.git] / lily / keyword.cc
index 418542cd2566237b3d9a254ff4969c7bb3e2751f..378ad4e1683cfc9057b185d5647ef153faace639 100644 (file)
@@ -1,6 +1,6 @@
 /*
   keyword.cc -- keywords and identifiers
- */
+*/
 
 #include "keyword.hh"
 
@@ -8,7 +8,7 @@
 #include <cstdlib>
 
 /* for qsort */
-int tabcmp (Keyword_ent  const &p1, Keyword_ent const &p2)
+int tabcmp (Keyword_ent const &p1, Keyword_ent const &p2)
 {
   return strcmp (p1.name_, p2.name_);
 }
@@ -26,8 +26,8 @@ Keyword_table::Keyword_table (Keyword_ent *tab)
 int
 Keyword_table::lookup (char const *s) const
 {
-  Keyword_ent e ;
-  e.name_ =  s;
+  Keyword_ent e;
+  e.name_ = s;
   int idx = binary_search (table_, e, tabcmp);
   if (idx >= 0)
     return table_[idx].tokcode_;