]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/file-path.cc
release: 1.3.145
[lilypond.git] / flower / file-path.cc
index b078fbc3b6631064bbf5e39fa32465bc0082df9d..b7ea0370d8357c1a88b0ee5ab4c268bf63c74a5d 100644 (file)
@@ -11,7 +11,7 @@
 #endif
 
 #include "file-path.hh"
-#include "flower-debug.hh"
+
 
 #ifndef PATHSEP
 #define PATHSEP ':'
@@ -106,7 +106,6 @@ File_path::parse_path (String p)
 String
 File_path::find (String nm) const
 {
-  DEBUG_OUT << "looking for" << nm << ": ";
   if (!nm.length_i () || (nm == "-") )
     return nm;
   for (int i=0; i < size (); i++)
@@ -119,7 +118,6 @@ File_path::find (String nm) const
 
       path += nm;
 
-      DEBUG_OUT << path << "? ";
 
 #if 0
       /*
@@ -144,12 +142,10 @@ File_path::find (String nm) const
       FILE *f = fopen (path.ch_C (), "r"); // ugh!
       if (f)
        {
-         DEBUG_OUT << "found\n";
          fclose (f);
          return path;
        }
     }
-  DEBUG_OUT << '\n';
   return "";
 }