remove FIXME-describe comments
authorJim Meyering <jim@meyering.net>
Sun, 21 Dec 1997 11:57:17 +0000 (11:57 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 21 Dec 1997 11:57:17 +0000 (11:57 +0000)
lib/exclude.c

index e5cdfc34b9bdcef8d5f0217dcb2db77ad6eddf55..47f8e8132de009dceb63238e26c366dcd697be77 100644 (file)
@@ -43,8 +43,6 @@ struct exclude
     int exclude_count;
   };
 
-/* FIXME: describe */
-
 struct exclude *
 new_exclude (void)
 {
@@ -55,8 +53,6 @@ new_exclude (void)
   return ex;
 }
 
-/* FIXME: describe */
-
 int
 excluded_filename (struct exclude const *ex, char const *f)
 {
@@ -71,8 +67,6 @@ excluded_filename (struct exclude const *ex, char const *f)
   return 0;
 }
 
-/* FIXME: describe */
-
 void
 add_exclude (struct exclude *ex, char const *pattern)
 {
@@ -84,8 +78,6 @@ add_exclude (struct exclude *ex, char const *pattern)
   ex->exclude[ex->exclude_count++] = pattern;
 }
 
-/* FIXME: describe */
-
 int
 add_exclude_file (struct exclude *ex, char const *filename, char line_end)
 {