]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.1.52
authorfred <fred>
Tue, 26 Mar 2002 21:50:50 +0000 (21:50 +0000)
committerfred <fred>
Tue, 26 Mar 2002 21:50:50 +0000 (21:50 +0000)
flower/data-file.cc
flower/directed-graph.cc
flower/dstream.cc
flower/include/data-file.hh
flower/include/file-path.hh

index 996752cfce34d48e6f8d6d22f8a1e7a7aab2d291..4852e8588e80b21322817232266eeb19ad3f05ee 100644 (file)
@@ -63,9 +63,6 @@ Data_file::get_word()
   return s;
 }
 
-/**  get a char
-   Only class member who uses text_file::get
-   */
 char
 Data_file::data_get()
 {
@@ -80,7 +77,6 @@ Data_file::data_get()
   return c;
 }
 
-/// read line, gobble '\n'
 String
 Data_file::get_line()
 {
@@ -92,7 +88,6 @@ Data_file::get_line()
   return s;
 }
 
-/// gobble stuff before first entry on a line.
 void
 Data_file::gobble_leading_white()
 {
index 1eb6d8b4499c4c6314a184e416c8becc9d5cffd0..0c9a7cc085441729f8dfeeeec904a716b18f9b96 100644 (file)
@@ -27,7 +27,7 @@ Directed_graph_node::get_out_edge_arr() const
   return edge_out_l_arr_;
 }
 
-/**
+/*
   Should not copy deps automatically
  */
 Directed_graph_node::Directed_graph_node (Directed_graph_node const&)
index 3da8dfeb4525962d24965925027ed17ca8b67594..0b7be148c803acfda01d170a86fecca18006b9ac 100644 (file)
@@ -14,7 +14,7 @@
 #include "string-convert.hh"
 #include "rational.hh"
 
-/// indent of each level
+/// amount of indentation for each level.
 const int INDTAB = 2;
 
 /*
index 5440064923d2ce59927105528bd3ab92700929c8..9fde76b30522d33a824d2a0603ad854f47e4815d 100644 (file)
@@ -23,6 +23,10 @@ public:
   Text_stream::eof_b;
   Text_stream::get_name;    
 
+  /**
+   Get a char.
+   Only class member who uses text_file::get
+   */
   char data_get();    
   void data_unget (char c) {
     unget (c);
index 02ecb1a88429fbd22fd3aa71e41defed10ba337b..bdfa5e3870dc6984c04d608add6de84e0c909037 100644 (file)
 class File_path : private Array<String>
 {
 public:
-  /// locate a file in the search path
   String find (String nm) const;
 
-  /// add to end of path.
   Array<String>::push;
   String str ()const;
   void add (String str);