Index: src/ls.c
===================================================================
RCS file: /cvsroot/coreutils/coreutils/src/ls.c,v
retrieving revision 1.378
diff -u -r1.378 ls.c
--- src/ls.c	22 Mar 2005 14:51:34 -0000	1.378
+++ src/ls.c	25 Mar 2005 18:14:21 -0000
@@ -4177,7 +4177,8 @@
 equivalent to using --color=none.  Using the --color option without the\n\
 optional WHEN argument is equivalent to using --color=always.  With\n\
 --color=auto, color codes are output only if standard output is connected\n\
-to a terminal (tty).\n\
+to a terminal (tty).  The environment variable LS_COLORS can influence the\n\
+colors, and can be set easily by the dircolors command.\n\
 "), stdout);
       fputs (_("\
 \n\
Index: src/dcgen
===================================================================
RCS file: /cvsroot/coreutils/coreutils/src/dcgen,v
retrieving revision 1.3
diff -u -r1.3 dcgen
--- src/dcgen	28 Jul 2004 23:59:11 -0000	1.3
+++ src/dcgen	25 Mar 2005 18:14:21 -0000
@@ -5,7 +5,7 @@
     if 0;
 
 # dcgen -- generate C declarations of arrays of lines and line lengths
-# Copyright (C) 1996, 1998, 2004 Free Software Foundation, Inc.
+# Copyright (C) 1996, 1998, 2004, 2005 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -38,7 +38,6 @@
 while (<>)
   {
     chop;
-    s/[[:blank:]]*#.*//;
     if ($_)
       {
 	push (@line, $_);
@@ -64,7 +63,7 @@
     $line_length_type = 'unsigned short int';
     if ((1 << 16) <= $max_line_length)
       {
-        $line_length_type = 'unsigned int';
+	$line_length_type = 'unsigned int';
       }
   }
 
Index: src/dircolors.hin
===================================================================
RCS file: /cvsroot/coreutils/coreutils/src/dircolors.hin,v
retrieving revision 1.18
diff -u -r1.18 dircolors.hin
--- src/dircolors.hin	16 Nov 2004 20:49:17 -0000	1.18
+++ src/dircolors.hin	25 Mar 2005 18:14:21 -0000
@@ -1,5 +1,6 @@
 # Configuration file for dircolors, a utility to help you set the
 # LS_COLORS environment variable used by GNU ls with the --color option.
+# Try `dircolors --help' for more information.
 
 # The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the
 # slackware version of dircolors) are recognized but ignored.
@@ -30,6 +31,7 @@
 TERM screen-w
 TERM vt100
 TERM Eterm
+TERM cygwin
 
 # Below are the color init strings for the basic file types. A color init
 # string consists of one or more of the following numeric codes:
