]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/input.cc
(parse_symbol_list): Bugfix.
[lilypond.git] / lily / input.cc
index a9ad1c970e56b239c4c3d41339badd5c16602271..d6d33e2247556afc63b81c5e785d418ba535b32b 100644 (file)
@@ -152,7 +152,7 @@ Input::end_column_number () const
 }
 
 void
-Input::get_counts (int *line, int *chr, int*col) const
+Input::get_counts (int *line, int *chr, int *col) const
 {
   source_file_->get_counts (start_, line, chr, col);
 }
@@ -162,23 +162,22 @@ Input::set (Source_file *sf, char const *start, char const *end)
 {
   source_file_ = sf;
   start_ = start;
-  end_ = end;  
+  end_ = end;
 }
 
-Source_file
+Source_file *
 Input::get_source_file () const
 {
   return source_file_;
 }
 
-
-char const * 
+char const *
 Input::start () const
 {
   return start_;
 }
 
-char const * 
+char const *
 Input::end () const
 {
   return end_;